我想在 beamer 环境中的演示文稿中用多行写一个方程式。
谢谢
\begin{equation}
\begin{aligned}
\begin{split}
&M_{RR| _{G}}.\dot{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}+{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge (M_{RR| _{G}}.{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}})...\\
&...+M_{TT}.V_{G}\wedge\{\dot{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{1}+\dot{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge V_{G}\}...\\
&...+M_{TT}.V_{G}\wedge\{{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge({\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge V_{G})+{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{2}\wedge {\fontfamily{lmr}\fontshape{ui}\selectfont v}_{1}\}=\tau_2
\end{split}
\end{aligned}
\phantom{\hspace{2.0cm}}
\end{equation}
答案1
一个最小的工作示例以 开头\documentclass
并以此 结尾\end{document}
,如以下代码片段。
\documentclass{beamer}
\usepackage{amsmath}
\begin{document}
\begin{frame}[t]
\frametitle{A long equation}
\begin{align*}
M_{RR| _{G}}&\cdot\dot{\fontfamily{lmr}\fontshape{ui}\selectfont
v}_{{2}}+{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge (M_{RR|
_{G}}\cdot{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}})\cdots\\
&\cdots+M_{TT}\cdot V_{G}\wedge\{\dot{\fontfamily{lmr}\fontshape{ui}\selectfont
v}_{1}+\dot{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge
V_{G}\}\cdots\\
&\cdots+M_{TT}\cdot V_{G}\wedge\{{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge({\fontfamily{lmr}\fontshape{ui}\selectfont v}_{{2}}\wedge V_{G})+{\fontfamily{lmr}\fontshape{ui}\selectfont v}_{2}\wedge {\fontfamily{lmr}\fontshape{ui}\selectfont v}_{1}\}=\tau_2
\end{align*}
\end{frame}
\end{document}
评论:
您不应该使用
...
,而应该使用\dots
或\cdots
。同样,
\cdot
看起来比.
方程式更好。您可以简单地使用
align*
IMHO,并且在演示文稿中我会避免使用方程式编号。
答案2
- 首先,我要消除方程中的所有杂乱
- 对于多线方程,包
amsmath
定义了multline
环境,但是方程编号与最后一条方程行对齐 对于您来说,我建议使用
multlined
提供的环境mathtools
并将其封装在equation
:\documentclass{beamer} \usepackage{mathtools} \begin{document} \begin{frame} \frametitle{for long equation is used \texttt{multlined} environment} \begin{equation} \begin{multlined}[0.9\linewidth] M_{RR|_{G}}\dot{v}_{2} + v_{2}\wedge (M_{RR|_{G} v_{2}}) \dotsm \\ \dotsm +M_{TT}V_{G}\wedge\{\dot{v}_{1}+\dot{v}_{2}\wedge V_{G}\} \dotsm \\ \dotsm M_{TT}V_{G}\wedge\{v_{2}\wedge(v_{2}\wedge V_{G}) + v_{2}\wedge v_{1}\} = \tau_2 \end{multlined} \end{equation} \end{frame} \end{document}