使用图像创建标题

使用图像创建标题

我正在尝试使用环境创建带有图像的标题titlepage。我希望将标题放在左侧,将图像放在右侧,但我不知道具体该怎么做。我知道我们可以将图像或一些文本刷新到右侧或左侧,但我不知道该怎么做。这是我的尝试:

\documentclass{article}

\begin{document}

    \begin{titlepage}
        \includegraphics{images/img1.pdf} % this should be on the right
        \maketitle % this should be on the left
    \end{titlepage}

\end{document}

这或多或少是我想要得到的:

在此处输入图片描述

答案1

像这样吗?

\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{titling}
\begin{document}
  \title{Title}
  \author{Author}
    \begin{titlingpage}
      \begin{minipage}{.5\linewidth}
        \maketitle % this should be on the left
      \end{minipage}
      \begin{minipage}{.5\linewidth}
        \includegraphics{images/img1.pdf} % this should be on the right
      \end{minipage}
    \end{titlingpage}
\end{document}

标题 标题页

相关内容