
現在、pdfLaTeX を使用している次のコード:
\epigraph{"[Boleslaus] meanwhile, because of his severity and the horrors of his crimes, … though he was awarded the crown royal, shall not be placed among the Polish kings and princes.}{Wielkopolska Chronicle}
ボレスワフは、1030 年代にキリスト教を排除しようと貴族たちが起こした反乱である異教徒の反動において、リーダーではなかったとしても、少なくとも重要な役割を果たした可能性が高いようです。
これは私にこれを与えます:
テキストは全体的に 2 列になっており、ページからはみ出したテキストの一部が見えなくなっています。
次のように、エピグラムの終わりとテキストの始まりの間に空白行を挿入します。
\epigraph{"[Boleslaus] meanwhile, because of his severity and the horrors of his crimes, … though he was awarded the crown royal, shall not be placed among the Polish kings and princes.}{Wielkopolska Chronicle}
It seems likely that Boleslaus was, if not the leader, at least instrumental in the Pagan Reaction, a mutiny of the nobility in the 1030s in an attempt to ward off Christianity.
しかし、余分な空白によって孤立した行が発生します。
前もって感謝します!
編集: 最小限のコードエラー:
\documentclass[10pt,a4paper,twocolumn,twoside]{article}
\usepackage[utf8]{inputenc}
\usepackage{epigraph}
\begin{document}
No sources from the time explicitly indicate his existence – indications of him in the earliest primary sources are limited to a mention of Boleslaus II (r. 1058-1076) with an extra ‘I’ in the Tyniec Sacramentary\footnote{A sacramentarium is a Catholic liturgical book akin to a Missal, but lacking all the parts not said by the priest.}, written about thirty years after the Forgotten’s death. The first time he is reliably mentioned is in the the Chronicle of Greater Poland, which gives some clue as to why the evidence is so scanty:
\epigraph{"[Boleslaus] meanwhile, because of his severity and the horrors of his crimes, … though he was awarded the crown royal, shall not be placed among the Polish kings and princes.}{Wielkopolska Chronicle}
It seems likely that Boleslaus was, if not the leader, at least instrumental in the Pagan Reaction, a mutiny of the nobility in the 1030s in an attempt to ward off Christianity. In an effort to quell paganism in the country, it seems that his brother, successor (and one-time monk) Casimir I and his descendants came up with an efficient solution to hiding the skeletons in the closet of the House of Piast – damnatio memoriæ.
\end{document}
答え1
問題は の終わりではなく\epigraph
、始まりにあります。
前の空白行が欠落しているため、すべてがうまくいかず、TeX が垂直モードでない場合に場違いな\epigraph
無視が原因で、非常に低レベルのエラーが発生します。\prevdepth
コマンド定義は で始まる必要があります\par
。
\documentclass[10pt,a4paper,twocolumn,twoside]{article}
\usepackage[utf8]{inputenc}
\usepackage{epigraph}
\usepackage{etoolbox}
\pretocmd{\epigraph}{\par}{}{}
\begin{document}
No sources from the time explicitly indicate his existence
\epigraph{"[Boleslaus] meanwhile, because of his severity}{Wielkopolska Chronicle}
It seems likely that Boleslaus was, if not the leader, at least instrumental
\end{document}
一方、私は使用空白行。
No sources from the time explicitly indicate his existence
\epigraph{"[Boleslaus] meanwhile, because of his severity}{Wielkopolska Chronicle}
It seems likely that Boleslaus was, if not the leader, at least instrumental
そのままにしましたが、二重引用符の場合はこの文字は"
使用しないでください。