Re: 番号にprimeはつけられますか?

名前: トノ
日時: 2002-03-23 01:50:03
IPアドレス: 150.35.254.*

>>7537 \newtheorem{name} のようにした場合、name 環境の番号は、同名の name と いうカウンターで管理されます。カウンター値の出力には、(定理型環境の 番号に限らず)カウンター名の前に「the」を付けた名前のマクロ(上の例の 場合は\thename)が使われます。従って、そのマクロの定義を変更することに よって、様々な態様での番号出力が出来るようになります。 \documentclass{jarticle} \newtheorem{thmP}{定理} \makeatletter \renewcommand*{\thethmP}{\arabic{thmP}$^{\prime}\m@th$} % 上の行をいろいろ変えて遊んでみてください。 % \renewcommand*{\thethmP}{\Alph{thmP}} % \renewcommand*{\thethmP}{\fbox{\fnsymbol{thmP}}} \makeatother \begin{document} \begin{thmP} \label{thmP1} The first theorem with prime. \end{thmP} \begin{thmP} \label{thmP2}% The second theorem with prime. \end{thmP} \begin{thmP}[Optional Argument] \label{thmP3} The third theorem with prime. \end{thmP} まずは「\ref{thmP1}」、そいでもって「\ref{thmP2}」、 最後に「\ref{thmP3}」。 \end{document}

この書き込みへの返事:

お名前
題名 
メッセージ(タグは <a href="...">...</a> だけ使えます)