我的投影仪演示文稿中有一张幻灯片,如下所示:
\documentclass{beamer}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\begin{columns}
\column{0.6\textwidth}
\includegraphics[width=6cm]{FvsD.png}
\column{0.4\textwidth}
\begin{minipage}[c][.5\textheight][c]{\linewidth}
\begin{itemize}
\item[]<1> $a = 2.35\e{6}$ \\
\item[]<1> $b = 1.72$ \\
\item[]<1> $c = 2.00\e{4}$ \\
\item[]<1> $d = 0.91$ \\
\item[]<1> $e = 1.00$
\end{itemize}
\end{minipage}
\end{columns}
\begin{center}
$F = a \cdot x^b + c \cdot sign(\dot x) \cdot x^d \cdot
|\dot x|^e$
\end{center}
\end{frame}
\end{document}
我对 beamer 了解不多,这可能是构建框架的一种非常愚蠢的方法,但我想做的是让底部的方程式更大。有没有办法让那部分数学类型更大?
答案1
使用\scalebox
或\resizebox
从graphicx
包裹:
\documentclass{beamer}
\usepackage{graphicx}% http;//ctan.org/pkg/graphicx
\begin{document}
\begin{frame}
\begin{columns}
\column{0.6\textwidth}
\includegraphics[width=6cm]{FvsD.png}
\column{0.4\textwidth}
\begin{minipage}[c][.5\textheight][c]{\linewidth}
\begin{itemize}
\item[]<1> $a = 2.35\e{6}$ \\
\item[]<1> $b = 1.72$ \\
\item[]<1> $c = 2.00\e{4}$ \\
\item[]<1> $d = 0.91$ \\
\item[]<1> $e = 1.00$
\end{itemize}
\end{minipage}
\end{columns}
\begin{center}
\scalebox{2}{%
$F = a \cdot x^b + c \cdot sign(\dot x) \cdot x^d \cdot | \dot x|^e$%
}
\end{center}
\end{frame}
\end{document}
\scalebox{<factor>}{<stuff>}
<stuff>
按 的倍数缩放<factor>
,而的长度(或尺寸)和 也\resizebox{<width>}{<height>}{<stuff>}
按相同的倍数缩放。如果要保持纵横比,则仅指定一个长度,并使另一个。<width>
<height>
!
答案2
我不会保留小字体(正常)大小并缩放公式使其变大,而是使用字体命令。如果您\Huge
在中心环境的开头简单地使用,您将获得:
我用的是演示选项得到一个黑色矩形,因为我没有你的图片。我定义了一些\e
。除此之外,变化在这里:
\begin{center}
\Huge
$F = a \cdot x^b + c \cdot sign(\dot x) \cdot x^d \cdot
|\dot x|^e$
\end{center}
由于\Huge
已在环境中使用,因此字体大小的变化是局部的。我不会将内联数学居中,而是使用显示的数学,它会自动居中:
{\Huge
\[
F = a \cdot x^b + c \cdot sign(\dot x) \cdot x^d \cdot|\dot x|^e
\]}