以我的论文为中心

以我的论文为中心

目前,我已经

\documentclass[a4paper,     % Seitenformat
        12pt,                               % 
        bibliography=totoc,     % Literaturverzeichnis in das Inhaltsverzeichnis
        index=totoc,    % Index in das Inhaltsverzeichnis
        abstracton,     % mit Abstrakt
        headsepline,    % Trennlinie f�r die Kopfzeile
        %footnosepline, % Trennlinie f�r die Fusszeile
        ]{scrreprt}


\usepackage{calligra} % for dedication

\begin{document}    
\newpage

\vspace{4cm}
{\fontfamily{calligra}\selectfont \begin{huge}  To my parents, my brother and my sister. \end{huge}}


\newpage

\end{document}

我想将这段题词放在页面中间,但是\vspace不行,我该怎么做呢?

答案1

你试过这个吗?顺便说一句,我会先写我姐姐,然后再写哥哥。

\documentclass[a4paper,     % Seitenformat
        12pt,                               % 
        bibliography=totoc,     % Literaturverzeichnis in das Inhaltsverzeichnis
        index=totoc,    % Index in das Inhaltsverzeichnis
        abstracton,     % mit Abstrakt
        headsepline,    % Trennlinie f�r die Kopfzeile
        %footnosepline, % Trennlinie f�r die Fusszeile
        ]{scrreprt}


\usepackage{calligra} % for dedication

\begin{document}    
\title{Title}
\author{Joe Doe}
\dedication{To my parents, my sister and my brother.}

\maketitle

\end{document}

答案2

使用星号\vspace

\vspace*{4cm}

相关内容