用于加粗数学符号的 LuaLaTeX 软件包

用于加粗数学符号的 LuaLaTeX 软件包

我正在写一份文件,这是我的序言:

\documentclass[11pt]{article}

% Packages dealing with fonts
\usepackage{mathtools}
\usepackage{amssymb}
\usepackage{unicode-math}
\usepackage{fontspec}
\usepackage{microtype}

% Packages dealing with page layout, items and placements
\usepackage[a4paper, margin=2.5cm]{geometry}
\usepackage{pdflscape}
\usepackage{afterpage}
\usepackage[section]{placeins}
\usepackage{setspace}
\usepackage[inline]{enumitem}
\usepackage{float}
\usepackage{listings}
\usepackage{algorithm}
\usepackage{algpseudocode}
\usepackage[pagewise]{lineno}
\usepackage[hidelinks]{hyperref}
\usepackage[style=authoryear-comp, dashed=false sorting=nyt, giveninits=true, mincitenames=1, maxcitenames=2, maxbibnames=10, uniquelist=true, backend=biber]{biblatex}

% Packages dealing with tables
\usepackage[table, x11names]{xcolor}
\usepackage{booktabs}
\usepackage{siunitx}
\usepackage{array}
\usepackage{multirow}
\usepackage{hhline}

% Packages dealing with figures
\usepackage[justification=centering]{caption}
\usepackage{subcaption}
\usepackage{pgf}
\usepackage{graphicx}

我需要以下数学函数:\mathscr、,\mathcal以及\boldsymbol其他标准数学符号和重音符号(如\hat\widetilde等)。但是,使用上面的序言,我无法获得粗体符号。我遗漏了什么?

答案1

您可以通过 获得所有这些unicode-math,但要使用主数学字体\symbf,请使用\symcal等。要使用amsmath诸如之前\eqref加载 之类的构造。amsmathunicode-math

相关内容