我的演示文稿中有两个徽标,还有脚注。问题是我的脚注与徽标相冲突。
我尝试过改变脚注的大小和位置。我可以改变脚注的大小,但\addtobeamertemplate{footnote}{\hsize thesize}{}
不能改变位置。您知道水平放置脚注的方法吗?
非常感谢!
编辑:这是MWE:
\documentclass[12pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\title{Test}
\begin{document}
\addtobeamertemplate{footnote}{\hsize 8cm}{}
\maketitle
\logo{%
\makebox[0.95\paperwidth]{%
\includegraphics[height=1.5cm,keepaspectratio]{unicorn1.png}%
\hfill%
\includegraphics[height=1.5cm,keepaspectratio]{unicorn2.png}%
}%
}
\begin{frame}{Footnotes with logo}
Lorem ipsum dolor sit amet, consectetur adipiscing elit.\footnote{Class aptent
taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
Quisque eget facilisis ex. Mauris bibendum posuere justo sed finibus.
Sed tristique orci arcu, id consectetur elit gravida porta. Donec non
erat vulputate, faucibus ante vel, pulvinar lacus.}
\end{frame}
\end{document}
答案1
脏,脏,脏!如果您需要对多个脚注进行此操作,请更改单个元素,例如脚注标记和脚注文本。如何执行此操作请参见示例https://tex.stackexchange.com/a/308040/36296
\documentclass[12pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\title{Test}
\begin{document}
\setbeamertemplate{footnote}{
\hspace*{1.7cm}%
\raisebox{1.7cm}{\insertfootnotemark}
\parbox[b][2cm]{7.5cm}{
\insertfootnotetext%
}%
}
\logo{%
\makebox[0.95\paperwidth]{%
\includegraphics[height=1.5cm,keepaspectratio]{example-image}%
\hfill%
\includegraphics[height=1.5cm,keepaspectratio]{example-image}%
}%
}
\begin{frame}{Footnotes with logo}
Lorem ipsum dolor sit amet, consectetur adipiscing elit.\footnote{Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.
Quisque eget facilisis ex. Mauris bibendum posuere justo sed finibus.
Sed tristique orci arcu, id consectetur elit gravida porta.}
\end{frame}
\end{document}