投影仪自定义侧边栏中的文本旋转 90°

投影仪自定义侧边栏中的文本旋转 90°

所以我想在我的自定义 Beamer 主题中有一个侧边栏,其中有一段简短的带有版权的文字。文本应该旋转 90°。我想我首先必须在beameroutertheme.sty并对其进行编辑,直到获得所需的效果。不幸的是,我做不到这一点,所以你们能帮我吗?下面是我想象中的一张图片。其余的主题工作已经完成。

答案1

看看这是否符合要求

\vfill可以通过删除和或者使用\vskip\vspace命令来上下移动文本的位置

可以通过取消注释该\includegraphics行来使用图形图像

在此处输入图片描述

在此处输入图片描述

\documentclass{beamer}

\usepackage[utf8]{inputenc}

 \useoutertheme[height=0pt,left,width=1cm]{sidebar}
\setbeamercolor{sidebar}{use=structure,bg=structure.fg!20!white,fg=red}

\makeatletter
\setbeamertemplate{sidebar left}{%
    \begin{minipage}[t][.98\paperheight][t]{1cm}%
        \vfill%
        \centering
        % \includegraphics[width=.9\textwidth]{example-image}
         \rotatebox{90}{@ myinstitute logo}
         \vfill      
        \usebeamercolor[fg]{sidebar}
        \insertframenumber
        \vskip1.5em%
    \end{minipage}
}
\makeatother

\title{Sample title}
\author{Anonymous}
\institute{Overleaf}
\date{2014}


\begin{document}
\frame{\titlepage}
\begin{frame}
\frametitle{Sample frame title}
This is a text in the first frame. This is a text in the first frame. This is a text in the first frame.
\end{frame}

\end{document}

相关内容