如何将图形置于绝对顶部位置?

如何将图形置于绝对顶部位置?

我使用 IEEE 会议风格spconf.sty

我的问题是,如何将图形放置在页面的绝对顶部位置,并且不在顶部、左侧或右侧留出任何空间。

例如下图:

红色区域为原始图形。

我如何将其扩展到蓝色区域?或者绿色区域? 在此处输入图片描述

该图的当前代码是:

\begin{figure*}[!t]
 \centering
 \includegraphics[width=0.8\textwidth]{figures/aaa}
 \caption{aaa}
 \label{aaa}
\end{figure*}

答案1

似乎还留有一点空隙。它比\topskip\dblfloatsep或小\dbltextfloatsep,所以可能不是故意的。

\documentclass[conference]{IEEEtran}
\usepackage{graphicx}
\usepackage{lipsum}

\begin{document}
\begin{figure*}[tp]% AFAICT, adding ! does nothing useful
 \vspace*{\dimexpr -1in-\topmargin-\headheight-\headsep}%
 \makebox[\textwidth]{%
   \includegraphics[width=\paperwidth]{example-image}}
 \caption{aaa}% do not put inside \makebox
 \label{aaa}
\end{figure*}

\lipsum[1-16]
\end{document}

相关内容