从透明文本切换到黑色文本

从透明文本切换到黑色文本

使用 后\newtheorem,后面的文本会变得透明,原因我不明白。由于我找不到这个问题的根源,我只想尝试一个次优的解决方案,即告诉beamer将透明文本切换为黑色文本。相关命令是什么?

\documentclass[xcolor=dvipsnames]{beamer} 
\usetheme[height=9mm]{Rochester} 
\setbeamertemplate{items}[ball] 
\setbeamertemplate{blocks}[rounded][shadow=true] 
\setbeamertemplate{navigation symbols}{ } 
\setbeamertemplate{theorems}[numbered] 
\usepackage{pgfpages} 
\pgfpagesuselayout{resize to}[letterpaper,border shrink=-4mm,landscape] 
\begin{document}
 \newtheorem*{hyp*}{Empirical Hypothesis} 
\begin{frame}
 \begin{hyp*}
 This is my empirical hypothesis \end{hyp*} This additional text is transparent. 
\end{frame} 
\end{document} 

相关内容