问题
在我的博士论文 PDF 中,我在参考书目部分的页面中间看到了很多非常奇怪的分页符(见下文)
设置
我写我的博士论文pandoc markdown.然后我将 pandoc markdown 转换为特克斯通过使用pandoc
和pandoc-citeproc
乳胶经典论文模板(基本上我将 pandoc 变量放在\begin{document}
和\end{document}
命令之间)。
pandoc 命令如下所示:
pandoc --latex-engine=xelatex -t latex \
--bibliography=$HOME/Promotion/Arbeitsordner/Dissertation/dissertation.bib \
--template=$HOME/Promotion/Output/template_test.tex \
--verbose \
--toc \
--toc-depth=3 \
--variable=tof \
--number-sections \
--chapters \
${FILES[*]} \
--from markdown+link_attributes+raw_tex+multiline_tables \
-o dissertation_test.tex
在输出 tex 文件中,屏幕截图中 PDF 中分页符发生的区域如下所示:
\hypertarget{ref-dewaard2008modeling}{}
De Waard, Anita, and Joost Kircz. 2008. ``Modeling Scientific Research
Articles - Shifting Perspectives and Persistent Issues.'' In \emph{Proc.
ELPUB2008 Conference on Electronic Publishing}, 234--45.
\hypertarget{ref-dewaard2006abcde}{}
de Waard, Anita, and Gerard Tel. 2006. ``The ABCDE Format. Enabling
Semantic Conference Proceeding.'' In \emph{Proceedings of the First
Workshop on Semantic Wikis -- From Wiki To Semantics}, edited by Max
Völkel and Sebastian Schaffert. Budva, Montenegro.
\hypertarget{ref-denning1995acm}{}
Denning, Peter J., and Bernard Rous. 1995. ``The ACM Electronic
Publishing Plan.'' \emph{Communications of the ACM} 38 (4): 97--109.
doi:\href{https://doi.org/10.1145/205323.205348}{10.1145/205323.205348}.
如您所见,没有特殊字符或异常可以提示分页符发生的原因(“First”是该行的最后一个词这一事实只是与此示例的巧合,在参考书目中其他奇怪的分页符并非如此)。
我使用以下方法将 tex 文件转换为 pdf赛莱特:xelatex dissertation_test.tex
问题
有人知道为什么会出现这样的分页符以及如何避免这种情况吗?