改变顶部到部分的距离

改变顶部到部分的距离

如何将页面顶部到部分标题的距离更改为特定距离。不知何故它离顶部太远了,我想解决这个问题。

非常感谢!

\documentclass{article}

\usepackage{verbatim}
\usepackage{float}% If comment this, figure moves to Page 2
\usepackage{graphicx}
\usepackage{titling}
\usepackage{hyperref}
\hypersetup{
    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black
}



%\date{\today}

\usepackage[numbered,framed]{matlab-prettifier}
\lstset{style = Matlab-editor}

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

\begin{document}
\title{PEWPEW \textcopyright \\ ABC}

\author{MAX\\
  \texttt{MUSTERMANN}
  \and
  MAX\\
  \texttt{MUSTERFRAU}
}

\date{\today}

\maketitle

\tableofcontents 

\newpage
\section{ABC}[h]
\verbatiminput{ABC.txt}

\section{ABC2}
\verbatiminput{ABC2.txt}

\section{ABC3}
\verbatiminput{ABC3.txt}

\newpage
\section{Something else}

\begin{figure}[H]
    \centering
    \includegraphics[scale=0.325]{Plot1}
    \caption{WEIRDSTUFF}
\end{figure} 


\begin{figure}[H]
    \centering
    \includegraphics[scale=0.325]{Plot2}
    \caption{CENSORED}
\end{figure} 

\section{PLOTS}
\begin{figure}[H]
    \centering
    \includegraphics[scale=0.4]{something}
    \caption{PLOTS}
\end{figure}

\begin{figure}[H]
    \centering
    \includegraphics[scale=0.4]{somethingtoo}
    \caption{Curves}
\end{figure}

\newpage
\section{Output Variables}
\verbatiminput{mfile.txt}

\end{document}

答案1

让我将我的评论转换为答案:

您的章节标题位于文本字段的顶部,但是文章文档类的默认边距“很大”。要获得较小的边距,您需要更改页面布局。例如,可以借助 geometry 包来完成此操作:

\documentclass{article}
\usepackage[margin=25mm]{geometry}
\usepackage[demo]{graphicx}
...

这样你的页面将如下所示:

在此处输入图片描述

题外话:使用包H中的选项float放置图片可能会导致意外问题:页面底部出现大量空白(当页面上没有足够的空间放置图片时)。请谨慎使用此选项,最好不要使用它!

相关内容