Beamer 精美礼盒

Beamer 精美礼盒

[1我试图将椭圆框添加到我的文本中,但无法正确显示。剩余的文本应该在椭圆框中,但屏幕上看不到。请帮忙。

.com/WgMw6.png

答案1

假设您使用该fancybox包来生成椭圆框,那么将内容保持在框架范围内的最简单方法是将其插入到该宽度的 parbox 中。

A

\documentclass[11pt]{beamer} 

\usepackage{fancybox} % added for ovalbox

\begin{document}

    \begin{frame}{Ovalbox}
    \ovalbox{\parbox{\framewidth}{The BEAMER package, wich defines the beamer document class, is generally included in most of standart LaTex distributions.}}
    \end{frame}

\end{document}

答案2

您可以fancybox使用tcolorbox

\documentclass[11pt]{beamer} 

\usepackage[most]{tcolorbox} % added for ovalbox

\begin{document}

    \begin{frame}{Ovalbox}
    
    \begin{tcolorbox}[colback=white]
    The BEAMER package, wich defines the beamer document class, is generally included in most of standart LaTex distributions.
    \end{tcolorbox}
    \end{frame}

\end{document}

在此处输入图片描述

答案3

还有很好的例子https://github.com/AnMnv/eBook

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

相关内容