在附录标题后显示附录编号/计数器

在附录标题后显示附录编号/计数器

我想用“A、B、C、...”来引用附录,如“附录 A”,但在文档末尾的附录中,我想要字母“A”“附录”一词,如“附录 A”。

\documentclass[12pt]{article}

\begin{document}

\section{Introduction}

Reference to appendix \ref{ap:a}. 

\appendix
\section{Appendix}
\label{ap:a}

\end{document}

截屏

答案1

report如果您使用类或book而不是,您将自动获得您想要的article

\documentclass[12pt]{report}
\begin{document}

\chapter{Introduction}

I would like to reference the appendix with A,B,C as this Appendix \ref{ap:a}, but in the appendix in the finish of the page I want the letter A after the word Appendix just one time.

\appendix
\chapter{Appendix A}
\label{ap:a}
\end{document}

答案2

我假设您使用报告类并使用 \chapter{}。

\documentclass[12pt]{report}

\begin{document}

\chapter{Introduction}

Reference to appendix \ref{ap:a}. 

\appendix
\chapter{}
\label{ap:a}

\chapter{}
\label{ap:b}

\end{document}

相关内容