サブ方程式環境で方程式の番号付けをカスタマイズするにはどうすればよいですか?

サブ方程式環境で方程式の番号付けをカスタマイズするにはどうすればよいですか?

ここに画像の説明を入力してください

上の図では、番号付けの部分式部分はアルファベット順になっていますが、式と部分式部分の両方を次のようにカスタマイズしたいと思います: a-Ia-IIa-III。ソース コードは次のとおりです:

\documentclass{book}

\usepackage{amsmath}
\usepackage{amssymb, amsfonts}

\usepackage{subfloat}


\begin{document}

\begin{subequations}

    \begin{align}
        I_{sc} & = I_{sc,ref} & \hspace{-30 mm} \bigg[  1 + \frac{\alpha}{100} (T_{op}-T_{ref}) \biggl]
        \vspace{2 mm}
        \label{eq:I_sc_trans_STC2}
        \\
        %
        V_{oc} & = V_{oc,ref} & \hspace{-30 mm} \bigg[  1 + \frac{\beta}{100} (T_{op}-T_{ref}) \biggl]
        \vspace{2 mm}
        \label{eq:V_oc_trans_STC}
        \\
        %
        P_{mp} & = P_{mp,ref} & \hspace{-30 mm} \bigg[  1 + \frac{\gamma}{100} (T_{op}-T_{ref}) \biggl]
        \label{eq:P_mp_trans_STC}
    \end{align}

\end{subequations}

\end{document}

答え1

あなたは

\renewcommand{\theequation}{\alph{parentequation}--\Roman{equation}}

すぐ後\begin{subequations}

alignat次の MWE では、水平方向のスペースにテキスト コマンドを使用しないように の代わりにを使用し、の代わりにalignなどを使用して数式間の垂直方向のスペースを調整しました。また、テキストの下付き文字は を使用すると見栄えが良くなります。\\[2mm]\vspace{2 mm}\\\text

\documentclass{book}

\usepackage{amsmath}
\usepackage{amssymb, amsfonts}

\begin{document}

\begin{subequations}
\renewcommand{\theequation}{\alph{parentequation}--\Roman{equation}}

    \begin{alignat}{2}
        I_{\text{sc}} & = I_{\text{sc},\text{ref}} & \bigg[  1 + \frac{\alpha}{100} (T_{\text{op}}-T_{\text{ref}}) \biggl]
        \label{eq:I_sc_trans_STC2}
        \\[2mm]
        %
        V_{\text{oc}} & = V_{\text{oc},\text{ref}} & \bigg[  1 + \frac{\beta}{100} (T_{\text{op}}-T_{\text{ref}}) \biggl]
        \label{eq:V_oc_trans_STC}
        \\[2mm]
        %
        P_{\text{mp}} & = P_{\text{mp},\text{ref}} & \bigg[  1 + \frac{\gamma}{100} (T_{\text{op}}-T_{\text{ref}}) \biggl]
        \label{eq:P_mp_trans_STC}
    \end{alignat}

\end{subequations}

\end{document} 

ここに画像の説明を入力してください


\alphaこの動作をグローバルに、つまりすべての方程式に番号を付け、すべてのサブ方程式に番号を付ける必要がある場合は\Roman、プリアンブルに次の行を追加します。

\usepackage{etoolbox}
\patchcmd{\subequations}{\alph{equation}}{--\Roman{equation}}{}{}

\renewcommand{\theequation}{\alph{equation}}

代わりに

\renewcommand{\theequation}{\alph{parentequation}--\Roman{equation}}

毎回。

関連情報