用字母而不是数字对附录进行编号

用字母而不是数字对附录进行编号

我正在尝试对附录的字母进行编号。现在看起来是这样的:

\documentclass[11pt, a4paper, twoside]{article}

% PACKAGES
\usepackage{geometry}
\usepackage{lipsum}        

\begin{document}
\tableofcontents

\section{First section}
\subsection{A subsection}
\lipsum[1]

\appendix
\section{Appendices}
\subsection{First appendix}
\subsection{Second appendix}

\end{document}

预览
但不是计算数字

A.1
A.2
...

我想增加字母。应该是这样的:

附录
A - 第一个附录
B - 第二个附录
C - 第三个附录

其中“附录”是一个节,其他是小节。

我希望有人能帮助我:)

答案1

如果您确实需要将附录作为小节,则可以使用以下方法更改小节的编号\renewcommand{\thesubsection}{\Alph{subsection}}

\documentclass[11pt, a4paper, twoside]{article}
\usepackage{geometry}
\usepackage{lipsum}

\begin{document}
\tableofcontents

\section{First section}
\subsection{A subsection}
\lipsum[1]

\appendix
\section*{Appendices}
\addcontentsline{toc}{section}{Appendices}
\renewcommand{\thesubsection}{\Alph{subsection}}

\subsection{Appendix Subsection}
\subsection{Another appendix Subsection}
\end{document}

在此处输入图片描述

答案2

使用\section*{Appendices}并将其添加到目录中\addcontentsline。然后只需\section对每个附录使用即可。

\documentclass{article}
\begin{document}
\tableofcontents
\section{First section}
\subsection{A subsection}
\appendix
\addcontentsline{toc}{section}{Appendices}
\section*{Appendices}
\section{First appendix}
\section{Second appendix}
\end{document}

平均能量损失

答案3

我发现使用起来更容易:

\appendix
\renewcommand{\thechapter}{A}

并针对每个附录进行更改:)

答案4

\section*{A:章节标题}

或者

\section*{A 节:章节标题}

或者

\section*{A 部分:章节标题}

相关内容