我正在尝试使用 LyX beamer 模板(已安装在程序文件中)进行演示。但我无法在标题页上插入大学徽标。希望有人能解决这个问题。请从以下链接下载任何 lyx 文件并尝试插入您自己的徽标。
http://www.ctan.org/tex-archive/macros/latex/contrib/beamer/solutions/conference-talks
我已按照文件中给出的说明进行操作。
“如果您有一个名为“institution-logo-filename.xxx”的文件,其中 xxx 是可分别由 latex 或 pdflatex 处理的图形格式,那么您可以通过取消注释以下内容来添加徽标:”
%\pgfdeclareimage[height=0.5cm]{institution-logo}{institution-logo-filename}
%\logo{\pgfuseimage{institution-logo}}
我已取消注释这两行,并在同一文件夹中拥有同名“institution-logo-filename”的徽标文件,但它不起作用。
答案1
要在标题页添加徽标,您可以使用\titlegraphic
序言中的命令。转到文档 --> 设置 --> LaTeX 序言并添加
\titlegraphic{\includegraphics{uni-logo-filename}}
但是,这也可以在 GUI 中完成。在作者后添加新行,然后TitleGraphic
从左上角的下拉菜单中选择。然后,您可以像通常添加图像一样添加徽标,方法是单击。
对我来说,这会将徽标放在页面底部。如果您也遇到同样的情况,则可能需要重新定义模板title page
。Stefan Kottwitz 在如何在 beamer 中自定义 \titlepage?
将该部分复制\defbeamertemplate
到文档 --> 设置中的 LaTeX 序言中,并根据您的需要进行更改。我不确定您到底想要什么,但以下内容产生了与模板非常相似的东西,只是作者和所属机构之间有徽标。
\defbeamertemplate*{title page}{customized}[1][]
{\centering
\setbeamercolor{title}{bg=blue,fg=white}
\begin{beamercolorbox}[rounded=true,shadow=true,sep=5pt,center]{title}
\usebeamerfont{title}\inserttitle\par
\usebeamerfont{subtitle}\insertsubtitle
\end{beamercolorbox} \par\medskip
\usebeamerfont{author}\insertauthor\par\medskip
\inserttitlegraphic \par\medskip
\usebeamerfont{institute}\insertinstitute\par\medskip
\setbeamerfont{date}{size=\large}
\usebeamerfont{date}\insertdate\par
}
答案2
更多信息肯定会有所帮助 - 特别是您已经尝试过的方法。不知道这一点,我尝试了一下:
假设您想在副标题和作者之间插入,您可以在那里创建一个空行,然后从菜单中选择< Insert | Graphics >
并选择您的徽标文件。右键单击图片并编辑设置 - 缩放以获得正确的大小,锚点用于居中。
这有帮助吗?