我使用了以下代码并得到了以下结果:
\documentclass{article}
\begin{document}
\renewcommand{\thesubsection}{\arabic{section}\roman{subsection}}
\renewcommand{\thesubsubsection}{\thesection.\alph{subsubsection}}
\section{title}
\subsection{title}
\subsubsection{title}
\end{document}
我希望子节和小节看起来像这样:
1 个标题
1.i 标题
1.ia 标题
如果有人能帮助我,我将不胜感激。
答案1
您想要进行增量定义:
\renewcommand{\thesubsection}{\thesection.\roman{subsection}}
\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsubsection}}