如何减小方程的大小,以便适合我的投影仪演示幻灯片?

如何减小方程的大小,以便适合我的投影仪演示幻灯片?

我正在使用 Beamer 准备幻灯片。但是,我的公式超出了页边距。我尝试了本网站提供的几种解决方案,但使用这些解决方案,我的 .tex 文件无法编译。这是我的原始 Beamer 幻灯片的代码:

\documentclass{beamer}
\usepackage[english]{babel}
\usefonttheme[onlymath]{serif}
\usepackage{color}
\usepackage{graphicx}
\usepackage{amssymb,amsmath}
\usepackage{tikz}
\usepackage{epstopdf}
\begin{document}

\begin{frame}

\begin{itemize}

\item whenever $k$ is of the form $2^i$, where $i\in\mathbb{N}$, then

\begin{equation}
0.5(\sqrt[3]{n+\sqrt{n^2-1/27}}+ \sqrt[3]{n-\sqrt{n^2-1/27}})
\leq k < 0.125 (\sqrt{n}+\sqrt{n+16(\sqrt{n}+1)})
\end{equation}

\end{itemize}

\end{frame}

\end{document}

我得到了以下输出:在此处输入图片描述

请帮我解决这个问题!

答案1

我建议您进行两项单独的更改。首先,使用诸如 而不是 的环境,multline以便equation在 之前引入换行符\leq k。其次,在两行中使用\Bigl(\Bigr)作为“外”括号。

在此处输入图片描述

\documentclass{beamer}
\usefonttheme[onlymath]{serif}

\begin{document}
\begin{frame}
\begin{itemize}

\item If $k$ is of the form $2^i$, where $i\in\mathbb{N}$, then
\begin{multline}
0.5\Bigl(\sqrt[3]{n+\sqrt{n^2-1/27}}+ \sqrt[3]{n-\sqrt{n^2-1/27}}\,\Bigr) \\
\leq k < 0.125 \Bigl(\sqrt{n}+\sqrt{n+16(\sqrt{n}+1)}\,\Bigr)
\end{multline}

\end{itemize}
\end{frame}
\end{document}

相关内容