LaTeXのコードを*素敵な*見た目にする[終了]


133

私は現在プロジェクトレポートを書いており、使用した少しクレイジーで直感的でないコードを説明するために、サンプルコードのたくさんの短い抜粋をたくさん入れる必要があります。

LaTeXにコードを取り込む方法:

  • いい感じ
  • 行が長すぎる場合は、ページの端からはみ出しません(list lstlistingまたはverbatim)
  • 残りのテキストとインラインであることが望ましい

編集済み(ユーザーが自分で設定を考え出さなくても済むように、設定を追加します(wikibooks(下のリンク)から取得し、見やすくするために編集しました))

素敵な設定:

\usepackage{color}
\usepackage{listings}
\lstset{ %
language=C++,                % choose the language of the code
basicstyle=\footnotesize,       % the size of the fonts that are used for the code
numbers=left,                   % where to put the line-numbers
numberstyle=\footnotesize,      % the size of the fonts that are used for the line-numbers
stepnumber=1,                   % the step between two line-numbers. If it is 1 each line will be numbered
numbersep=5pt,                  % how far the line-numbers are from the code
backgroundcolor=\color{white},  % choose the background color. You must add \usepackage{color}
showspaces=false,               % show spaces adding particular underscores
showstringspaces=false,         % underline spaces within strings
showtabs=false,                 % show tabs within strings adding particular underscores
frame=single,           % adds a frame around the code
tabsize=2,          % sets default tabsize to 2 spaces
captionpos=b,           % sets the caption-position to bottom
breaklines=true,        % sets automatic line breaking
breakatwhitespace=false,    % sets if automatic breaks should only happen at whitespace
escapeinside={\%*}{*)}          % if you want to add a comment within your code
}

\begin{lstlisting}
!!code!!
\end{lstlisting}

これらの設定の例:


リスティングパッケージは、(コメントとコードのために例えば、異なるサイズ)は非常に素晴らしく、非常に柔軟です。
Fabian Steeg、

長いグーグルの後で、lstlistingはコードを適切にフォーマットできることがわかりましたが、多くの調整が必要です。<ahref=" en.wikibooks.org/wiki/LaTeX/Packages/… >に、調整可能なパラメーターの良い例があります(自分の質問に答えてごめんなさい!)
Ed James

1
素晴らしい!ラテックスドキュメントにコピーアンドペーストするだけですぐに美しくなります。何時間も調整する必要はありませんでした。ありがとう!:)
Espen Herseth Halvorsen、

12
上記で生成されたフォーマット済みコードのスクリーンショットがいいです!
Adrian Mouat、2010年

7
ラテックスはチューリング完全され、これは...閉鎖されるべきではない
dcow

回答:




2

単純なドキュメントの場合、私は時々逐語を使用しますが、リストはコードの大きなチャンクに適しています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.