如何将文本移动到页面中间

如何将文本移动到页面中间

如何将文本和标题移动到页面中间?

我尝试过使用vspace但我认为这是错误的。

这是代码。

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

\date{May 2022}

\begin{document}

\maketitle

\newpage
\begin{center}
\section*{Abstract}
\end{center}
\begin{doublespace}
\rm{SARS COVID-19 is the most devastating pandemic that this millennium has seen. With close to 6 million deaths and 500 million infections globally, the whole world has felt the impact of this virus. From healthcare to education every aspect of life has changed. Without intervention, this virus will continue to claim lives. However, the gaps in knowledge surrounding the current behaviour and future behaviour of SARS COVID-19 make intervention by governments impossible. The aim of this study is to bridge this gap with the help of a modified SIR model and investigate the usefulness of mathematical models in Biology and the field of biomathematics.\\ \par

The modifications made to the SIR model include adjusting the categories (SEIRDV) by including Exposed, Dead and Vaccinated individuals. As well as adding the concept of vital dynamics which takes into consideration natural deaths and births of a particular country, this allows for individuals to move across the categories in a more accurate manner. Our results show.....}
\end{doublespace}
\end{document}

答案1

将来请确保您的 MWE 是可编译的(它没有标题并且doublespace未定义)。

您可以按照以下方式进行操作:

\newpage
\mbox{}\vfill
 Text to be placed in the middle of the page (verticaly centered)
\vfill \mbox{}
And this will appear on the next page.

相关内容