我希望度数符号周围的框与 上的指数周围的框类似x
。我以为\mbox{}
可以做到这一点,但在本例中似乎行不通。
代码:
\documentclass{article}
\usepackage{siunitx}
\let\OldSIUnitSymbolDegree\SIUnitSymbolDegree
\renewcommand{\SIUnitSymbolDegree}{\fboxsep=0pt\fbox{\mbox{\ensuremath{\OldSIUnitSymbolDegree}}}}
\begin{document}
\ang{60} \SI{60}{\degree}
$x^{\fboxsep=0pt\fbox{$\scriptstyle 2$}}$ % <-- want a tight box like this
\end{document}
答案1
你需要把盒子里面上标并允许使用字距,例如
\documentclass{article}
\usepackage{siunitx}
\renewcommand\SIUnitSymbolDegree
{\ensuremath{^{\fboxsep=0pt\fbox{\ensuremath{\kern-\scriptspace\scriptstyle\circ\kern-2\scriptspace}}}}}
\begin{document}
\ang{60} \SI{60}{\degree}
\end{document}