Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在一个特定的框架上,我想删除我正在使用的主题在标题下插入的阴影。原因是黑色背景(我只在这个框架上使用),它看起来很丑。
你知道我可以这样做吗?由于:
\setbeamertemplate{blocks}[四舍五入]% [shadow=false]
但我找不到 \titleframe 类似的东西(除了你只能放在序言中的东西 - 在我的情况下这无济于事)。
非常感谢您的帮助。
有兴趣的人会在这里找到两个可行的解决方案:
https://tex.stackexchange.com/questions/3139/beamer-how-to-remove-shadow-under-the-title-on-a-given-frame
我个人更喜欢修复阴影工作方式的方法,但也提出了一种删除它的方法。
注意:对不起,我还不能添加评论(但因为这是一个答案,我想这很好)。
另一种可能性是使用带有 pdflatex 的 beamer 版本 3.51(正是这个版本,不是新的,不是旧的)。这是不存在阴影问题的唯一版本:
\documentclass{beamer} \usetheme{Warsaw} \setbeamercolor{background canvas}{bg=black} \begin{document} \begin{frame} \titlepage \end{frame} \end{document}