可以放两张标题图片吗?

可以放两张标题图片吗?

我想知道是否可以在报告首页上放置两张标题图片?

\title{Title}
\author{X}
\date{}
\titlepic{\includegraphics [width=10cm]{logo_1}}
\titlepic{\includegraphics [width=10cm]{logo_2}}

当我这样做时,首页上只显示 {logo_2}。我想将一个放在标题顶部,另一个放在底部。可以吗?

答案1

这里有两种可能性,两者都需要在单个\titlepic调用的参数中放置两个图像。

\documentclass[titlepage]{article}
\usepackage[tt]{titlepic}
\usepackage{graphicx}
\title{Title}
\author{X}
\date{}
\titlepic{\includegraphics [width=4cm]{example-image-a}
\includegraphics [width=4cm]{example-image-b}}
\begin{document}
\maketitle
\end{document}

在此处输入图片描述

\documentclass[titlepage]{article}
\usepackage[tt]{titlepic}
\usepackage{graphicx}
\title{Title}
\author{X}
\date{}
\titlepic{\includegraphics [width=4cm]{example-image-a}\\[2pt]
\includegraphics [width=4cm]{example-image-b}}
\begin{document}
\maketitle
\end{document}

在此处输入图片描述

相关内容