研讨课中的横向和页面居中

研讨课中的横向和页面居中

我正在尝试掌握研讨会文档类的基础知识,以便编写演示文稿(我通常会使用 Beamer,但在这种情况下别无选择)。我真正需要的是让文档横向放置,每页内容居中并占据可用的页面空间。我的尝试导致每页内容位于页面的左上角,并占据大部分页面空白。

\documentclass[landscape]{seminar}
\slideframe{oval}

\begin{document}
\section*{Introduction}
Blah blah blah blah blah blah.

\begin{slide}
Blah blah blah blah blah blah.
\end{slide}

\end{document} 

答案1

自从发布这个问题以来,我找到了一个解决方案,通过采用在https://www.maths.nottingham.ac.uk/personal/jff/Beamer/pdflatex-and-seminar.html. 对于横向使用序言

\documentclass[a4,landscpae]{seminar}
\pdfcompresslevel=9
\pdfpagewidth=11.69 truein % A4 portrait
\pdfpageheight=8.27 truein % A4 portrait
\pdfhorigin=1truein     % default value(?), but doesn't work without
\pdfvorigin=1truein     % default value(?), but doesn't work without
\slideheight=17.5cm
\slidewidth=23cm

相关内容