如何在 maketitle 页的作者姓名下方放置图片

如何在 maketitle 页的作者姓名下方放置图片

latex 新手在这里。

我使用了这里提出的解决方案\maketitle 内的图像 - 不是单独的页面它建议使用标题包,但只能将图像放在标题的顶部,这不是我想要的。

以下是从该链接中取出的代码(稍作修改):

\documentclass[12pt]{article}         

\usepackage[demo]{graphicx}
\usepackage{amssymb}
\usepackage{titling}

\pretitle{%
\begin{center}
\LARGE
\includegraphics[width=6cm,height=2cm]{logo}\\[\bigskipamount]
}
\posttitle{\end{center}}

\begin{document}

\title{Title}
\author{Author}
\date{}     

\maketitle

\end{document}  

我想要的是这个: 书页布局

答案1

您必须重新定义\maketitlehook*命令。以下是示例:

\documentclass[12pt]{article}

\usepackage{graphicx}
\usepackage{amssymb}
\usepackage{titling}
\pretitle{\bfseries\Huge}
\title{Title}
\posttitle{\\\vskip1.5cm}
\preauthor{\Large}
\author{Author}
\postauthor{}
\renewcommand\maketitlehooka{\pagestyle{empty}\centering\sffamily}
\renewcommand\maketitlehookc{\vskip2cm
\includegraphics[width=4cm]{sendak.jpg}
\vfill PUBLISHING HOUSE}
\date{}
\begin{document}

\maketitle

\end{document} 

在此处输入图片描述

相关内容