避免标题页中的长标题重叠

避免标题页中的长标题重叠

有人知道我怎样才能防止我的标题文本像这样稍微重叠吗?

(我不得不说,这种情况只发生在我目前的论文标题中:如果我放入不同的词,这种情况就不会发生 - 这就是为什么我在例子中保留了一些有问题的词)

在此处输入图片描述

这是我的代码

\documentclass[a4paper, 12pt, twoside]{book}
\usepackage{graphicx}

\begin{document}

\begin{titlepage}
    \begin{center}
        \includegraphics[width=0.5\textwidth]{BlackBox}\\
        \vspace{4em}
        {\Large \textsc{University something\\ ``Some Name''}}\\
        \vspace{1em}
        {\Large \textsc{Faculty of Engineering, Information Technology and Statistics}}\\
        \vspace{1em}
        {\small \textsc{Master of Science in Engineering in Computer Science}}\\
        \vspace{3em}
        {\normalsize Master of Science presentation}\\
        \vspace{2em}
        {\LARGE \textbf{ This Is My Very Long Title Analysis from Advertisements for Characterizing Industry Differences.}}\\
    \end{center}

    \vskip 2 cm
    \begin{center}
        \begin{tabular}{l c c c c c c c c r}
            \textbf{Candidate} & & & & & & & & & \textbf{Supervisor} \\[0.2cm]
            \large{Name Surname} & & & & & & & & & \large{Name Surname}\\[0.3cm]
            \textbf{} & & & & & & & & & \textbf{External Supervisor} \\[0.2cm]
            \large{} & & & & & & & & & \large{Name Surname}\\[0.3cm]
            \footnotesize{ID 1234567}  & & & & & & & & &  \\[0.3cm]
        \end{tabular}

        \normalsize A.y. 2016/2017
    \end{center}


\end{titlepage}
\maketitle
\end{document}

答案1

像这样?

在此处输入图片描述

我稍微清理了一下代码,避免了字体大小的错误使用:

\documentclass[a4paper, 12pt, twoside]{book}
\usepackage[demo]{graphicx}
\usepackage{array}

\begin{document}

\begin{titlepage}
    \begin{center}
        \includegraphics[width=0.5\textwidth]{BlackBox}\\
        \vspace{3em}
        \Large\scshape
        University something\\
        ``Some Name''       \\
        \vspace{1em}
        Faculty of Engineering, Information Technology and Statistics\\
        \vspace{1em}
        \small
        Master of Science in Engineering in Computer Science        \\
        \vspace{3em}
        \normalsize
        Master of Science presentation \\
        \vspace{2em}
        \normalfont\bfseries\LARGE
            This Is My Very Long Title Analysis from
            Advertisements for Characterizing Industry Differences.
    \end{center}
    \vspace{1.5 cm}
    \begin{center}
    \renewcommand\arraystretch{1.2}
        \begin{tabular*}{\linewidth}{l @{\extracolsep{\fill}} r}
            \textbf{Candidate}          &   \textbf{Supervisor}     \\
            \large Name Surname         &   \large Name Surname     \\
                                        &   \textbf{External Supervisor} \\
                                        &   \large Name Surname     \\
            \footnotesize ID 1234567    &
        \end{tabular*}

        A.y. 2016/2017
    \end{center}


\end{titlepage}
%\maketitle
\end{document}

相关内容