Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ラテックスの PDF ドキュメントにテキストを追加したいと考えています。テキストは実際の PDF に表示されることは想定されていません。コード内のコメントのようにしたいので、プログラムに「コード」をロードしてコメントを読むことができます。これは可能ですか?
敬具
次の 2 つの方法があります。
単一行の前に % を追加して、コメントアウトすることもできます
% This text will be a comment
または、次のようにして、より大きなセクションをコメントアウトできます。
\usepackage{comment} \begin{comment} This text will be commented out. \end{comment}
お役に立てれば!