ノート

ノート

私はこれまで、専門的なプレゼンテーションに Beamer を使用してきましたが、博士論文のプレゼンテーションにも使用するつもりです。質問があります。現在使用しているテンプレートは次のものです。

\documentclass[17pt]{beamer}
\usetheme{Malmoe}

非常に機能的で、非常にうまく機能します。しかし、Malmoe テーマのように、アウトライン付きのよりシンプルなフレーム設定が欲しいです。これは私が探しているものの短い例ですが、ここにはアウトラインがありません。

    % compile with lualatex or xelatex:
\documentclass[svgnames, 17pt]{beamer}

\usepackage{booktabs,etoolbox,fontspec,microtype,ragged2e}
\usefonttheme{professionalfonts,serif,structuresmallcapsserif}
 \setmainfont[Numbers=OldStyle,SmallCapsFeatures={Kerning=Uppercase}]{Minion Pro}
 \usepackage{fontspec}
 \usepackage[applemac]{inputenc}    
 \usepackage[frenchb]{babel}
 \linespread{1.0344}
 \usepackage{graphicx}
 \usepackage{caption}
 \usecolortheme[named=Maroon]{structure}
 \beamertemplatesolidbackgroundcolor{Snow}
 \setbeamertemplate{navigation symbols}{}
 \setbeamertemplate{itemize items}[circle]
 \apptocmd{\frame}{\justifying}{}{}  
 \addtobeamertemplate{block begin}{}{\justifying}
 \definecolor{alert}{HTML}{347941}
  \setbeamercolor{alerted text}{fg=alert}
 \setbeamercovered{transparent=2}
 \title{My title}
 \author{My name}
 \subtitle[A subtitle]{A subtitle}
 \institute{My institution}
 \setbeamertemplate{caption}[numbered]
\setbeamertemplate{navigation symbols}{} 

 \begin{document}



\begin{frame}
\titlepage
\end{frame}


\begin{frame}
\frametitle{{\small A title}}
This is a place for some text.
\begin{enumerate}
\item 
\item 
\end{enumerate}
\end{frame}




 \end{document}

答え1

どの部分を何から欲しいのかまだよく分かりませんが、おそらくこれで何かできるでしょう:

\documentclass[svgnames, 17pt]{beamer}
\usepackage{booktabs,etoolbox,fontspec,microtype,ragged2e}
\usefonttheme{professionalfonts,serif,structuresmallcapsserif}
\setmainfont[Numbers=OldStyle,SmallCapsFeatures={Kerning=Uppercase}]{Minion Pro}
\linespread{1.0344}
\usepackage{graphicx}
\usecolortheme[named=Maroon]{structure}
\colorlet{othercolour}{Snow}
\beamertemplatesolidbackgroundcolor{othercolour}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{itemize items}[circle]
\apptocmd{\frame}{\justifying}{}{}
\addtobeamertemplate{block begin}{}{\justifying}
\definecolor{alert}{HTML}{347941}
\setbeamercolor{alerted text}{fg=alert}
\setbeamercovered{transparent=2}
\title{My title}
\author{My name}
\subtitle[A subtitle]{A subtitle}
\institute{My institution}
\setbeamertemplate{caption}[numbered]
% based on Malmoe and the whale colour theme
\useoutertheme{split}
\mode<presentation>
\setbeamercolor*{palette primary}{use=structure,fg=othercolour,bg=structure.fg}
\setbeamercolor*{palette quaternary}{fg=othercolour,bg=black}
\mode
<all>
\setbeamercolor*{titlelike}{parent=structure}
\begin{document}

  \begin{frame}
    \titlepage
  \end{frame}

  \begin{frame}
    \frametitle{{\small A title}}
    This is a place for some text.
    \begin{enumerate}
      \item
      \item
    \end{enumerate}
  \end{frame}

\end{document}

マルーンテーマ

ノート

  • するないXe/LuaTeXを使用している場合は、ロードしてくださいinputenc。プリアンブルは、ファイルがapplemacエンコードを使用していることをTeXに伝えます。そうであれば、Xe/LuaTeXが問題になります。のみUTF8 でエンコードされたファイルを処理します。ファイルが実際に UTF8 でエンコードされている場合は、その行を削除するだけです。実際に を使用している場合はapplemac、その行を削除し、UTF8 エンコードでファイルを保存する必要があります。
  • ロードは何も行いません。すでに再定義されているため、caption再定義は行われません。(コンソール出力やログ ファイルでこのことがわかります。)\captionbeamer
  • パッケージをロードしてコマンドを2回実行することは避けてください。後で混乱が生じます(「定義を変更したのに、なぜ効果がないのか?」「プリアンブルからそのパッケージを削除したのに、LaTeXはまだそれをロードしている!なぜ?」)。この場合、navigation symbolsどんなに気に入らなくても、一度クリアするだけで十分ですし、fontspec一度ロードするだけでも十分です。(ロードすると、などを使用すること\setmainfontは特に無意味に思えます。
  • どこかにスモールキャップスが表示されていると予想していた場合は、おそらくそれが表示されるでしょう。私の場合、Minion にはスモールキャップスがないため、LaTeX は通常の直立形状で代用します。オールドスタイルの数字についても同様です。私の場合、Minion にはこれらの文字がないため、これらの設定では警告が表示されます。
  • セリフ体、スモールキャップス、オールドスタイル数字の組み合わせは、スライドにはおそらく最適な選択ではありません。プレゼンテーションが読みにくくなる可能性があります。印刷された文書や記事などのオンラインテキストに最適な書体の選択は、通常、LCD プロジェクションには最適ではありません。

[ babelMWE ではフランス語がまったく使用されていなかったため、テストのために削除しました。]

関連情報