名前: トニイ 日時: 2010-11-29 18:37:14 IPアドレス: 219.99.220.*
>>55460 >章番号と節番号の間の.を-にかえる方法がわかりません \theequation の再定義で可能です。 なお,節番号を式番号でも表示しているので「\section」毎に式番号がリセットされた方が 良いかと思いますので少し追加してあります。 % pLaTeX2e \documentclass[a4paper]{jsbook} \makeatletter %%\@addtoreset{equation}{chapter}%% オリジナル \@addtoreset{equation}{section}%% 節ごとに式番号リセット % %% \theequationを再定義 \renewcommand{\theequation}{\arabic{chapter}-\arabic{section}-\arabic{equation}} \makeatother \begin{document} \chapter{ほげ} \section{ほげほげ} \begin{equation} a = b + c \end{equation} \begin{equation} d = e + f \end{equation} \section{ふがふが} \begin{equation} g = h + i \end{equation} \end{document}
この書き込みへの返事: