我的问题是,如果我尝试使用,我无法摆脱其中一个双附录标题
\section*{}
我的方程式数字不再有 A1、A2、B1、B2 等,因为我使用
\numberwithin{equation}{section}
以下是我的序言
\documentclass[11pt]{article}
\usepackage{eqnarray}
\usepackage{amsmath}
\usepackage{breqn}
\usepackage{expl3}
\usepackage{natbib}
\usepackage{rotating}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{siunitx}
\usepackage{caption}
\usepackage{threeparttable}
\usepackage{pdflscape}
\usepackage{titlesec}
\usepackage[titletoc,toc,title]{appendix}
\numberwithin{equation}{section}
\renewcommand{\contentsname}{Table of Contents}
\renewcommand{\refname}{REFERENCES}
\begin{document}
blablabla
\newpage
\begin{appendices}
\section{Appendix A}
%----------------------------------------------------------------
\end{appendices}
\end{document}
答案1
目录的快速修复:使用\section[]{Appendix A}
。可选参数用作目录中的部分名称,因此如果将其设置为空,您将获得简单的Appendix A
而不是Appendix A Appendix A
。
\documentclass{article}
\usepackage{titlesec}
\usepackage[titletoc]{appendix}
\usepackage{amsmath}
\renewcommand{\contentsname}{Table of Contents}
\numberwithin{equation}{section}
\begin{document}
\tableofcontents
\begin{appendices}
\section[]{Appendix A}
\begin{equation}
a=b
\end{equation}
\end{appendices}
\end{document}