下付き文字による数式の番号付け

下付き文字による数式の番号付け

テキストサンプルに表示されているような数式の番号付けを取得するにはどうすればよいか、どなたか教えていただけませんか? 私が言っているのは です(4.1)_\pm

E.ディベネデット、偏微分方程式

答え1

試す:

\documentclass[12pt]{article}
    \usepackage[a4paper]{geometry}
    \usepackage{amsmath}
    \numberwithin{equation}{section}

\begin{document}
\section{First}
\begin{equation}
a = b \tag*{(\theequation)$_{\pm}$}\refstepcounter{equation}
\end{equation}
\begin{equation}
c = d \tag*{(\theequation)$_{-}$}\refstepcounter{equation}
\end{equation}
\end{document} 

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

関連情報