名前: トニイ 日時: 2004-12-21 15:26:24 IPアドレス: 219.97.228.*
>>33292 >appendixの数式番号が(2.1)(2.2)の表記になってしまいました. >これを(A2.1)(A2.2)の表記にかえるにはどのようにしたらいいのでしょうか? A は Appendix の A ですかね? % pLaTeX2e \documentclass{report} \begin{document} \chapter{hoge} \begin{equation} a = b + c \end{equation} \appendix \renewcommand{\thechapter}{\arabic{chapter}}% \renewcommand{\theequation}{A\arabic{chapter}.\arabic{equation}} \chapter{foo} \chapter{bar} \begin{equation} d = e + f \end{equation} \end{document}
この書き込みへの返事: