2010-05-02 63 views
17

我有一個報告,我也有附錄。 我想要的是在附錄開始時在頁碼上使用不同的樣式。我如何在乳膠中製作自定義頁碼?

我使用阿拉伯語,直到我到達附錄。然後,我會想要做這樣的事情:

我想自定義頁面編號爲:

Chapter: A 
Section: {Chapter}{1}  (A-1) 
\newpage 
\pagenumbering{custompagenumbering} 

這是可能的嗎?

+0

要得到更準確的答案,您應該詳細說明您正在查找的「自定義頁面編號」的確切格式和行爲。 – glts 2010-05-07 15:56:13

+0

我投票結束這個問題作爲題外話,因爲它是關於乳膠 – Flexo 2016-01-14 17:27:10

回答

23
Some paragraph. Some paragraph. Some paragraph. Some paragraph. Some paragraph. 

\newpage 
\setcounter{page}{1} 
\renewcommand{\thepage}{A-\arabic{page}} 

Some paragraph. Some paragraph. Some paragraph. Some paragraph. Some paragraph. 

這會在你想要做的任何地方嗎?這是如何操作page計數器以及\thepage命令,該命令確定將打印爲頁碼的內容。 \roman{page}會給羅馬數字,\alph{page}一個bç ...

其他明智的解決辦法是使用fancyhdr包,之前建議。

+0

+1好答案。 「fancyhdr」的例子會使這個答案非常好。 – Geoff 2010-05-07 12:08:31

+0

+1這節省了我的時間 – 2011-03-04 16:08:24

2

如果你能夠使用Memoir類(我推薦),你可以使用頁面樣式。見Chapter 7.2 Page Styles。例如,創建兩種風格:

\pagestyle{plain} % Regular page numbering 

... STUFF ... 

\clearpage % make a new page numbering down here 
\copypagestyle{AppendixPS}{plain} 
\renewcommand{\thepage}{Chapter \chapter Section \section page \page} 
\pagestyle{AppendixPS} 

我已經有一段時間沒有–測試此–或使用乳膠這樣做,但我希望它提供了一些精神食糧,或者至少讓你在正確的軌道上。

2

首先,我將創建一個文件,其中包括所有的章節和附錄等一些所謂main.tex或thesis.tex

那裏你可以做所有的包括和文檔設置,還您頁眉和頁腳的設置:

% Free Header and Footer 
\usepackage{fancyhdr} 
\lfoot[\fancyplain{}{}]{\fancyplain{}{}} 
\rfoot[\fancyplain{}{}]{\fancyplain{}{}} 
\cfoot[\fancyplain{}{\footnotesize\thepage}]{\fancyplain{}{\footnotesize\thepage}} 
\lhead[\fancyplain{}{\footnotesize\nouppercase\leftmark}]{\fancyplain{}{}} 
\chead{} 
\rhead[\fancyplain{}{}]{\fancyplain{}{\footnotesize\nouppercase\sc\leftmark}} 

這裏它會使頁面中心的頁碼成爲頁腳。以及標題左側的章節標題以及右側的章節標題。

然後你就可以開始你的包括其他章節..礦山看起來像(仍在thesis.tex):

% --- Start of Document ---------------------------------------- 
\begin{document} 

\pagenumbering{roman}  %roemische ziffern 

\pagestyle{fancy}   % Initialize Header and Footer 

\include{title}   % Title Page 
\include{affidavit}  % affidavit 
\include{abstracts}  % Englisch and German abstracts 
\include{acknowl}  % Acknowledgements 
\include{glossary}  % Glossary 
\include{abbreviation} % Abkuerzungen 
%\include{keywords}  % Keywords 
\include{toc}  % Table of Contents 

%--- Include your chapters here ---------- 
\setcounter{page}{1} % set page to 1 again to start arabic count 
\pagenumbering{arabic} 
%\include{chapter0} 
\include{chapter1}  % Introduction 
\include{chapter2}  % Background 
\include{chapter3}  % Konzeption 
\include{chapter4}  % Technische Umsetzung 
\include{chapter5} 

\include{chapter6} 

% 
%% .... 

\appendix 
\include{appendix}   % Appendix A 

\end{document} 

希望幫助!頁眉和頁腳有一些時間困難,有時如果你改變\ documentclass它可能會出現不同。 ;)