幻灯片中并排显示目录和图表

发布于 2024-09-07 21:51:54 字数 170 浏览 2 评论 0原文

我想将图形和目录并排放在一张幻灯片中,看起来像

目录图

我试图将它们分别包含在一个小页面中,然后将它们都放在图形环境中。但结果看起来不太好,因为目录被格式化为段落,而不是逐项列出的外观。那么,有人有更好的解决方案吗?提前致谢。

PS

我使用投影仪来创建幻灯片。

I want to put a figure and the TOC side by side in one slide where it would look like

TOC Figure

I have tried to include them each in a minipage respectively and then put them both in a figure environment. But the result does not look good, for the TOC is formatted as a paragraph, instead of an itemize look. So, does anybody have a better solution? Thanks in advance.

PS

I use beamer for creating slides.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

醉殇 2024-09-14 21:51:54

您是否尝试过以下方法:

\frame{
  \begin{columns}
    \column{.5\textwidth}
    \tableofcontents

    \column{.5\textwidth}
    \begin{figure}[h]
      \centering
      HERE-FIGURE
      \caption{Testfigure}
      \label{fig:a}
    \end{figure}

  \end{columns}
}

这对我来说效果很好。

Have you tried the following:

\frame{
  \begin{columns}
    \column{.5\textwidth}
    \tableofcontents

    \column{.5\textwidth}
    \begin{figure}[h]
      \centering
      HERE-FIGURE
      \caption{Testfigure}
      \label{fig:a}
    \end{figure}

  \end{columns}
}

That worked just fine for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文