乳胶中中心模式下的垂直空间

乳胶中中心模式下的垂直空间
  \begin{center}
    \Huge{\bf\vspace{6.5cm} ABSTRACT}  
   \end{center}

    \vspace{3 cm}

    %%%%%%%% Write the abstract of your project %%%%%%%%%%%%%

Coding Theory plays an important role in modern communication systems. It is one of the most interesting parts of Mathematics and Informatics that concerned with the reliable transmission of information over communication channels. It practically deals with encoding, transmission and decoding of information in a systematic manner.

\vspace{0.3cm}
In this project report,  a new product of two polynomials is defined over
a field. It is a generalization of the ordinary product. For convenience, we call the two polynomials as outer and inner polynomials. The newly defined product then results in non-overlapping segments obtained by multiplying it with coefficients of outer
polynomials and expanding powers of the variable. It is called `Ordered Power
Product'. It has elegant algebraic properties which lead us to new algebraic structures.

我想在 ABSTRACT 一词上方留出一些额外的垂直空间。该怎么做?

答案1

您需要做的主要更改是用\vspace{6.5cm}替换\vspace*{6.5cm}

为了使代码更易于阅读,我还将\vspace*指令移出center环境。

\documentclass{article}
\setlength\parskip{3mm} %add some vertical whitespace between paragraphs

\begin{document}
\vspace*{6.5cm}
\begin{center}
\Huge\bfseries ABSTRACT % \Huge is a switch, i.e., it doesn't take an argument
\end{center}
\vspace{3 cm}

%%%%%%%% Write the abstract of your project %%%%%%%%%%%%%

Coding Theory plays an important role in modern communication systems. It is one of the most interesting parts of Mathematics and Informatics that concerned with the reliable transmission of information over communication channels. It practically deals with encoding, transmission and decoding of information in a systematic manner.

\end{document}

相关内容