如何解决在新页面上书写的问题?

如何解决在新页面上书写的问题?

我正在使用 overleaf。

在下面的代码中,当我尝试写入文本时,它出现在第一页,而我希望文本出现在第五页或第六页。我尝试了命令或,\pagebreak\newpage没有成功。

\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{amsmath,amssymb,amsthm}
\newtheorem{theorem}{Theorem}
\theoremstyle{definition}
\newtheorem{definition}{Definition}
\newtheorem{question}{Question}
\title{Project 02}
\author{Mahmoud}
\date{\today}

\begin{document}

\maketitle
\begin{question}
    Sketch the directed and undirected power graphs of finite group $G$ where $G=\mathbf{Z}_{6}$, $Q_{8}$.\\

\begin{figure}[h]
    \centering
    \includegraphics[scale=.3]{example-image}
    \caption{Undirected power graph of $\mathbf{Z}_{6}$}
    \label{fig:my_label}
\end{figure}

\end{question}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.35]{example-image}
    \caption{Directed power graph of $\mathbf{Z}_{6}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.50]{example-image}
    \caption{Undirected power graph of $Q_{8}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.50]{example-image}
    \caption{Directed power graph of $Q_{8}$}
    \label{fig:my_label}
\end{figure}


\begin{question}
    Sketch the undirected power graph of finite group $G$ where \\
    $G=\mathbf{Z}_{8},\mathbf{Z}_{9},\mathbf{Z}_{10},$ and The Klein $4-$ group $V_{4}$.
\end{question}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.25]{example-image}
    \caption{Undirected power graph of $\mathbf{Z}_{8}$}
    \label{fig:my_label}
\end{figure}


\begin{figure}[h]
    \centering
    \includegraphics[scale=.25]{example-image}
    \caption{Directed power graph of $\mathbf{Z}_{8}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.25]{example-image}
    \caption{Undirected power graph of $\mathbf{Z}_{9}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.25]{example-image}
    \caption{Directed power graph of $\mathbf{Z}_{9}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.30]{example-image}
    \caption{Undirected power graph of $\mathbf{Z}_{10}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.30]{example-image}
    \caption{Directed power graph of $\mathbf{Z}_{10}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h]
    \centering
    \includegraphics[scale=.30]{example-image}
    \caption{Undirected power graph of $V_{4}$}
    \label{fig:my_label}
\end{figure}

\begin{figure}[h!]
    \centering
    \includegraphics[scale=.30]{example-image}
    \caption{Directed power graph of $V_{4}$}
    \label{fig:my_label}
\end{figure}

%Here I want add text, my file is five pages , but it adds the text at first page after second question

\end{document}

答案1

尝试\clearpage或如果您加载包nextpage命令\cleartooddpage\cleartoevenpage

相关内容