关于首字下沉的大小和定位

关于首字下沉的大小和定位

我想利用首字下沉,使它们显示如下:

在此处输入图片描述

不幸的是,代码

\documentclass[12pt]{article}
\usepackage{color}
\definecolor{Red}{RGB}{157,16, 45}
\usepackage{lettrine}
\input GoudyIn.fd
\newcommand*\initfamily{\usefont{U}{GoudyIn}{xl}{n}}
\begin{document}
\large
\lettrine[lines=3]{\color{Red}{\initfamily{A}}}{\color{Red}s} the inclinations and judgments of writers have been different, so have they disposed themselves to treat of different matters.---Some, charmed with the beauty of eloquence,
\end{document}

输出如下所示:

在此处输入图片描述

我希望能够:

  1. 增加首字下沉的尺寸,使其类似于第一个输出的尺寸;
  2. 并让句子的其余部分从首字下沉的顶部开始,如第一个输出中再次所示(似乎lines=3指定了,并不意味着输出会相同)

有人能告诉我怎么做吗?谢谢。

答案1

我尝试了你的代码(如下所示)

% lettrineprob.tex  SE 567648
\documentclass[12pt]{article}
\usepackage{color}
\definecolor{Red}{RGB}{157,16, 45}
\usepackage{lettrine}
\input GoudyIn.fd
\newcommand*\initfamily{\usefont{U}{GoudyIn}{xl}{n}}
\begin{document}
\large
\lettrine[lines=3]{\color{Red}{\initfamily{A}}}{\color{Red}s} the inclinations
 and judgments of writers have been different, so have they disposed 
 themselves to treat of different matters.---Some, charmed with the beauty of
 eloquence,
\end{document}

并得到了这个结果,这似乎就是您想要的。

在此处输入图片描述

相关内容