I'm TeXing the paper Sur un r ́esultat de Waldspurger by Jacquet, and I found that the paper has the following format:
Here (3.2) stands for the subsection 3.2, and the equation numbering 3.1.11 comes from subsection and corresponding number of it. I know how to handle (3.1.11) for the equation, but I have no idea how to do such a numbering for subsection (3.1). I found this answer which remove subsection title, but then I have to manually put the numbers.
Edit: here are some more about what I've done. As I said, I used the solution in the above linked answer
\newcommand{\fakesubsection}[1]{%
\par\refstepcounter{subsection}% Increase subsection counter
\subsectionmark{#1}% Add subsection mark (header)
\addcontentsline{toc}{subsection}{\protect\numberline{\thesubsection}#1}% Add subsection to ToC
% Add more content here, if needed.
}
and put this for each subsection. This somewhat generate ghost subsection, which does not have titles but still counts well. Now I want to add small numbering as in the picture I uploaded above, like (3.2) in the second paragraph. I'm using article class but it doesn't matter for me to change this to anything else. Just want to have a consistent numbering as the original paper (link).


add commentfunction. – Stefan Pinnow Dec 13 '22 at 14:13article, but it doesn't matter for me to change this to anything else. – Seewoo Lee Dec 13 '22 at 21:12