博士论文格式可以用于制作讲义和幻灯片吗?

博士论文格式可以用于制作讲义和幻灯片吗?

我正在尝试使用 Nicola Talbot 的“论文”包。我的第一印象非常好,但我确实有一些问题,因为我想使用它从同一来源制作讲座幻灯片、用于打印的讲义和可供移动设备浏览的讲义。目前我确实有一些宏,它们允许为 beamermemoirAcroTeX幻灯片生成输出

  1. 我想在屏幕模式下放大文本的大小。有没有简单的方法可以做到这一点?(我尝试更改点的大小和几何形状,但在这两种情况下格式都会崩溃)
  2. 因为我也想生成一些类似 beamer 的输出,所以我添加了 beamerarticle 包。有没有办法将它与该包一起使用?(如果我添加该包,那么我的 pdflatex 就会挂起)
  3. 我有一些小尺寸的图形,所以我更喜欢 2 列格式。可以吗?(我没有收到正式错误,但没有看到 \twocolumn 的任何效果)

答案1

(在问题澄清期间的另一个占位符。稍后将被删除或进行大量编辑。)


我也不确定您所说的 Nicola 包是什么意思,但下面的 MWE 制作了一个双栏文章和一个平行光束演示。

196756-文章.tex:

\documentclass[twocolumn]{article}
\usepackage{beamerarticle}

\input{196756-main}

196756-演示.tex:

\documentclass[ignorenonframetext]{beamer}

\input{196756-main}

196756-main.tex:

\usepackage{lipsum}
\usepackage{graphicx}

\mode<presentation>{
% Remove figure and table numbers from presentation. First, beamer doesn't number
% them anyway. Second, even if it did, we might not show every table and figure
% in the presentation, and don't want to confuse Figure 1.3 in the presentation with
% Figure 1.7 in the article.
\setbeamertemplate{caption}{\insertcaption}% will not show up in article, only in presentation
\setbeamertemplate{caption label separator}{}%
}

\title{The Title}
\author{The Author}
\date{\today}

\AtBeginSection[]{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}

\begin{document}
\begin{frame} % shows up in both presentation and article
\maketitle
\end{frame}
\begin{frame}<article>  % will not show up in presentation, only in article
\tableofcontents
\end{frame}

\section{One}
\lipsum[1-3] % will not show up in presentation, only in article
\begin{frame}<beamer> % will not show up in article, only in presentation
\lipsum[1]
\end{frame}

\begin{frame} % shows up in both presentation and article
\begin{figure}
\includegraphics[width=\columnwidth]{example-image-a}
\caption{Example Image A \label{fig:a}}
\end{figure}
\end{frame}

\section{Two}
\lipsum[4-6] % will not show up in presentation, only in article
\begin{frame} % shows up in both presentation and article
\begin{figure}
\includegraphics[width=\columnwidth]{example-image-b}
\caption{Example Image B \label{fig:b}}
\end{figure}
\end{frame}

\end{document}

相关内容