如何调整序言中的方框装饰标志?

如何调整序言中的方框装饰标志?

我有一个官方徽标,它有白色背景,周围有很多空白。因此,如果不修剪 Beamer 中 Berkley 主题的左上角,徽标看起来就不太好看。代码

\documentclass{beamer}

\usepackage{graphics}
\usepackage{adjustbox}

\usetheme{Berkeley} 
\logo{
% llx lly urx ury
\adjustbox{trim=0.2\width{} 0.1\height{} 0.2\width{} 0.1\height{}, clip, height=1.2\textheight{}}{
\includegraphics[height=1cm]{logo.png}
}
}

\begin{document}
\begin{frame}
\begin{titlepage}
Leo Leopold Hertz. 
\end{titlepage}
\end{frame}
\end{document}

图 1 Logo 示例,图 2 代码输出

在此处输入图片描述 在此处输入图片描述

使用随机图像测试 samcarter 的答案

我尝试自动调整图像的宽度和高度,但无法让它工作

% http://tex.stackexchange.com/a/215317/13173
\includegraphics[trim=5.3cm 0.2cm 5cm 1.2cm,clip, width=\beamer@sidebarwidth,height=\beamer@headheight]{logo.p‌​ng}

最终可行的建议

\includegraphics[trim=5.3cm 0.2cm 5cm 1.2cm,clip, height=\headheight, width=\headheight]{logo.p‌​ng}

操作系统:Debian 8.5
TeXLive:2016

答案1

我仍然不知道您的预期输出应该是什么样的,所以这只是一个猜测:

\documentclass{beamer}

\usetheme{Berkeley} 

\logo{%
    \includegraphics[trim=5.3cm 0.2cm 5cm 1.2cm, clip, height=\headheight]{logo.png}%
}

\begin{document}
\begin{frame}
\begin{titlepage}
Leo Leopold Hertz. 
\end{titlepage}
\end{frame}
\end{document}

在此处输入图片描述

相关内容