为题词设置右边距

为题词设置右边距

在此处输入图片描述

\documentclass{report}
\usepackage{epigraph}
\setlength{\epigraphrule}{0pt}
\setlength\epigraphwidth{.65\textwidth}
\begin{document}
\epigraph{\itshape Si l'univers était vide, on s'éviterait bien des soucis}{(Lao Tseu)}
\section{Introduction}
\end{document}

我如何将作者对齐到与引文相同的行结束。

这将是最终的结果 在此处输入图片描述

答案1

\documentclass{report}
\usepackage{epigraph}
\setlength{\epigraphrule}{0pt}
\setlength\epigraphwidth{.65\textwidth}
\renewcommand{\textflush}{flushright}
\begin{document}
\epigraph{\itshape Si l'univers était vide, on s'éviterait bien des soucis}{(Lao Tseu)}
\section{Introduction}
\end{document}

在此处输入图片描述

或者

\documentclass{report}
\usepackage{epigraph}
\setlength{\epigraphrule}{0pt}
\setlength\epigraphwidth{.65\textwidth}
\renewcommand{\textflush}{flushright}
\renewcommand{\epigraphflush}{flushleft}
\begin{document}
\epigraph{\itshape Si l'univers était vide, on s'éviterait bien des soucis}{(Lao Tseu)}
\section{Introduction}
\end{document}

在此处输入图片描述

答案2

这是你想要的吗?

在此处输入图片描述

如果是,则不需要该epigraph包。使用\epigraph{}{}以下命令。

\documentclass{report}
\usepackage{showframe} % just to show margin frame

\newcommand{\epigraph}[2]{%
\par\medskip%
\hfill%
\begin{tabular}{@{}r@{\hspace{2in}}}
\itshape #1\\
(#2)
\end{tabular}
\par\medskip%
}

\begin{document}
\epigraph{Si l'univers était vide, on s'éviterait bien des soucis}{Lao Tseu}

\section{title}
\end{document}

相关内容