名前: トニイ@FTEX 日時: 2003-10-01 16:55:48 IPアドレス: 61.198.81.*
>>22222 >\sectionを使ってセクションを作ったときにセクション番号の後に「.」が >つくようにしたいのですが,どうしたらよいのでしょうか? \ref で参照したときに,ピリオド付きになる副作用がありますが,\thesection を 再定義することで可能です。 \documentclass{jarticle} \renewcommand{\thesection}{\arabic{section}.} %% ~ ここ追加 \renewcommand{\thesubsection}{\thesection\arabic{subsection}} \begin{document} \section{はじめに}\label{sec:one} \subsection{つぎに}\label{ssec:two} \ref{sec:one}と\ref{ssec:two} \end{document}
この書き込みへの返事: