我正在尝试在 LaTeX 的单页文档中插入一个图形,但我不确定该怎么做。我所有的尝试都创建了一个新页面,而我想要的是将图形放在页面底部。
这是我的代码:
\documentclass[10pt, conference, compsocconf]{IEEEtran}
\title{new document}
\begin{document}
\maketitle
\begin{figure*}
\centering
\includegraphics[width=16cm]{scheme.jpg}
\end{figure*}
\end{document}
我这里生成的是一个两页的文档,标题在第一页,图形在第二页的中间。
请注意,该图像不属于标题,它是一份单页报告,底部有一个图形,其中包含标题和标签,与往常一样。
答案1
虽然我无法将图形放在底部,但这是一个很好的方法:
\documentclass[10pt, conference, compsocconf]{IEEEtran}
\usepackage{graphicx}
\usepackage{float}
\title{new document}
\begin{document}
\makeatletter
\g@addto@macro\@maketitle{
\begin{figure}[H]
\setlength{\linewidth}{\textwidth}
\setlength{\hsize}{\textwidth}
\centering
\includegraphics[width=16cm]{scheme.jpg}
\caption{scheme}
\end{figure}
}
\maketitle
\end{document}