[解決済み] LaTeXでコードを美しく見せる [終了しました]。
2022-06-08 17:38:05
質問
私は現在プロジェクトレポートを書いていますが、私が使用した少しクレイジーで直感的でないコードを説明するために、サンプルコードの短い抜粋をたくさん載せる必要があります。
どのように私はLaTeXにそのコードを得ることができます。
- 見た目が良い
- 行が長すぎる場合(lstlisting または verbatim)、ページの横から外れることはありません。
- はテキストの残りの部分とインラインであることが望ましい
EDITED (人々が自分で考え出さないように、設定を追加しようと思いました (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}
これらの設定の一例です。
どのように解決するのですか?
この リスティング パッケージは非常に素晴らしく、非常に柔軟です (例えば、コメントとコードのために異なるサイズ)。
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み】LaTeXで "Missing $ inserted "というエラーが発生する。
-
VScode+Latexの設定(Recipe terminated with fatal error: spawn xelatex ENOENT)
-
[解決済み] LaTeXの数式内部で三振をする方法は?[クローズド]
-
[解決済み] 行の段落にある(幅1.38991pt)いっぱいの????ボックスで、PDFが生成されているのにLatexの警告が出る。
-
[解決済み] ラテックス製サイド・バイ・サイド・テーブルのラベリング
-
[解決済み] LaTeXのオプション引数
-
[解決済み] グリッドに数字を追加する Tikz LaTeX
-
[解決済み] LaTexエラー:単位(pt挿入) [終了しました。]
-
[解決済み] LaTeXで空白の後にタブストップを設定するには?
-
[解決済み] LaTeXでコードを美しく見せる [終了しました]。