如何将徽标放在投影仪幻灯片的最右上角

如何将徽标放在投影仪幻灯片的最右上角
\documentclass[8pts]{beamer} 
\usepackage{amsmath,amsrefs}
\usepackage{amssymb}
\usepackage{graphics,graphicx}
%\usetheme{Berkeley}
\usetheme{Frankfurt}
\usepackage{tikz}
%\usecolortheme{dove}
\usetikzlibrary{decorations.pathreplacing}
\usepackage{tkz-berge}
\usepackage{pgf, tikz}
\usepackage{ragged2e}
\setbeamerfont{description}{size=\small}
\renewcommand{\baselinestretch}{1.4}
\newcommand{\bcomma}{,\allowbreak}
\def\B(G){\mathcal{T}_{\mathcal{B}_G}}
\usetikzlibrary{arrows, automata}
\usetheme{Warsaw}
\usefonttheme{serif}
\useoutertheme{miniframes}
%\usefonttheme{serif} this command is used for writting a good text font
%\mathcolor{blue}
\mode<presentation>
\setbeamertemplate{footline}[frame number]

\title{International Conference on Analysis}  

%\logo{\includegraphics[width=1mm,height=1mm,keepaspectratio]{logo.png}}
\author[]{ {\bf Title: Minimizing spectral readius}\\\large{Presented by}\\{Joseph mor}}
\date{22 February, 2020}
%\logo{\includegraphics[height=.5cm,keepaspectratio]{logo.png}}

%\logo{\includegraphics[width=1mm,height=1mm,keepaspectratio]{logo.png}}




\begin{document}
\maketitle
\end{document}

标识

我试图将徽标符号放在每张幻灯片的右下角。但没有成功。如何在 Beamer 中做到这一点?

答案1

如果你只是取消注释该行

\logo{\includegraphics[height=.5cm,keepaspectratio]{logo.png}}

徽标将出现在右下角。编译你的代码并取消注释此行,我得到

logo确实有点小,但是你可以用height中的参数控制它的大小\includegraphics

答案2

在此处输入图片描述

这符合你的要求吗

\documentclass[11pt]{beamer}
\usetheme{Warsaw}

\makeatletter
\setbeamertemplate{headline}
{%
  \leavevmode%
  \@tempdimb=2.4375ex%
  \ifnum\beamer@subsectionmax<\beamer@sectionmax%
    \multiply\@tempdimb by\beamer@sectionmax%
  \else%
    \multiply\@tempdimb by\beamer@subsectionmax%
  \fi%
  \ifdim\@tempdimb>0pt%
    \advance\@tempdimb by 1.825ex%
    \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{section in head/foot}%
      \vbox to\@tempdimb{\vfil\insertsectionnavigation{.5\paperwidth}\vfil}%
    \end{beamercolorbox}%
    \begin{beamercolorbox}[wd=.5\paperwidth,ht=\@tempdimb]{subsection in head/foot}%
      \vbox to\@tempdimb{\vfil\insertsubsectionnavigation{.3\paperwidth}\vfil}%
      \hfill
      \includegraphics[height=\headheight]{example-image}
    \end{beamercolorbox}%
  \fi%
}
\makeatother

\begin{document}

\section{bla}
\subsection{blub1}
\begin{frame}
content...
\end{frame}
\subsection{blub2}
\begin{frame}
content...
\end{frame}
\subsection{blub3}
\begin{frame}
content...
\end{frame}
\subsection{blub4}
\begin{frame}
content...
\end{frame}

\end{document}

礼貌 - https://tex.stackexchange.com/a/347635/197451

相关内容