有人问过类似的问题这里..但我似乎无法让这个解决方案发挥作用。我试图做的只是显示单词 APPENDIX,它居中。然后,我想添加一些文本。然而,在下面的例子中,它一直显示 APPENDIX A。
如何从附录标题中消除“A”?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[title]{appendix}
\title{appendixTest}
\author{Mr. Anderson}
\date{July 2021}
\begin{document}
\maketitle
\section{Introduction}
There is no spoon!
\begin{appendices}
\renewcommand{\appendixname}{APPENDIX}
\centering\section{}
\textbf{Title Here!}
\newline
Some appendix text here!!!!
\end{appendices}
\end{document}
答案1
我发现我的评论没啥帮助,哈哈。但是这个有用:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[title]{appendix}
\title{appendixTest}
\author{Mr. Anderson}
\date{July 2021}
\begin{document}
\maketitle
\section{Introduction}
There is no spoon!
\begin{appendices}
\centering\section*{APPENDIX}
\textbf{Title Here!}
\newline
Some appendix text here!!!!
\end{appendices}
\end{document}
答案2
这个答案适用于该类,但对于定义的或其他类article
会略有不同。book
\chapter
这个 MWEappendices
用一个简单的环境替换您的环境,\appendix
因为看起来您可能只有一个附录。
% appendixprob.tex SE 604719
\documentclass{article}
%\documentclass{report} %%% produces different appendices layout
\usepackage[utf8]{inputenc}
\usepackage[title]% %% title option maybe irrelevant
{appendix}
\title{appendixTest}
\author{Mr. Anderson}
\date{July 2021}
\begin{document}
\maketitle
\section{Introduction}
There is no spoon!
\appendix %% just one so don't need appendices environment
\renewcommand{\appendixpagename}{APPENDIX}
%\appendixpage %% in article class prodes a \part title (left justified)
\begin{center} %% center APPENDIX
\appendixpagename
\end{center}
\textbf{Title Here!}
\newline
Some appendix text here!!!!
% \end{appendices}
\end{document}
然而,这个版本确实使用了appendices
环境。
% appendixprob2.tex SE 604719
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[title]{appendix}
\title{appendixTest}
\author{Mr. Anderson}
\date{July 2021}
\begin{document}
\maketitle
\section{Introduction}
There is no spoon!
\begin{appendices}
\renewcommand{\appendixpagename}{APPENDIX}
%\appendixpage %% in article class prodes a \part title (left justified)
\begin{center} %% center APPENDIX
\appendixpagename
\end{center}
\textbf{Title Here!}
\newline
Some appendix text here!!!!
\end{appendices}
\end{document}
处理任一版本都会产生相同的结果。