我想使用resizebox
包含方程式环境等内容的 around 。但是,这会产生“缺少 $ 插入”错误。以下是 MWE:
\documentclass{scrartcl}
\usepackage{amssymb}
\usepackage{mathtools}
\begin{document}
\resizebox{!}{.5cm}{%
\begin{equation*}
H^1(S^1)=\mathbb{Z}x\hspace{0.3cm},\hspace{0.25cm} H^3(S^3)=\mathbb{Z}y
\end{equation*}%
}
\end{document}
正如我所说,这会产生以下错误:
! Missing $ inserted.
<inserted text>
$
l.10 }
有谁知道这里出了什么问题?
答案1
按照 frabjous 的建议,您可以使用以下代码毫无错误地居中调整公式大小:
\documentclass{scrartcl}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{showframe} % comment this line after testing rhe code
\begin{document}
\noindent Some text:\par
\vspace{.3cm}
\begin{center}
\resizebox{!}{.5cm}{%
\(
H^1(S^1)=\mathbb{Z}x\hspace{0.3cm},\hspace{0.25cm} H^3(S^3)=\mathbb{Z}y
\)%
}\par
\end{center}
\vspace{.3cm}
Some text.
\end{document}
输出: