最好通过示例来解释这一点。假设我有以下内容:
\[
\begin{align*}
C_3 \rightarrow 6 automorphisms\\
C_4 \rightarrow 8 automorphisms\\
C_5 \rightarrow 10 automorphisms
\end{align*}
\]
我怎样才能让“自同构”这个词显示得好像它没有被括号括起来一样?
答案1
也许这就是你想要的?使用\text
以下命令amsmath
:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
C_3 &\rightarrow \text{$6$ automorphisms}\\
C_4 &\rightarrow \text{$8$ automorphisms}\\
C_5 &\rightarrow \text{$10$ automorphisms}
\end{align*}
\end{document}