以下 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
\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}