\boldsymbol 无法与 fontsetup 包一起使用

\boldsymbol 无法与 fontsetup 包一起使用

我该如何\boldsymbol使用fontsetup包裹?


LuaLaTeX 没有\usepackage{fontsetup}但有\usepackage{amsmath}

在此处输入图片描述

LuaLaTeX 具有\usepackage{fontsetup}

在此处输入图片描述


我正在使用以下代码:

\documentclass{article}
\usepackage{fontsetup}

\begin{document}
    $x$ and $\boldsymbol{x}$
\end{document}

我尝试过amsmath完全不加载以及之前和之后的加载fontsetup,但没有任何效果。


LaTeX Font Warning: Font shape `TU/NewCMMath-Book.otf(1)/b/n' undefined
(Font)              using `TU/NewCMMath-Book.otf(1)/m/n' instead on input line 5.


LaTeX Font Warning: Font shape `TU/NewCMMath-Book.otf(2)/b/n' undefined
(Font)              using `TU/NewCMMath-Book.otf(2)/m/n' instead on input line 5.

LaTeX Font Info:    Font shape `TU/NewCMMath-Book.otf(2)/b/n' will be
(Font)              scaled to size 7.00075pt on input line 5.
LaTeX Font Info:    Font shape `TU/NewCMMath-Book.otf(2)/b/n' will be
(Font)              scaled to size 5.00053pt on input line 5.

LaTeX Font Warning: Font shape `TU/NewCMMath-Book.otf(3)/b/n' undefined
(Font)              using `TU/NewCMMath-Book.otf(3)/m/n' instead on input line 5.

LaTeX Font Info:    Font shape `TU/NewCMMath-Book.otf(3)/b/n' will be
(Font)              scaled to size 6.99925pt on input line 5.
LaTeX Font Info:    Font shape `TU/NewCMMath-Book.otf(3)/b/n' will be
(Font)              scaled to size 4.99947pt on input line 5.
[1

{/usr/local/texlive/2022/texmf-var/fonts/map/pdftex/updmap/pdftex.map}] (./output.aux)

LaTeX Font Warning: Some font shapes were not available, defaults substituted.

答案1

您可以使用该\symbfit命令获取 Unicode 块中定义的粗体斜体数学。

\documentclass{article}

\usepackage{fontsetup}

\begin{document}
    \(x\) and \(\symbfit{x}\)
\end{document}

fontsetup_bold_italic_x

NewCM-Book,默认设置的字体fontsetup包含所有希腊文和拉丁文大写和小写衬线粗体、斜体和粗斜体字符。您可以查看这个文件所有 Unicode 数学可用符号。

version=bold据我所知,新计算机现代数学不支持数学。但提供了您可能需要的许多字符。请参阅这个答案查看哪些字体有boldmath覆盖。

相关内容