documentclass 文章中的精彩引语

documentclass 文章中的精彩引语

可能重复:
章节开头的“励志”引言

我正在使用\documentclass[a4paper,12pt]{article}。如何使用\renewenvironment{quote}或拥有我自己的来制作这句美丽的引文\newenvironment{myQuote}

引用

答案1

我采用了 Gonzalo Medina 的第二个解决方案回答章节开头的“励志”引言并更改了以下内容:

  • 不使用memoir类,而是epigraph包(来自memoirs 作者)已加载;

  • \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}

在此处输入图片描述

相关内容