問題
私の博士論文のPDFでは、参考文献セクションのページの真ん中に非常に奇妙な改ページがたくさんあります(下記参照)。
設定
私は博士論文を執筆していますパンドックマークダウン次に、Pandoc Markdownを次のように変換します。テキストラテックスと併用することpandoc
でpandoc-citeproc
クラシック論文\begin{document}
テンプレート (基本的に、コマンドとコマンドの間に pandoc 変数を配置します\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
質問
なぜこのようなページ区切りが発生するのか、またこれを回避するにはどうすればよいのか、誰かご存知ですか?