如何调整附录环境中的编号?

时间:2011-07-06 20:10:00

标签: latex

我的Latex书中有以下结构:

1)主文件

...
\include{chapter1}
\include{chapter2}
\include{chapter3}
...

2)chapterN.tex

\input{file1}
\input{file2}
\input{file3}

\begin{appendices}
\input{appendix_1_chapterN}
\input{appendix_2_chapterN}
\end{appendices}

结果是第1章末尾的附录(例如)被命名为“.1”和“.2”,当我希望它们是名字“1.A”和“1.B”时

感谢任何帮助。

1 个答案:

答案 0 :(得分:2)

附录包的文档中包含了对此的答案,这是您正在使用的附录环境所必需的:ftp://ftp.tex.ac.uk/tex-archive/macros/latex/contrib/appendix/appendix.pdf

您的问题的答案是您正在使用章节附录的附录环境,它是为章节附录设计的。要实现部分附录的目标,请使用子附录环境,如下所示:

\documentclass{book}
\usepackage{appendix}

\begin{document}
\chapter{Intro}
\section{Intro Sec}
\begin{subappendices}
\section{Appendix Sec}
\end{subappendices}
Some Text

\chapter{Conclusion}
Some Text
\end{document}