10/04/05 21:36:36
>>851
この例に
\tableofcontents
を入れると、ちょっと困る。
\documentclass[10pt,a4paper]{jarticle}
\begin{document}
\tableofcontents
\appendix
\def\thesection{付録\Alph{section}}
\section{foo bar}
\end{document}
でなく、
\documentclass[10pt,a4paper]{jarticle}
\begin{document}
\tableofcontents
\appendix
\section*{付録}
\addcontentsline{toc}{section}{付 録}
\renewcommand\thesection{\Alph{section}}
\section{foo bar}
\end{document}
とした方がいいと思う。