投影仪演示中公式的下标大小

投影仪演示中公式的下标大小

首先抱歉,因为这个问题可能重复了。我不知道为什么这个问题是用另一个用户的名字上传的,我无法编辑它(也许你可以删除之前同名的问题)。问题如下:

我正在创建一个包含大量公式的 Beamer 演示文稿。我使用的软件包\usepackage{amsmath}和演示文稿的主题是\usetheme{Warsaw}

正如在附图中看到的,上(下)标的尺寸比正常书写的要大。

在此处输入图片描述

有谁知道一组基本包,以便获得经典公式,而无需这些尺寸变化?

代码如下

\documentclass[]{beamer}

\setbeamercovered{transparent}


%--------------------------%
% To add enumeration index
%--------------------------%
\addtobeamertemplate{navigation symbols}{}{%
    \usebeamerfont{footline}%
    \usebeamercolor[fg]{footline}%
    \hspace{1em}%
    \insertframenumber / \inserttotalframenumber 
}
\setbeamercolor{footline}{fg=black}
\setbeamerfont{footline}{series=\bfseries}


%---------------------------------------------------------------------------------%

\usepackage{amsmath,amssymb}



% Theme for the presentation
\usetheme{Warsaw}
% Change the colour
\usecolortheme{spruce}

\setbeamertemplate{footline}{}  % Delete the footline with the names



\begin{document}



\begin{frame}
\frametitle{\textbf{Algorithm}: step \texttt{s}}


\scriptsize

\textbf{STEP \texttt{s}}

\vspace{0.25cm}

Let $B^{(s-1)}$ be the variable  for the $\mathit{(s-1)}$-th step, let's take the sets $I_+^{(s-1)}$ and $I_-^{(s-1)}$ of length $r_+^{(s-1)}$ and $r_-^{(s-1)}$ respectively,and define:\\

\vspace{0.25cm}

\begin{center}

$B^{(s+)}= \sqrt{\tfrac{(r_+^{(s-1)} + 1)*r_-^{(s-1)}}{r_+^{(s-1)} + r_-^{(s-1)} + 1}} $

\end{center}


\end{frame}

\end{document}

答案1

下标和上标较小,但由于分数的主要部分是以脚本样式排版的,所以大小并不大\tfrac

你犯了几个错误:

  1. 你正在使用center而不是equation*

  2. 你正在使用\tfrac而不是\frac

这是框架文本。请注意更高的级别,\bigskip而不是明确的长度。切勿用于\\结束段落。你真的确定吗\scriptsize

\begin{frame}
\frametitle{\textbf{Algorithm}: step \texttt{s}}

\scriptsize% ???

\textbf{STEP \texttt{s}}

\bigskip

Let $B^{(s-1)}$ be the variable for the $(s-1)$-th step, let's take the sets 
$I_+^{(s-1)}$ and $I_-^{(s-1)}$ of length $r_+^{(s-1)}$ and $r_-^{(s-1)}$ 
respectively, and define:
\begin{equation*}
B^{(s+)}= \sqrt{\frac{(r_+^{(s-1)} + 1)*r_-^{(s-1)}}{r_+^{(s-1)} + r_-^{(s-1)} + 1}}
\end{equation*}

\end{frame}

在此处输入图片描述

相关内容