有没有办法修复 Tikz 中未对齐的加号?

有没有办法修复 Tikz 中未对齐的加号?

我使用 Tikz 将 MATLAB 图转换为 Latex,但我在这些图中对数字使用了指数符号。然而,输出结果中的“加号”有点不对。

偏移加号

有没有办法来解决这个问题 ?

\documentclass{article}

\usepackage{tikz}

\begin{document}
  \begin{tikzpicture}
  \node{6.2e+10};
  \end{tikzpicture}
\end{document}

答案1

你可以尝试一下这个...

\documentclass{article}
\usepackage{siunitx}
\usepackage{tikz}
\sisetup{
  output-exponent-marker = \text{e},
  exponent-product={},
  retain-explicit-plus
}

\begin{document}
  \begin{tikzpicture}
  \node{\num{6.2e+10}};
  \end{tikzpicture}

\end{document}

相关内容