如何在乳胶中进行自定义页码编号?

时间:2010-05-02 12:49:00

标签: latex page-numbering

我有一份报告,我也有附录。 我想要的是在附录开始时在页码上使用不同的样式。

我使用阿拉伯语直到我到达附录。然后我想做这样的事情:

我希望自定义页面编号为:

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

这可能吗?

3 个答案:

答案 0 :(得分:24)

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} a b c ......

另一个明智的解决方案是使用fancyhdr包,如前所述。

答案 1 :(得分:3)

首先,我将创建一个包含所有章节和附录等的文件,名为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它也会显得不同。 ;)

答案 2 :(得分: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}

我没有对此进行测试 - 或者在一段时间内使用LaTeX来做这件事 - 但我希望它提供一些思考的食物,或者至少让你走上正轨。