考虑一下代码
\documentclass{book}
\usepackage{lettrine}
\usepackage{xcolor}
\setcounter{DefaultLines}{3}
\setlength{\DefaultFindent}{0em}
\setlength{\DefaultNindent}{.17em}
\renewcommand{\LettrineFontHook}{\usefont{U}{yinit}{m}{n}}
\renewcommand{\DefaultLoversize}{-0.67}
\begin{document}
\thispagestyle{empty}
\begin{LARGE}
\begin{center}
\begin{minipage}{5.75in}
\lettrine{W}{e cannot} \textbf{\textit{solve our problems with the same thinking we used when we created them.}}
\end{minipage}
\vskip 25pt
\begin{minipage}{5.75in}
\lettrine{\color{red}{W}}{\color{red}{e cannot}} \textbf{\textit{solve our problems with the same thinking we used when we created them.}}
\end{minipage}
\end{center}
\end{LARGE}
\end{document}
产生输出
看看这两个引文中的第一个,我想将E CANNOT
其变为红色并加粗。从代码中可以看出,我强制使用了我想要的红色;但是,当我尝试使用 将文本变为粗体时\textbf
,我失去了小写字母。
问题:由于我处理的文档经常包含许多首字下沉,因此我希望能够提前E CANNOT
为文档中的所有首字下沉指定首字下沉及其相关文本(在本例中为“”)的颜色,而且我还希望提前指定 LaTeX 将所有首字下沉的相关文本设为粗体。我该如何实现这一点?
谢谢。