我如何将第 1.1 节更改为第 1.A 节

我如何将第 1.1 节更改为第 1.A 节

由于疫情,我们不得不在线答题。我们拿到试卷,然后自己做题。

试卷的格式Question 3.A, Question 3.B如下。

我想知道是否有办法将 Latex 部分引用格式更改为如下所示?

谢谢。

答案1

尝试这个!

\documentclass{article}

\begin{document}

\renewcommand{\thesubsection}{\thesection.\Alph{subsection}} % 

\section{Title}

\subsection{Subtitle}
\renewcommand{\thesubsection}{\thesection.\alph{subsection}} % 

\subsection{Subtitle}
\renewcommand{\thesubsection}{\thesection.\Roman{subsection}} % 
\subsection{Subtitle}
\renewcommand{\thesubsection}{\thesection.\roman{subsection}} % 
\subsection{Subtitle}
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}} % 
\subsection{Subtitle}

\end{document}

相关内容