可能重复:
章节开头的“励志”引言
我正在使用\documentclass[a4paper,12pt]{article}
。如何使用\renewenvironment{quote}
或拥有我自己的来制作这句美丽的引文\newenvironment{myQuote}
?
答案1
我采用了 Gonzalo Medina 的第二个解决方案回答到章节开头的“励志”引言并更改了以下内容:
不使用
memoir
类,而是epigraph
包(来自memoir
s 作者)已加载;\epigraphfontsize
被替换为\epigraphsize
;这
etoolbox
包用于修补内部\@epitext
命令,以使其\itshape
正常工作。
\documentclass{article}
\usepackage{epigraph}
% \epigraphsize{\small}% Default
\setlength\epigraphwidth{8cm}
\setlength\epigraphrule{0pt}
\usepackage{etoolbox}
\makeatletter
\patchcmd{\epigraph}{\@epitext{#1}}{\itshape\@epitext{#1}}{}{}
\makeatother
\begin{document}
\section{Graph Theory}
\epigraph{``Begin at the beginning," the King said gravely, ``and go on till you come to the end: then stop."}{--- \textup{Lewis Carroll}, Alice in Wonderland}
\end{document}