书签编号

书签编号

我在编号方面遇到了麻烦section

我得到了如下信息:

  1. 第1章

    PD11.1 第 1.1 节

    PD11.2 第 1.2 节

例子:

在此处输入图片描述

我想删除部分名称之前的“PD1”。

我正在使用的代码片段:

\usepackage[unicode, pdftex, pdfpagelabels, bookmarks, hyperindex, hyperfigures]{hyperref}

\hypersetup{
    unicode=true,       
    bookmarksnumbered=true,      
    bookmarksopen=true,       
    colorlinks=true,        
    linkcolor=black,       
    citecolor=black,         
    filecolor=black,        
    urlcolor=black
}

编辑:显然,问题出在这段代码上:

\AtBeginDocument{%
        % Make \section use text figures
        \let\myTheSection\thesection
        \renewcommand{\thesection}{\oldstylenums{\myTheSection}}
        % Make \subsection withou number
        %\let\myTheSubSection\thesubsection
        %\renewcommand{\thesubsection}{}
        % Make the page numbers in text figures
        \let\myThePage\thepage
        \renewcommand{\thepage}{\oldstylenums{\myThePage}}
}

我将其注释掉,数字显示如预期!

相关内容