文本和图像并排在里面\谢谢

文本和图像并排在里面\谢谢

我必须感谢我的赞助商,并在我的论文中给出他们的徽标。但是 \thank 不适用于 \minipage 或 \makebox,所以我无法将正文和徽标并排显示。相反,我将图像放在文本下方。

\documentclass[runningheads,final]{llncs}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\title{Some Title}
\author{Some authors%
\thanks{\lipsum[1][1-3]%
\protect\includegraphics[scale=0.1]{logo.jpg}%
}}
%
\institute{Some institute}
%

\maketitle

\end{document}

答案1

你是这个意思吗?

\documentclass[runningheads,final]{llncs}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\title{Some Title}
\author{Some authors
\thanks{\protect\includegraphics[scale=0.1]{example-image-a}
This is text for footnote}}

\institute{Some institute}
%

\maketitle

\end{document}

相关内容