Appendix A: hoge
とし、
Appendix内の数式番号を
(A.1)
のようにしたいのですが、
どうすればいいでしょうか?
二つ質問があったことに気がついて投稿し直しです。
documentclass によってカスタマイズ方法が若干異なる
report でのカスタマイズ例
\documentclass{report}
\begin{document}
\chapter{A chapter}
\begin{equation} f(x) = ax^2 + bx + c \end{equation}
\appendix
%% report で Appendix を改行なしで「Appenddix: hoge」のようにするには ...
%% 参考URL https://detail.chiebukuro.yahoo.co.jp/qa/question_detail/q14199499464
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
\ifnum \c@secnumdepth >\m@ne
\huge\bfseries \@chapapp\space \thechapter:~ % ...「: 」を追加
% \par\nobreak%%%%%%%%%%%%%%%%% ...改行を削除対策
% \vskip 20\p@%%%%%%%%%%%%%%%%% ...改行を削除対策
\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak%%%% ここを \huge にするか、上の \huge を \Huge にするか微調整
\vskip 40\p@
}}
\makeatother
\def\thesection{Appendix \Alph{chapter}:}
\chapter{hoge}
%% report に関しては \theequation のカスタマイズ不要
\begin{equation} f(x) = ax^2 + bx + c \end{equation}
\chapter{An appendix WITH-CUSTOMIZE but ... same as no-customize}
%% report 以外であれば以下のようなカスタマイズが必要になるかもしれない
\renewcommand{\theequation}{\thechapter.\arabic{equation}}
\begin{equation} f(x) = ax^2 + bx + c \end{equation}
\end{document}
もしご希望通りの結果が得られない場合は、上記の documentclass などを変えたサンプルを見せてください。
\def\thesection{Appendix \Alph{section}:}
と定義し、
\appendix
\section{hoge}
とすると、Appendix部分では
Appendix A: hoge
と表示され、
\begin{equation}
f(x) = hoge
\end{equation}
とすると、
数式番号が、(Appendix A:1)
と表示されてしまいます。