我正在制作演示文稿,需要像在 MWE 中一样定义我的符号,但它太长了,无法停留在框架中,我不想手动打破它的框架。我如何才能自动打破目录选项中的框架。
\documentclass{beamer}
\usetheme{Madrid}
\usepackage{amssymb}
\begin{document}
\frame[allowframebreaks]{\tableofcontents}
\begin{frame}[shrink=50]
\frametitle{Notation}
\begin{block}{~}
The following gives a list of notations used in this thesis.
\end{block}
\begin{table}[]
\begin{tabular}{ll}
Symbol & Meaning \\
$X_{t}$ & Observed time series \\
$X^{*}_{t}$ & Bootstrapped time series \\
$X_{i}$ & Set of random i.i.d. variables \\
$n$ & Length of time series \\
$\phi$ & phi \\
$\Theta$ & Theta \\
$B$ & Number of bootstrap replicate \\
$*$ & Star notation indicating a bootstrap replicate \\
$l$ & Block length \\
$m$ & Number of block resampled \\
$k$ & Number of lag \\
$\mu$ & Mean of population \\
$\varepsilon_{t}$ & Error term of time series \\
$ARIMA$ & Autoregressive Integrated Moving average \\
$ARMA$ & Autoregressive Moving average \\
$AR$ & Autoregressive \\
$MA$ & Moving average \\
$expect$ & Expected value \\
$\sigma_x^2$ & Sigma squared \\
$var$ & Variance \\
i.i.d & Independent identical distribution \\
$theta_{n}$ & Theta \\
$\hat\theta_{n}$ & Theta hat \\
$\sum$ & Summation \\
$\int$ & Integral \\
$p$ & Order of Autoregressive model \\
$q$ & Order of moving average model
\end{tabular}
\end{table}
\end{frame}
\end{document}
在这个代码中我必须缩小符号框架以使其位于一个我不应该拥有的框架中,如果我有类似的东西,\frame[allowframebreaks]{\notation}
就像它是唐的table of contents
答案1
正如我在评论中所写的:使用列表而不是表格和表格。
\documentclass{beamer}
\usetheme{Madrid}
\usepackage{amssymb}
\ExplSyntaxOn
\let\intstepinline\int_step_inline:nn
\ExplSyntaxOff
\begin{document}
\frame[allowframebreaks]{\tableofcontents}
\begin{frame}[allowframebreaks]
\frametitle{Notation}
\begin{block}{~}
The following gives a list of notations used in this thesis.
\end{block}
\begin{description}
\intstepinline{100}{\item[symbol#1] Meaning} % to get many items
\end{description}
\end{frame}
\end{document}