提问于:
浏览数:
1609
## 编译环境
操作系统
* [x ] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [x ] TexLive `2019`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
如图: 附录如果改名为Appendix,那么出现在目录中,Appendix 太长,会与后面 Section Title 重叠。是不是应该改目录中Secition的格式? 但是,如果这样, 目录中其它Section格式也会变.所以怎么多带带修改Appendix在目录中的格式? 最小程序见下:
![目录重叠照片](https://wenda.latexstudio.net/data/attach/210213/3kBpJyyG.jpg "目录重叠照片")
\documentclass{article}
\usepackage[title]{appendix}
\begin{document}
\tableofcontents %生成目录
\section{Title of Section 1}
Text in section 1
\section{Title of Section 1}
Text in section 1
\begin{appendices}
\renewcommand{\thesection}{Appendix \Alph{section}.}%修改Appendix 格式
\section{Title of Appendix A}
Text in Appendix A
\section{Title of Appendix B}
Text in Appendix B
\end{appendices}
\end{document}