我正在用 LaTeX 为课堂准备笔记beamer
。我\uncover
经常用它来回答问题。有没有办法为没有答案的学生打印笔记?以下是我的代码示例:
\section{Week 1}
\subsection{Basic Definitions}
\begin{frame}{Example: Marijuana Legalization}
\\
A local radio station is interested in determining how North Carolina
residents feel about marijuana legalization. The station set up a special
phone number which could be called by people who wished to voice their
opinion. The station found that 67\% of the 1,624 callers support
legalization.
\begin{itemize}
\item What is the parameter of interest?\\ \uncover<2->
{{\color{wolfred}proportion of all North Carolina residents who support
marijuana legalization}}
\item What is the population?
\\\uncover<3->{{\color{wolfred}All North Carolina residents}}
\item What is the statistic?\\\uncover<4->{{\color{wolfred}67\%, the
proportion of callers who support the legalization of marijuana.}}
\end{itemize}
\end{frame}
答案1
您可以使用投影机模式来实现这一点。将覆盖规范从更改为\uncover
,并为学生讲义添加文档类选项。<2->
<beamer:2-|handout:0>
handout
% presentation
\documentclass{beamer}
% handout for students without answers
%\documentclass[handout]{beamer}
\begin{document}
\section{Week 1}
\subsection{Basic Definitions}
\begin{frame}{Example: Marijuana Legalization}
A local radio station is interested in determining how North Carolina
residents feel about marijuana legalization. The station set up a special
phone number which could be called by people who wished to voice their
opinion. The station found that 67\% of the 1,624 callers support
legalization.
\begin{itemize}
\item What is the parameter of interest?\\
\uncover<beamer:2-|handout:0>{{\color{red}proportion of all North Carolina
residents who support marijuana legalization}}
\item What is the population?\\
\uncover<beamer:3-|handout:0>{{\color{red}All North Carolina residents}}
\item What is the statistic?\\
\uncover<beamer:4-|handout:0>{{\color{red}67\%, the proportion of callers
who support the legalization of marijuana.}}
\end{itemize}
\end{frame}
\end{document}