使用 Lucida Math Std

使用 Lucida Math Std

我正在尝试将 Adob​​e 的 Lucida 字体与相应的 Lucida Math 字体(包含在 Adob​​e Font Folio 中)一起使用。使用 Lucida 作为主字体是可行的,但是当我尝试使用数学字体时,我收到以下错误:

570:LaTeX 错误:命令 \dddot 已定义

它还警告我“Lucida Math Std 不包含脚本‘Math’。而是使用‘Latin’脚本。

我正在使用 XeLaTeX。这是我的代码:

\documentclass{scrartcl}
\usepackage{unicode-math}
\setmainfont{Lucida Std}
\setmathfont{Lucida Math Std}
\usepackage{amsmath}
\begin{document}
This is a formula
\begin{align*}
    a+b=c
\end{align*}
\end{document}

答案1

我没有您提供的 Lucida 版本,但我的 Lucida 可以工作。它是来自 tug.org 的版本:

\documentclass{scrartcl}
\usepackage{amsmath}
\usepackage{unicode-math}
\setmainfont{Lucida Bright}
\setmathfont{Lucida Bright Math OT}
\begin{document}
This is a formula
\begin{align*}
    a+b=c
\end{align*}
\end{document}

在此处输入图片描述

相关内容