Libertinus Math:(太)小的数学符号?

Libertinus Math:(太)小的数学符号?

我正在使用 LuaLaTeX 和 unicode-math 包,并以 Libertinus Math 作为主要字体(它与 Minion Pro 非常匹配)。

这可能是有意为之,但我觉得有些符号,例如张量积,非常小,可能不是完全居中。

有没有什么办法可以让它们变大一些?或者再高一点?

梅威瑟:

\documentclass{article}
\usepackage{unicode-math}
\setmathfont{Libertinus Math}
\begin{document}
$A\otimes B$ and $A\oplus B$.
\end{document}

在此处输入图片描述

答案1

您使用不同的 加载这两个符号Scale

\documentclass{article}
\usepackage{unicode-math}
\setmathfont{Libertinus Math}
\begin{document}

$A\otimes B$ and $A\oplus B$.

\setmathfont[range={`⊕,`⊗},Scale=1.2]{Libertinus Math}
%         or range={\oplus,\otimes}
%         or range={"2295,"2297}
$A\otimes B$ and $A\oplus B$.

\end{document}

在此处输入图片描述

答案2

我同意这些符号很丑陋。

您可以借用其他数学字体的字形。这是 XITS Math(但略微缩小了):

\documentclass{article}

\usepackage{unicode-math}
\setmainfont{Libertinus Serif}
\setmathfont{Libertinus Math}
\setmathfont{XITS Math}[
  range={\oplus,\otimes},
  Scale=0.8,
]
\setmathfont{Libertinus Math}[range=] % restore the proper font dimens

\begin{document}

$A\otimes B$ and $A\oplus B$.

\end{document}

习惯上将符号放置在基线稍下方(与标准 Computer Modern 字体相比),以便它们的几何中心位于公式轴上。

在此处输入图片描述

答案3

您还可以尝试使用和创建符号tikz来添加您的序言。

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\newcommand{\Bigotimes}[1]{
\begin{tikzpicture}[#1]
\draw [line width=0.1pt] (0.,0.) circle (1.cm);
\draw [line width=0.1pt] (0.,1.)-- (0.,-1.);
\draw [line width=0.1pt] (-1.,0.)-- (1.,0.);
\end{tikzpicture}
}
\begin{document}
We have $A\Bigotimes{scale=0.2}B$ where you can decrease or increase the symbol with the option scale=0.2.
\end{document}

相关内容