我正在使用 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}