答案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}