Zallman 首字下沉

Zallman 首字下沉

我想用这个(https://physica.dev/posts/2021/06/fancy-drop-caps-Latex.html),但我不明白在代码中要做什么才能使用它(在文本本身中)。有人能帮帮我吗?

答案1

建议的代码太复杂了,没必要。你不需要文件.sty

\documentclass{article}
\usepackage{lettrine}
\usepackage[dvipsnames]{xcolor}

\usepackage{lipsum} % for mock text

\input{Zallman.fd}

\renewcommand{\LettrineFontHook}{\color{Maroon}\usefont{U}{Zallman}{xl}{n}}

\begin{document}

\lettrine{L}{iquid} scintillation \lipsum[1]

\end{document}

在此处输入图片描述

答案2

您不需要软件包,但如果您需要,链接的代码只是 TeX 发行版提供的软件包的副本。因此您只需说\usepackage{Zallman}然后\renewcommand{\LettrineFontHook}{\color{Maroon}\Zallmanfamily}

\documentclass{article}
\usepackage{lettrine}
\usepackage{Zallman}
\usepackage[dvipsnames]{xcolor}

\usepackage{kantlipsum} % for philosophical mock text

\renewcommand{\LettrineFontHook}{\color{Maroon}\Zallmanfamily}

\begin{document}

\lettrine{K}{ant} \kant[1]

\end{document}

带有 Zallman 姓名首字母的帽子

我被要求提供包裹,但cfr-initials我忘记是谁要求的。

相关内容