假设以下代码:
\usepackage[toc,page]{appendix}
....
\begin{appendices}
\appendix
\chapter{Foo}
\label{app:foo}
text1
\chapter{Bar}
\label{app:bar}
text2
\end{appendices}
目录显示:
Appendices
Foo
Bar
但是,附录标题本身的形式为A. Foo
和B. Bar
。
我怎样才能强制目录也显示字母,即如果需要,显示以下目录:
Appendices
A. Foo
B. Bar
编辑1:
任何其他可与 pdflatex 配合使用的工作解决方案(无论使用什么包)都足够了:)
答案1
\documentclass{book}
\usepackage[toc,page]{appendix}
\begin{document}
\tableofcontents
\begin{appendices}
\appendix
\chapter{Foo}
\label{app:foo}
text1
\chapter{Bar}
\label{app:bar}
text2
\end{appendices}
\end{document}