投影機演示非常小

投影機演示非常小

我創建的簡報beamer非常小。有沒有橫向放大?

\documentclass{beamer}
\mode<presentation> {

\usetheme{PaloAlto}

%\setbeamertemplate{footline} % To remove the footer line in all slides uncomment this line
%\setbeamertemplate{footline}[page number] % To replace the footer line in all slides with a simple slide count uncomment this line

%\setbeamertemplate{navigation symbols}{} % To remove the navigation symbols from the bottom of all slides uncomment this line
}

\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables

%----------------------------------------------------------------------------------------
%   TITLE PAGE
%----------------------------------------------------------------------------------------

\title[Managerial Economics]{VW Invasion of North America} % The short title appears at the bottom of every slide, the full title is only on the title page

\institute[FDSM] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space
{
\textit{Fudan Business} \\\textit{School of Management} \\ % Your institution for the title page
\medskip
%\textit{[email protected]} % Your email address
}
\date{\today} % Date, can be changed to a custom date


\begin{document}

\section{Section 1}
\begin{frame}
\frametitle{Section 1}
\end{frame}

\end{document}

在此輸入影像描述

我希望頁面的黑色部分(見圖)消失,如何使葉子水平生長?

答案1

我認為您正在寬螢幕查看 pdf,因此如果 pdf 的比例不同,兩側會出現一些黑條。

您可以更改比例

\documentclass[aspectratio=169]{beamer}

或者,從使用者指南中,第 8.3 節 框架和邊距大小還有很多其他的比率。

在此輸入影像描述

答案2

您的文件不包含黑色部分——這些部分來自您的 pdf 檢視器軟體(acrobat?)。

預設情況下,beamer 創建的頁面尺寸為 5.04 英吋 x 3.78 英吋。您的 pdf 檢視器通常會將其展開以填滿螢幕。由於檔案的寬高比 (4:3) 與螢幕的寬高比不匹配,因此您的 pdf 檢視器左右顯示黑色。

相關內容