答案1
我的建议是使用两种不同的字体系列(这里我使用了 compilepdfLaTeX
而不是XeLaTeX
或LuaLaTeX
)。在第一个版本中,我使用了calligra
包,您可以获得经典的 Computer Modern 称为 CM(第一个字体默认系列)和calligra
书法字体。您将获得此结果。
\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{calligra}
\begin{document}
Instead of my parents, I will have
\textcalligra{To my parents}
\end{document}
第二个选项,也许你会更喜欢下面的这个,赞比亚武装警察部队驻地你的字体系列名为pzc
。
在这里您将得到这个结果。
\documentclass[a4paper,12pt]{article}
\usepackage[english]{babel}
\newcommand*\zapchan{\fontfamily{pzc}\selectfont}
\usepackage[T1]{fontenc}
\begin{document}
Instead of my parents, I will have
\zapchan{To my parents}
\end{document}
我还在网站 LaTeX 字体目录中添加了书法字体的链接: https://www.tug.org/FontCatalogue/calligraphicalfonts.html
答案2
在现代工具链中
本示例使用 TeX Gyre Chorus,它是 Zapf Chancery 的免费克隆版。您可以替换您选择的任何字体。
\documentclass{scrbook}
\usepackage[english]{babel}
\usepackage{fontspec}
\defaultfontfeatures{Scale = MatchLowercase}
\newfontface\dedicationfont{TeXGyreChorus-MediumItalic}[Ligatures=Common]
\begin{document}
{\dedicationfont To my Parents}
\end{document}
使用旧字体
我的建议是,尽可能使用现代字体,必要时使用 8 位传统字体。如果必须使用,TeX Gyre Chorus 就是您的最佳选择qzc
。您可以在以下网址查找其他字体LaTeX 字体目录。
这是与 PDFLaTeX 兼容的版本:
\documentclass{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} % The default since 2018
\usepackage[english]{babel}
\newcommand\dedicationfont{\fontfamily{qzc}\itshape\mdseries\selectfont}
\begin{document}
{\dedicationfont To my Parents}
\end{document}
为了能够写出类似的东西\textdedication{To my parents}
,添加到序言中
\DeclareTextFontCommand{\textdedication}{\dedicationfont}
如果您只是尝试使用\newcommand*
,格式将会渗透并影响下面的文本。
答案3
希望这可以帮助你:
\documentclass[a4paper,fontsize=12.5pt,DIV15,BCOR20mm,oneside]{scrbook}
\usepackage[english]{babel}
\usepackage{eufrak}
\begin{document}
$\mathfrak{To\ my\ Parents}$
\end{document}
输出
另一种方法
\documentclass[a4paper,fontsize=12.5pt,DIV15,BCOR20mm,oneside]{scrbook}
\usepackage[english]{babel}
\usepackage{yfonts}
\begin{document}
\textfrak{To\ my\ Parents}
\end{document}
输出