请,
我想知道如何才能做到这一点:
例子:
文本文本文本文本文本文本文本文本文本文本
x^2 + x = 1 (1.1)
文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本
x*(x+1) = 1 (1.2)
我需要知道如何在子方程式之间插入文本。
谢谢你!
答案1
好吧,在两个子方程之间插入文本不需要任何特殊的东西:
% My standard header for TeX.SX answers:
\documentclass[a4paper]{article} % To avoid confusion, let us explicitly
% declare the paper format.
\usepackage[T1]{fontenc} % Not always necessary, but recommended.
% End of standard header. What follows pertains to the problem at hand.
\usepackage{amsmath}
\begin{document}
First a ``normal'' equation:
\begin{equation}
(a+b)(a-b) = a^{2}-b^{2}
\end{equation}
\begin{subequations}
Now two related equations: the first one is
\begin{equation}
(a+b)^{2} = a^{2}+2ab+b^{2}
\end{equation}
And here is the second one:
\begin{equation}
(a-b)^{2} = a^{2}-2ab+b^{2}
\end{equation}
\end{subequations}
\end{document}
你确定这确实是你的问题吗?