将题词放在同一页面的同一位置

将题词放在同一页面的同一位置

我用它epigraph来在课程文档中提供章节前标题引文report——这实际上导致了问题,因为这是我第一次尝试使用该report课程。问题在于,由于题词的长度(行数)可变,它们都位于页面上的随机位置。

诚然,在看过这个主题这是关于报告的一般题词,似乎有比epigraph我为此目的使用的环境更好的选择。如果下面的内容太复杂而不可行,那么解决方案也可以使用不同的方法,epigraph只要它提供相同的功能即可。

我一直在尝试使用\epigraphhead,但这似乎效果非常不稳定。无论如何,引号的位置都无法通过这种方式保持可预测性。

因此,对于下面的例子:

\documentclass[12pt,oneside]{report}

\usepackage[a4paper,headheight=72pt,headsep=16pt,top=2.5cm,bottom=2.5cm,left=4.0cm,right=2.5cm]{geometry}

\usepackage{epigraph}

\setlength{\epigraphwidth}{8.0cm}

\begin{document}

\dropchapter{4cm}

\clearpage\newpage
\chapter{First}
\epigraphhead[48]{\epigraph{\raggedleft{A slight breeze at this moment sprang up,\\and the great sails began to move,\\seeing which Don Quixote exclaimed,\\``Though ye flourish more arms than\\the giant Briareus, ye have to reckon with me."}}{\emph{`The Ingenious Nobleman Mister Quixote\\of La Mancha'}, Chapter~\RNum{8}\\Miguel de Cervantes Saavedra}}

\clearpage\newpage
\chapter{Second}
\epigraphhead[48]{\epigraph{\raggedleft{It is pleasant, when the sea is high and the winds are dashing the waves about, to watch from the shores the struggles of another.}}{Titus Lucretius Carus}}

\end{document}

现在,我的目标是:

  • 将题词放置在页面上,使得分割线始终位于同一位置;
  • 将题词放置在第一行始终位于同一位置的位置;或
  • 放置题词时,确保最后一行始终位于同一位置。

我更喜欢第一个,但我甚至不知道如何尝试。我以为第二个行为会被授予\epigraphhead,但它做了一些非常奇怪的事情。

对于最后一个,我想可以将其直接链接到章节标题并从那里开始,但我还是不知道如何开始。

答案1

嗯,您可以使用页面节点....

% !TeX program = lualatex
\documentclass[12pt,oneside]{report}

\usepackage[a4paper,headheight=72pt,headsep=16pt,top=2.5cm,bottom=2.5cm,left=4.0cm,right=2.5cm]{geometry}

\usepackage{epigraph}
\usepackage{tikzpagenodes}

\newcommand{\epgr}[3]{
\begin{tikzpicture}[remember picture,overlay,shift={(current page.north east)}]
\node[align=left,anchor=north east]{\parbox{8cm}{\fontsize{10}{12}\selectfont%
        \raggedleft#1\\\rule{7cm}{0.1mm}\\\emph{#2}#3}};
%   }}};
\end{tikzpicture}}
\begin{document}

\dropchapter{4cm}

\clearpage\newpage
\chapter{First}
\epgr{A slight breeze at this moment sprang up,\\and the great sails began to move,\\seeing which Don Quixote exclaimed,\\``Though ye flourish more arms than\\the giant Briareus, ye have to reckon with me.''}{`The Ingenious Nobleman Mister Quixote\\of La Mancha', }{Chapter 8\\Miguel de Cervantes Saavedra}
%\epigraphhead[48]{%
%   \epigraph{\raggedleft{A slight breeze at this moment sprang up,\\and the great sails began to move,\\seeing which Don Quixote exclaimed,\\``Though ye flourish more arms than\\the giant Briareus, ye have to reckon with me."}}{\emph{`The Ingenious Nobleman Mister Quixote\\of La Mancha'}, 
%       Chapter 8\\Miguel de Cervantes Saavedra}}
%   }}


\clearpage
\newpage

\chapter{Second}
\epgr{It is pleasant, when the sea is high and the winds are dashing the waves about, to watch from the shores the struggles of another.}{}{Titus Lucretius Carus}

\end{document}

相关内容