makeで現在のTeXファイル、make allで全バージョンのTeXファイルをそれぞれ処理するよう仕様変更
[makefiles.git] / latex_mk / test / graphics_pdf_comment / graphics_pdf.tex
1 \documentclass{jsarticle}
2 \usepackage[dvipdfmx,hiresbb]{graphicx}
3 \begin{document}
4
5 \section{通常}
6 画像\texttt{tiger1.pdf} が読み込まれる。
7
8 \includegraphics[width=15cm]{tiger1.pdf}
9
10 \section{行頭からのコメント}
11 コメント内の画像\texttt{tiger2.pdf} は読み込まれない。
12
13 % \includegraphics[width=15cm]{tiger2.pdf}
14
15 \section{行の途中でコメント}
16 コメント内の画像\texttt{tiger3.pdf} は読み込まれてはならない。% \includegraphics[width=15cm]{tiger3.pdf}
17
18 \section[行中に\%を挿入]{行中に\texttt{$\backslash$\%} を挿入}
19 \verb|\%| の後に記載された画像\texttt{tiger4.pdf} は読み込まれる。
20
21 \% \includegraphics[width=15cm]{tiger4.pdf}
22
23 \section{\tt{verbatim}環境}
24 \texttt{verbatim}環境内の画像\texttt{tiger5.pdf} は読み込まれない。
25
26 \begin{verbatim}
27 \includegraphics[width=15cm]{tiger5.pdf}
28 \end{verbatim}
29 \end{document}