如何避免參考書目中奇怪的分頁符號?

如何避免參考書目中奇怪的分頁符號?

問題

在我的博士論文的 PDF 中,我在參考書目部分的頁面中間出現了很多非常奇怪的分頁符(見下文)

在此輸入影像描述

設定

我寫我的博士學位pandoc降價。然後我將 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

問題

有人知道為什麼會發生這種分頁符號以及如何避免這種情況嗎?

相關內容