戻る

\refstepcounter

      \refstepcounter というものです

作成方法

作成方法

\refstepcounter{<counter>}

意味は ”allows you to cross-reference the counter using \label and \ref”で すが もう一つ 理解できません

TeX source code

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

\documentclass[a5paper,12pt]{jarticle}
\newenvironment{exercise}[1]
{\par\noindent\textbf{Exercise(#1)}\begin{itshape}\par\noindent}
{\end{itshape}}
\begin{document}
\section{counter 1}
counter section:~\thesection
\subsection{exercise 1}
\begin{exercise}{An Example1}
This is a sample1.
\label{ex:simple1}
\end{exercise}
\newcounter{exercise}
\refstepcounter{exercise}

counter exercise~\theexercise

\subsection{exercise 2}
\begin{exercise}{An Example2}
This is a sample2.
\label{ex:simple2}
\end{exercise}

\refstepcounter{exercise}
counter exercise~\theexercise

counter page:~\thepage
\newpage
\section{counter page2}
counter section:~\thesection
\section{exercise 3}

\begin{exercise}{An Example page2}
This is a sample on page2.
\label{ex:simple3}
\end{exercise}

\refstepcounter{exercise}
counter exercise~\theexercise

counter page:~\thepage
\end{document}

この結果の表示例です

出力

画像は適宜 切り取り 拡大縮小をしていますが

1頁

008-c-1of2-w192h410.png

2頁

009-c-2of2-w240h402.png

まあ 使いかたを 含めて保留ということです。

にゃんたろう 拝!

2008年 8月 2日 (土) 21:00:28 JST 作成


戻る

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