我在 Chromebook 上使用 ShareLaTeX。
我想写
平方米
在 LaTeX ( m^2
) 中,但源代码中并没有出现帽子,而是直接将所有内容变成上标。我该如何阻止这种情况?
答案1
答案2
最初的问题不清楚需要什么。看起来需要一个帽子符号,但结果发现需要一个上标(来自 moewe 的翻译)。
一个可能的起点,具有多种(非详尽的)可能性(基于假设的“帽子”要求):
\documentclass{article}
\begin{document}
$\hat{m^2}$
$\hat{m}^2$
$\widehat{m^2}$
$\widehat{m}^2$
\end{document}
必填上标(非详尽):
\documentclass{article}
\begin{document}
$m^2$
m\textsuperscript{2}
\end{document}