新页面中的图片最终位于中间

新页面中的图片最终位于中间

我在 Overleaf 中将一个较长的情节添加到新页面中。问题是情节显示在中间,我想“将其向上移动”。我拼命尝试了此链接中的所有提示:放在单独页面上的图片居中,而不是位于顶部

例如,我把这句话放在我的序言中,但没有成功:

\makeatletter
\setlength{\@fptop}{0pt}
\makeatother

此链接:https://www.texfaq.org/FAQ-vertposfp 解释上述事情没有帮助。

最小示例:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\makeatletter
\setlength{\@fptop}{0pt}
\makeatother

\begin{document}

\section{Introduction}

\begin{figure}[t!]
\includegraphics[scale=1]{Test_Figure.pdf}
\end{figure}

\end{document}

答案1

所示代码生成顶部对齐的浮动页面。为了运行它,我使用了example-image

在此处输入图片描述

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\makeatletter
\setlength{\@fptop}{0pt}
\makeatother

\begin{document}

\section{Introduction}

\begin{figure}[p]
\includegraphics[scale=1]{example-image}
\end{figure}

\end{document}

这是用来[p]获取浮动页面的。如上[!t]所示(实际上很可能强制将图像置于文档末尾),浮动页面被抑制,因为p未指定,所以它位于第一页的顶部。

在此处输入图片描述

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}

\makeatletter
\setlength{\@fptop}{0pt}
\makeatother

\begin{document}

\section{Introduction}


\begin{figure}[t]
\includegraphics[scale=1]{example-image}
\end{figure}

\end{document}

相关内容