意大利总督府

意大利总督府

大家早上好,我完成了一份技术政策文件,分为部分、章节、节和小节。我想创建这个页码:

意大利总督府

1 PENCA        I - 1
 1.1  CCCCC    I - 35
2. POLLA       I - 77
 2.1 EEEEE     I - 99

三、技术

6 PENCA      III - 1
 6.1 HHHHH   III - 70

VI 具体来说

 15 PUNCA        VI - 1
 15.1   LLLLL    VI - 37

其他信息:除了一般索引外,该文档还包含词汇表和主题索引;该文档基于 Book 类和模板“Orange Book”进行了适当更改。可以实现这一点吗?感谢您的时间。

更新 31/03/2017

在 strcuture.txt 中我有这个:

    \renewcommand{\thepage}{\tttext{\thepart~-- \arabic{page}}}
    \usepackage{chngcntr}
    \counterwithin{page}{part}

%-------------------------------------------------------------------------------
    %   PAGE HEADERS
%-------------------------------------------------------------------------------

    \usepackage{fancyhdr} % Required for header and footer configuration

    \pagestyle{fancy}
    \renewcommand{\chaptermark}[1]{\markboth{\sffamily\normalsize\bfseries\chaptername\ \thechapter.\ #1}{}} % Chapter text font settings
    \renewcommand{\sectionmark}[1]{\markright{\sffamily\normalsize\thesection\hspace{5pt}#1}{}} % Section text font settings
    \fancyhf{} \fancyhead[LE,RO]{\sffamily\normalsize\thepage} % Font setting for the page number in the header
    \fancyhead[LO]{\rightmark} % Print the nearest section name on the left side of odd pages
    \fancyhead[RE]{\leftmark} % Print the current chapter name on the right side of even pages
    \renewcommand{\headrulewidth}{0.5pt} % Width of the rule under the header
    \addtolength{\headheight}{2.5pt} % Increase the spacing around the header slightly
    \renewcommand{\footrulewidth}{0pt} % Removes the rule in the footer
    \fancypagestyle{plain}{\fancyhead{}\renewcommand{\headrulewidth}{0pt}} % Style for when a plain pagestyle is specified

    % Removes the header from odd empty pages at the end of chapters
    \makeatletter
    \renewcommand{\cleardoublepage}{
    \clearpage\ifodd\c@page\else
    \hbox{}
    \vspace*{\fill}
    \thispagestyle{empty}
    \newpage
    \fi}

但是,当我编译代码时,唯一发生的事情是页码从部分页面开始(这也是我想要的),而页眉上的页码保持不变(当然,当开始新的部分时会重新开始)。我希望我已经说得足够清楚了(抱歉我的英语不好)。

更新 06/04/2017

抱歉,我犯了一个错误。这是我需要的结果,否则每个部分的数字都会被重置,结果将变得毫无价值。有人有什么想法吗?

意大利总督府

1 PENCA        I - 1
 1.1  CCCCC    I - 35
2. POLLA       I - 77
 2.1 EEEEE     I - 99

三、技术

1 PENCA      III - 1
 1.1 HHHHH   III - 70

VI 具体来说

 1 PUNCA        VI - 1
 1.1   LLLLL    VI - 37

相关内容