有什么办法可以Mathtype's Euclid
在打字时使用字体吗文本在 LaTeX 中?仅适用于文本,不适用于数学模式。有些人曾经认为它与Computer Modern
LaTeX 中的默认字体相同,但我强烈反对这种说法,我仍然迫切希望在 LaTeX 中使用这种字体。如果可能的话,我该怎么办?
答案1
使用 LuaLaTeX 或 XeLaTeX,可以使用任何系统字体。我没有安装 Euclid,所以我使用了通用替换。您可以Times New Roman
用任何系统安装的字体的名称替换。
\documentclass{article}
\usepackage{fontspec} % allows loading of system fonts
\setmainfont{Times New Roman} % replace with your desired font
\begin{document}
Hello world! And math ($a^2 + b^2 = c^2$) is still in Computer Modern:
\[ \sin^2 u + \cos^2 u = 1 \]
\end{document}