在 Beamer Frame 中设置字体系列

在 Beamer Frame 中设置字体系列

我肯定是被水淹死的,但我却在用头撞墙。我安装了 emerald 包,以便获得我想在 beamer 演示文稿中使用的新字体。

请查看下面的代码,它使用 pdflatex 编译没有任何问题。我可以在演示幻灯片中设置 Augie 字体,其中包含机构名称等...,但我无法在以 \begin{frame} 开头的幻灯片中执行相同操作。我看了看

在 Beamer 中为幻灯片标题定义单独的字体

切换 beamer 字体系列

但我没有取得很大进展。我 99% 确信解决方案一定是一行代码,因此任何帮助都非常感谢!

干杯

####################################################################A
\documentclass[12pt]{beamer}
\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage{emerald}
\usetheme{default}

\beamertemplatenavigationsymbolsempty
\hypersetup{pdfpagemode=UseNone} % don't show bookmarks on initial view




% named colors
\definecolor{offwhite}{RGB}{249,242,215}
\definecolor{foreground}{RGB}{255,255,255}
\definecolor{background}{RGB}{24,24,24}
\definecolor{title}{RGB}{107,174,214}
\definecolor{gray}{RGB}{155,155,155}
\definecolor{subtitle}{RGB}{102,255,204}
\definecolor{hilight}{RGB}{102,255,204}
\definecolor{vhilight}{RGB}{255,111,207}
\definecolor{lolight}{RGB}{155,155,155}
%\definecolor{green}{RGB}{125,250,125}

% use those colors
\setbeamercolor{titlelike}{fg=title}
\setbeamercolor{subtitle}{fg=subtitle}
\setbeamercolor{institute}{fg=gray}
\setbeamercolor{normal text}{fg=foreground,bg=background}
\setbeamercolor{item}{fg=foreground} % color of bullets
\setbeamercolor{subitem}{fg=gray}   
\setbeamercolor{itemize/enumerate subbody}{fg=gray}
\setbeamertemplate{itemize subitem}{{\textendash}}
\setbeamerfont{itemize/enumerate subbody}{size=\footnotesize}
\setbeamerfont{itemize/enumerate subitem}{size=\footnotesize}

% Now try to set te Augie font everywhere

\setbeamerfont{my frametitle}{series=\ECFAugie}
\setbeamerfont{framesubtitle}{series=\ECFAugie}
\setbeamerfont{title}{series=\ECFAugie}
\setbeamerfont{caption}{series=\ECFAugie}
\setbeamerfont{author}{series=\ECFAugie}
\setbeamerfont{institute}{series=\ECFAugie}
\setbeamerfont{date}{series=\ECFAugie}





% page number
\setbeamertemplate{footline}{%
\raisebox{5pt}{\makebox[\paperwidth]{\hfill\makebox[20pt]{\color{gray}
      \scriptsize\insertframenumber}}}\hspace*{5pt}}


% add a bit of space at the top of the notes page
\addtobeamertemplate{note page}{\setlength{\parskip}{12pt}}


% a few macros
\newcommand{\bi}{\begin{itemize}}
\newcommand{\ei}{\end{itemize}}
\newcommand{\ig}{\includegraphics}
\newcommand{\subt}[1]{{\footnotesize \color{subtitle} {#1}}}


  \title{Blockchain: Traceability, Provenance and Applications for My
    Unknown Institute}
 \framesubtitle{A researcher's perspective}
 \author{ {John Doe}}
 \institute{Unknown Institute} 
 \begin{document}

\frame{
\titlepage}


\begin{frame}  
\frametitle{What is a Blockchain}
% \framesubtitle{Test Frame}
%   \subt{An optional subtitle}
A distributed data structure which is
\begin{enumerate}
\item very difficult to tamper with
\item if tampered with, the tampering is easy to spot  
\end{enumerate}
And who invented it?
\end{frame}


\end{document}

答案1

  • \usepackage{graphicx}并且\usetheme{default}是多余的

  • \AtBeginDocument{\ECFAugie}可以改变普通文本的字体

  • \setbeamerfont{my frametitle}{series=\ECFAugie}应该\setbeamerfont{frametitle}{series=\ECFAugie}

  • \framesubtitle{A researcher's perspective}在序言中没有任何效果,你的意思是\subtitle{A researcher's perspective}

  • \newcommand{\bi}{\begin{itemize}}
    \newcommand{\ei}{\end{itemize}}
    \newcommand{\ig}{\includegraphics}
    

    不是一个好主意 - 它们只会混淆你的代码,使除了你之外的任何人都更难阅读。你还会失去功能。如果你想节省时间,请使用具有自动完成和/或宏的编辑器


\documentclass[12pt]{beamer}
%\usepackage{graphicx}
\usepackage[T1]{fontenc}
\usepackage{emerald}
%\usetheme{default}

\setbeamerfont{frametitle}{series=\ECFAugie}
\setbeamerfont{framesubtitle}{series=\ECFAugie}
\setbeamerfont{title}{series=\ECFAugie}
\setbeamerfont{caption}{series=\ECFAugie}
\setbeamerfont{author}{series=\ECFAugie}
\setbeamerfont{institute}{series=\ECFAugie}
\setbeamerfont{date}{series=\ECFAugie}

\AtBeginDocument{\ECFAugie}

\title{Blockchain: Traceability, Provenance and Applications for My  Unknown Institute}
\subtitle{A researcher's perspective}
\author{John Doe}
\institute{Unknown Institute} 

\begin{document}

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

\begin{frame}  
\frametitle{What is a Blockchain}
A distributed data structure which is
\begin{enumerate}
\item very difficult to tamper with
\item if tampered with, the tampering is easy to spot  
\end{enumerate}
And who invented it?
\end{frame}

\end{document}

在此处输入图片描述

请仔细考虑在什么场合使用这种字体。

相关内容