2010-04-18 59 views
8

我第一次嘗試在我的論文中添加一個附錄,這裏是我使用的命令 。添加乳膠附錄的問題

\appendix 
\chapter{Appendices} 
\input{appendix} 

輸出看起來比如下:

Appendix A 


Appendices 


A.1 My first appendix 
..... 

它看起來並不壞,但什麼是刺激性的附錄A後的附錄條目有任何possibilty我可以擺脫它?

如果我嘗試下面的命令:

\appendix 
\input{appendix} 

輸出看起來比如下:

.1 My first appendix 
... 

而且它不打算如何。理想情況下,它看起來像這樣:

Appendix A 


A.1 My first appendix 
..... 

任何想法如何做到這一點?

安德魯

回答

2

在我的論文,我用

\appendix 
\include{appendix_name} 

當我剛

\chapter{appendix chapter name} 

渲染

Appendix A 

Appendix chapter name 

textextext 

A.0.1 Appendix subchapter 

我很滿意這個結果。

8

LaTeX中的附錄是章節級別的。您的appendix.tex文件可能有\section命令來標記每個附錄;改爲使用\chapter,並將其與第二次嘗試的語法一起使用。

+0

完美,這工作!非常感謝您的幫助! – Andrew 2010-04-18 12:16:56

1

你可以試試:

\newpage  
\appendix  
\section{first section}\label{app:app1} 
\section{second section}\label{app:app2} 
+0

這適用於'report' /'scrreprt',而不是'book' /'scrbook' – koppor 2016-06-04 22:38:31

8

的\附件命令告訴乳膠切換到闌尾模式。默認情況下,附錄中的章節使用大寫字母(A,B,...)編號。附錄中的部分按連續編號(A.1,A.2,...)編號。

如果你想使用缺省行爲,你可以寫下面進入appendix.tex文件:

\appendix 

\chapter{My first appendix} 
Blah. 

\chapter{My second appendix} 
Blah blah. 

然後,主文檔中,你只包括附錄文件,其中是適當

\input{appendix.tex}