Emily Riehl 的 2020 ACT 会议幻灯片中的字体和“模拟”时钟

Emily Riehl 的 2020 ACT 会议幻灯片中的字体和“模拟”时钟

我最近在看这些Emily Riehl 制作的幻灯片2020 年版应用范畴论会议。

以下是其中一张幻灯片的截图:

在此处输入图片描述

这是已知模板吗?如果是,我在哪里可以找到它?

另外,有人知道这是什么字体吗?我尝试过通过一些“pdf 字体阅读器”在线查找,但没有找到。我还对右上角显示的“时钟”感兴趣;它会随着幻灯片的推进而变化。任何帮助都将不胜感激。

答案1

我想 David 回答了你关于字体的问题吧?“模拟时钟”实际上只是一个饼图。试试这个:

\documentclass{beamer}
\usepackage{tikz,pgf-pie}

\newcommand\pieofprogress  {%
                        \begin{tikzpicture}
                            \tikzset{lines/.style={draw=none}}
                            \pie[   rotate=90, 
                                    hide number, 
                                    sum=auto, 
                                    radius=.25,
                                    color={lime,cyan},
                                    style={lines}
                                ]   {
                                        \inserttotalframenumber-
                                        \insertframenumber/,
                                        \insertframenumber/
                                    }
                        \end{tikzpicture}
                    }

\begin{document}
    \begin{frame}{Frame \#1}
        \begin{columns}
            \column{0.85\textwidth}
            \centering  This is number one, 
                        and the fun hast just begun … 
            \column{0.15\textwidth}
            \pieofprogress
        \end{columns}
    \end{frame}

    \begin{frame}{Frame \#2}
        \begin{columns}
            \column{0.85\textwidth}
            \centering  This is number two, 
                        and I'm taking off her shoe …
            \column{0.15\textwidth}
            \pieofprogress
        \end{columns}
    \end{frame}

    \begin{frame}{Frame \#3}
        \begin{columns}
            \column{0.85\textwidth}
            \centering  This is number three,
                        and my hand is on her knee …
            \column{0.15\textwidth}
            \pieofprogress
        \end{columns}
    \end{frame}    

    \begin{frame}{Frame \#4}
        \begin{columns}
            \column{0.85\textwidth}
            \centering  This is number four,
                        and she’s asking me for more …
            \column{0.15\textwidth}
            \pieofprogress
        \end{columns}
    \end{frame}
 \end{document}

您可能希望将其粘贴在页眉或页脚主题或其他适当的模板中,但原则应该明确。

答案2

它是用 lualatex 和 beamer 制作的,使用了以下字体(并非所有字体都是免费的):

$pdffonts matrices.pdf 
name                                 type              encoding         emb sub uni object ID
------------------------------------ ----------------- ---------------- --- --- --- ---------
RWJBVP+GillSans-Light                CID TrueType      Identity-H       yes yes yes     18  0
ALDFDQ+LatinModernMath-Regular       CID Type 0C       Identity-H       yes yes yes     19  0
MOBCJY+LatinModernMath-Regular       CID Type 0C       Identity-H       yes yes yes     20  0
AIZVPP+MnSymbol10                    Type 1            Custom           yes yes no      33  0
AIZVPP+MnSymbol10                    Type 1            Custom           yes yes no      34  0
MYTKLN+LatinModernMath-Regular       CID Type 0C       Identity-H       yes yes yes     35  0

相关内容