From: j8takagi Date: Wed, 4 Dec 2013 14:38:02 +0000 (+0900) Subject: graphics_commentテストの内容を変更 X-Git-Url: https://j8takagi.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2822a8a52b2d17dea1aa3a75c974fb7aa0cd575a;p=makefiles.git graphics_commentテストの内容を変更 --- diff --git a/latex_mk/test/graphics_comment/graphics_comment.tex b/latex_mk/test/graphics_comment/graphics_comment.tex index 435d17f..17b3683 100644 --- a/latex_mk/test/graphics_comment/graphics_comment.tex +++ b/latex_mk/test/graphics_comment/graphics_comment.tex @@ -3,30 +3,62 @@ \begin{document} \section{通常} +\begin{verbatim} +\includegraphics[width=15cm]{tiger1.pdf} +\end{verbatim} + 画像\texttt{tiger1.pdf} が読み込まれる。 \includegraphics[width=15cm]{tiger1.pdf} \section{行頭からのコメント} +\begin{verbatim} +% \includegraphics[width=15cm]{tiger2.pdf} +\end{verbatim} + コメント内の画像\texttt{tiger2.pdf} は読み込まれない。 % \includegraphics[width=15cm]{tiger2.pdf} \section{行の途中でコメント} -コメント内の画像\texttt{tiger3.pdf} は読み込まれてはならない。% \includegraphics[width=15cm]{tiger3.pdf} +\begin{verbatim} +テキストテキストテキストテキスト % \includegraphics[width=15cm]{tiger3.pdf} +\end{verbatim} + +コメント内の画像\texttt{tiger3.pdf} は読み込まれない。 + +テキストテキストテキストテキスト % \includegraphics[width=15cm]{tiger3.pdf} \section[行中に\%を挿入]{行中に\texttt{$\backslash$\%} を挿入} +\begin{verbatim} +\% \includegraphics[width=15cm]{tiger4.pdf} +\end{verbatim} + \verb|\%| の後に記載された画像\texttt{tiger4.pdf} は読み込まれる。 \% \includegraphics[width=15cm]{tiger4.pdf} \section{\tt{verbatim}環境} + +\begin{verbatim} +\begin{verbatim} +\includegraphics[width=15cm]{tiger5.pdf} +\end{verbatim} +\verb|\end{verbatim}| + \verb|\verbatim| 環境内の画像\texttt{tiger5.pdf} は読み込まれない。 \begin{verbatim} \includegraphics[width=15cm]{tiger5.pdf} + \end{verbatim} \section{\tt{verb}環境} -\verb|\verb| 内の画像\texttt{tiger6.pdf} は読み込まれない。\verb|\includegraphics[width=15cm]{tiger6.pdf}| +\begin{verbatim} +\verb|\includegraphics[width=15cm]{tiger6.pdf}| +\end{verbatim} + +\verb|\verb| 内の画像\texttt{tiger6.pdf} は読み込まれない。 + +\verb|\includegraphics[width=15cm]{tiger6.pdf}| \end{document}