私は現在プロジェクトレポートを書いており、使用した少しクレイジーで直感的でないコードを説明するために、サンプルコードのたくさんの短い抜粋をたくさん入れる必要があります。
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
素晴らしい!ラテックスドキュメントにコピーアンドペーストするだけですぐに美しくなります。何時間も調整する必要はありませんでした。ありがとう!:)
—
Espen Herseth Halvorsen、
上記で生成されたフォーマット済みコードのスクリーンショットがいいです!
—
Adrian Mouat、2010年
ラテックスはチューリング完全され、これは...閉鎖されるべきではない
—
dcow