TeX Counters

前へ | 次へ

TeX 参考事例

命令の位置 順序 ”% ”記号の 有用性を 試行錯誤した例です。

まず画像を 3枚 みてもらいましょう。 素人の 個猫 にとっては 全て いいように 思われるのですが?

画像 A

016-sample01-w394h134.png

画像 B

017-sample02-w376h122.png

画像 C

018-sample03-w260h82.png

TeX source code A

では TeX ファイル (source code)を見てみます。

\documentclass[a5paper,12pt]{jarticle}
\begin{document}
\newcounter{exercise}
\newenvironment{exercise}[1]%
{\refstepcounter{exercise}\vspace{10pt}\par\noindent
\textbf{Exercise \theexercise\ (#1)}
\begin{itshape}\par\noindent\vspace{10pt}}%
{\end{itshape}\vspace{10pt}\par} 
Exercise~\ref{ex:simple} is a simple exercise.
\begin{exercise}{Simple Exercise}%
\label{ex:simple}%
This is a simple exercise.
\end{exercise}
\end{document}

TeX source code B

では TeX ファイル (source code)を見てみます。

\documentclass[a5paper,12pt]{jarticle}
\begin{document}
\newcounter{exercise}
\newenvironment{exercise}[1]
{\refstepcounter{exercise}\vspace{10pt}\par\noindent
\textbf{Exercise \theexercise\ (#1)}
\begin{itshape}\par\noindent\vspace{10pt}}
{\end{itshape}\vspace{10pt}\par} 
Exercise~\ref{ex:simple} is a simple exercise.
\begin{exercise}{Simple Exercise}
\label{ex:simple}
This is a simple exercise.
\end{exercise}
\end{document}

TeX source code C

では TeX ファイル (source code)を見てみます。

\documentclass[a5paper,12pt]{jarticle}
\newenvironment{exercise}[1]%
{\refstepcounter{exercise}\vspace{10pt}\par\noindent
\textbf{Exercise \theexercise\ (#1)}
\begin{itshape}\par\noindent\vspace{10pt}}%
{\end{itshape}\vspace{10pt}\par} 
\newcounter{exercise}
\begin{document}
Exercise~\ref{ex:simple} is a simple exercise.
\begin{exercise}{Simple Exercise}%
\label{ex:simple}%
This is a simple exercise.
\end{exercise}
\end{document}

参考の場所

http://theoval.cmp.uea.ac.uk/~nlct/latex/novices/counters.html

補足

% ”の 存在 と 命令の 位置とい うか順序 について試行したものです。正解というのではありません。参考に ど うぞ。

にゃんたろう 拝!

2008年 8月 2日 (土) 21:01:12 JST 作成


前へ | 次へ

TeX Counters

Copyright © 2006.-2008. nyantarou All Rights Reserved.