如何在投影仪演示文稿中写出长方程式

如何在投影仪演示文稿中写出长方程式

下面是我的 MWE,我喜欢在投影仪演示中对齐长方程,但方程的后半部分未显示在幻灯片中。如能提供任何帮助,我将不胜感激。

\documentclass{beamer}
\mode<presentation>
\usepackage{beamerthemesplit,graphics,graphicx,amssymb,amsmath,pgf,comment,hyperref}
\usepackage{breqn}
\usepackage[xcolor=pst]{pstricks}
\usepackage{pgfshade}
\usepackage[round]{natbib}
\usetheme{Warsaw}
\usefonttheme[onlylarge]{structuresmallcapsserif}
\setbeamercovered{highly dynamic}
\setbeamertemplate{background canvas}[vertical shading][bottom=red!10,top=blue!10]
\setbeamertemplate{footline}{%
\begin{beamercolorbox}{section in head/foot}
\vskip2pt\centerline{\textcolor[rgb]{0.45,0.45,0.45}{\insertshorttitle}}\vskip2pt
\end{beamercolorbox}%
}
\renewcommand{\bibsection}{\subsubsection*{\bibname } }

  \begin{document}
\begin{frame}
 \frametitle{Expected utility comparision at renewal}
%\vspace{-0.3cm}

The expected utility of retaining the LTCI policy is written as:
%\begin{equation}
%\begin{align*}
\begin{dmath}
EU_{i}^R=  \sum_{t=0}^{T} \beta \left[u_{i}\left\{W_{i}-\sum_{s=1}^5 Q_{t,s}\times P_{s}\right\}+\sum_{s=1}^5 Q_{t,s} \left\{u_{i}\left.(W_{i}-max\left.(X_{t,s}-B_{t,s},0\right)\right)\right\}\right]
%\end{align*}
%\end{equation}
\end{dmath}
\end{frame}
\end{document}

答案1

您有两个选择:

  • 显著减小方程的字体大小(不推荐)
  • 将方程分成两行:

在此处输入图片描述

\documentclass{beamer}
\mode<presentation>
\usepackage{beamerthemesplit,graphics,graphicx,amssymb,amsmath,pgf,comment,hyperref}
\usepackage{breqn}
\usepackage[xcolor=pst]{pstricks}
\usepackage{pgfshade}
\usepackage[round]{natbib}
\usetheme{Warsaw}
\usefonttheme[onlylarge]{structuresmallcapsserif}
\setbeamercovered{highly dynamic}
\setbeamertemplate{background canvas}[vertical shading][bottom=red!10,top=blue!10]
\setbeamertemplate{footline}{%
\begin{beamercolorbox}{section in head/foot}
\vskip2pt\centerline{\textcolor[rgb]{0.45,0.45,0.45}{\insertshorttitle}}\vskip2pt
\end{beamercolorbox}%
}

\begin{document}
\begin{frame}
 \frametitle{Expected utility comparision at renewal}
%\vspace{-0.3cm}
%\setlength{\noindent}
The expected utility of retaining the LTCI policy is written as:
\begin{multline*}
EU_{i}^R 
    =  \sum_{t=0}^{T} \beta \left[u_{i}\left\{W_{i} -\sum_{s=1}^5 Q_{t,s}\times P_{s}\right\}\right.  \\
      +\left.\sum_{s=1}^5 Q_{t,s} \Bigl\{u_{i}\left(W_{i} - \max\left(X_{t,s}-B_{t,s},0\right)\right)\Bigr\}\right]
\end{multline*}
\end{frame}
\end{document}

编辑: 关于max方程中的词:它是运算符,因此它的正确用法是\max

关于牙套:

  • 括号对\left{或不能包含 & 符号或断线。在这种情况下,您可以使用例如,\right}但它不能保证下一行中的类似构造将具有相同高度的括号(因为它取决于内部内容)left[\right]\left[ ....\right. \\
  • 对的高度\left...,\right...` 取决于它们之间的内容。它们还会在它们之前/之后添加小的水平空间。
  • 括号的高度与它们之间的内容无关,您可以使用、等手动确定,\big其中\Big添加\bigg字母l\bigl)表示括号位于左侧,r\bigr)表示括号位于右侧。

在上面的 MWE 中,我更改了第二条方程式中的括号大小。但是,您可以根据需要更改选定的高度。

相关内容