答案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}