如何使用 includepdf 在目录中的参考文献前包含符号 \S?

如何使用 includepdf 在目录中的参考文献前包含符号 \S?

以下 MWE 生成一个白色 PDF,其中只包含数字“1”,表示其页码。为其命名White.tex并确保其输出名为White.pdf

\documentclass{article}
\begin{document}
\phantom{a}
\end{document}

此外,考虑这个其他的 MWE,它依赖于pdfpages导入White.pdf我想要实现的是\S.标题前的相应空格References否则,如下面的输出所示,标题References看起来很奇怪。我不想References被编号,因为在我的真实文档中,该References部分没有编号。

\documentclass[a4paper,numbers=endperiod]{scrbook}

% PACKAGES LOADING

\usepackage{pdfpages} % To include the cover.

% TOC SETTINGS

\DeclareTOCStyleEntry[indent=0pt]{default}{section}

\renewcommand\addchaptertocentry[2]{\addtocentrydefault{chapter}{}{#2}}
\renewcommand{\thesection}{\arabic{section}}

%%%%%%%%%%%%%%% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}

\vfill
\tableofcontents
\vfill
\hspace{0pt}
\protect\thispagestyle{empty}
\includepdf[pages=-,addtotoc={
    1,chapter,1,Fancy Paper Title,chap1,
    1,section,1,Fancy Title,1.1,
    1,addsec,1,References,1.6}]{White.pdf}
    
\end{document}

这是第二个 MWE 的输出

输出

感谢大家的时间!

答案1

C

\documentclass[a4paper,numbers=endperiod]{scrbook}

% PACKAGES LOADING

\usepackage{pdfpages} % To include the cover.

% TOC SETTINGS

\DeclareTOCStyleEntry[indent=0pt]{default}{section}

\renewcommand\addchaptertocentry[2]{\addtocentrydefault{chapter}{}{#2}}
\renewcommand{\thesection}{\arabic{section}}

%%%%%%%%%%%%%%% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%

\begin{document}
    
    \vfill
    \tableofcontents
    \vfill
    \hspace{0pt}
    \protect\thispagestyle{empty}
    \includepdf[pages=-,addtotoc={
        1,chapter,1,Fancy Paper Title,chap1,
        1,section,1,Fancy Title,1.1,
        1,addsec,1,\protect\S.\hskip3.55ex References,1.6}]{White.pdf} % changed <<<<<<<<<<<<<<<<<
    
\end{document}

相关内容