如何使引号中的开始和结束引号看起来更大?

如何使引号中的开始和结束引号看起来更大?

我目前正在写一篇包含引文的论文。但我对得到的结果并不满意;我想让引文看起来更有吸引力。要做到这一点,想法是让它们看起来比文本更大,然后变得丰富多彩。我尝试了命令\big\Big\textcolor{}{}它们不起作用。目前,引文看起来像这样...... 在此处输入图片描述

对应的代码如下……

``\textsf{...there was little I could teach \textit{Fermi}, and often I asked him to teach me something instead.}''\\ \par
\hspace{5.2cm}\boldsymbol{-} \textit{Luigi Puccianti}\\

期待听到您的建议。

答案1

我通常用这个epigraph包来实现这一点。

\documentclass{article}
\usepackage{epigraph}
\setlength{\epigraphrule}{0pt}
\setlength{\epigraphwidth}{8cm}

\begin{document}

\begin{epigraphs}
\qitem{\large ...there was little I could teach \textit{Fermi}, and often I asked him to teach me something instead.}
{--- \textit{Luigi Puccianti}}
\end{epigraphs}
    
\end{document}

结果

默认情况下,文本会刷新到右侧,但您可以用\epigraphflush它将其移动到其他位置(请参阅文档的前几页)。

在宏内部,\qitem您可以使用所有常规文本命令来增强文本的外观。

相关内容