方程式間のvdotを取得する方法

方程式間のvdotを取得する方法

私は、vdot を太くするだけでなく、方程式の間に vdot を配置する方法を知りたいと思っていました。

私は vdots を使用してこの導出の一部をスキップしようとしています。これがこれまでのところ私が持っているものです:

\documentclass{beamer}

\mode<presentation>
{
  \usetheme{Boadilla}     
  \usecolortheme{wolverine}
  \usefonttheme{structurebold}  
  \setbeamertemplate{navigation symbols}{}
  \setbeamertemplate{caption}[numbered]
\setbeamertemplate{itemize items}[ball]
} 

\usepackage{array,amsmath,booktabs}
\usepackage{amsmath}
\usepackage[version=4]{mhchem}
\usepackage{mathtools}



\begin{document}

\begin{frame}
\begin{align*}
    &\begin{aligned}
    \mathllap{ L(c; \mathbf{x})} &= \pi(\mathbf{x}|c) 
    \end{aligned}\\
    &\begin{aligned}
     &= \{\prod\limits_{i=1}^n h_{v_i}(x(t_{i-1}),c_{v_i})exp\{-h_0(x(t_{i-1}),c)[t_i-t_{i-1}]\} \\
        &\qquad \times exp\{-h_0(x(t_n),c)[T-t_n]\} \\
    \end{aligned}
    \vdots \\
    &\begin{aligned}
    &= \{\prod\limits_{i=1}^n h_{v_i}(x(t_{i-1}),c_{v_i})\}exp\{-\sum\limits_{i=0}^n h_0(x(t_i),c)[t_{i+1}-t_i]\}
    \end{aligned}
\end{align*}
\end{frame}

\end{document}

答え1

コメントするには長すぎます。これらの環境で何をしようとしているのかよくわかりませんaligned。これがあなたが探しているものですか?また、exp'sを修正し、いくつかのスケールを変更しました。\{...\}

\documentclass{beamer}

\mode<presentation>
{
  \usetheme{Boadilla}     
  \usecolortheme{wolverine}
  \usefonttheme{structurebold}  
  \setbeamertemplate{navigation symbols}{}
  \setbeamertemplate{caption}[numbered]
\setbeamertemplate{itemize items}[ball]
} 

\usepackage{array,amsmath,booktabs}
\usepackage{amsmath}
\usepackage[version=4]{mhchem}
\usepackage{mathtools}



\begin{document}

\begin{frame}
  \begin{align*}
    L(c; \mathbf{x}) &= \pi(\mathbf{x}|c)
    \\
    &= \Bigl\{\prod\limits_{i=1}^n
    h_{v_i}(x(t_{i-1}),c_{v_i})\exp\{-h_0(x(t_{i-1}),c)[t_i-t_{i-1}]\}
    \\
    &\qquad \times \exp\{-h_0(x(t_n),c)[T-t_n]\}
    \\
    \shortvdotswithin{=} % no \\ after this one
    &= \Bigl\{\prod\limits_{i=1}^n
    h_{v_i}(x(t_{i-1}),c_{v_i})\Bigr\}\exp\Bigl\{-\sum\limits_{i=0}^n
    h_0(x(t_i),c)[t_{i+1}-t_i]\Bigr\}
  \end{align*}
\end{frame}

 \end{document}

ここに画像の説明を入力してください

関連情報