2011-07-06 4 views
1

私はラテックスの本の中で次のような構造を持っている:appendices環境内のナンバリングを調整するにはどうすればよいですか?

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.A」と「1.B」にしたいときは「.1」と「.2」となります。

何か助けていただければ幸いです。

答えて

1

これに対する答えは、あなたが使用している付録環境のために必要とされる付録パッケージにドキュメンテーションで覆われている:あなたの質問に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} 
+0

ありがとうございました。 –

関連する問題