我喜欢用书法字体写完整的文字。有什么提示吗?Ulises
答案1
欢迎来到 TeX.SE。在此链接中https://www.tug.org/FontCatalogue/calligraphicalfonts.html有很多书法字体(带 o 但没有数学支持)。这和请求类似吗?例如,我使用过Calligra Fonts
:https://www.tug.org/FontCatalogue/calligra/这里我添加了一个快照。
\documentclass[a4paper,12pt]{article}
\usepackage{calligra}
\usepackage[T1]{fontenc}
\usepackage{blindtext}
\DeclareRobustCommand{\normalfont}{\calligra}
\AtBeginDocument{\normalfont}
\begin{document}
\blindmathpaper
\end{document}
答案2
有很多系统字体具有书法品质。如果您希望使用系统字体(而不是 TeX 发行版提供的字体),则需要加载软件包,fontspec
这又要求使用 XeLaTeX 或 LuaLaTeX 编译文档。
如果你碰巧使用的是 MacOS 系统,你可能想要扎普菲诺试试吧。(它是一种商业字体,但它预装在 MacOS 系统上——也许其他系统也预装了,但我不知道这是事实。)
\documentclass{article}
\usepackage{geometry} % optional
\usepackage{fontspec}
\setmainfont{Zapfino}
\usepackage{lipsum} % for filler text
\begin{document}
\lipsum[1]
\end{document}
答案3
\documentclass[a4paper,12pt]{article}
\usepackage{calligra}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{blindtext}
\DeclareRobustCommand{\normalfont}{\calligra}
\begin{document}
\begin{calligra}
\section*{\centering \Huge This is the Calligraphy front}
\end{calligra}
\blindtext
\end{document}