标题页呈现不正确

标题页呈现不正确

我正在使用标准模板作为文档的标题页,可以在latex 维基百科

然而,由于某种原因,右侧的小页面(包含我主管的信息)显示的位置比应在的位置左移了约一英寸。

我想知道是否有人可以帮助我。这是我的资料来源:

\documentclass{article}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{graphicx}
\usepackage{url}
\begin{document}
\raggedright
\begin{titlepage}
    \begin{center}
        \textsc{\LARGE University of Blah} \\
        \vspace{1cm}
        \textsc{\Large School of Egg Decoration} \\
        \vspace{0.8cm}
        \rule{\linewidth}{0.5mm} \\[0.35cm]
        \bfseries{\huge On the decoration of Ostrich Eggs}
        \rule{\linewidth}{0.5mm}
    \end{center}
    \begin{minipage}{0.4\textwidth}
        \begin{flushleft}
            \emph{Author:} \\
            \textsc{Edward Eggman} \\
            \url{[email protected]}
        \end{flushleft}
    \end{minipage}
    \begin{minipage}{0.4\textwidth}
        \begin{flushright}
            \emph{Supervisor:} \\
            \textsc{Dr James Eggthusiast} \\
            \url{[email protected]}
        \end{flushright}
    \end{minipage} \\
    \vfill
    \begin{center}
    \large \emph{30\textsuperscript{th} June 2015}
    \end{center}
\end{titlepage}
% document content here
\end{document}

非常感谢。

答案1

只需使用\hfill强制在小页面之间留出空间

\documentclass{article}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{graphicx}
\usepackage{url}
\begin{document}
\begin{titlepage}
    \begin{center}
        \textsc{\LARGE University of Blah} \\
        \vspace{1cm}
        \textsc{\Large School of Egg Decoration} \\
        \vspace{0.8cm}
        \rule{\linewidth}{0.5mm} \\[0.35cm]
        \bfseries{\huge On the decoration of Ostrich Eggs}
        \rule{\linewidth}{0.5mm}
    \end{center}
    \begin{minipage}{0.4\textwidth}
        \begin{flushleft}
            \emph{Author:} \\
            \textsc{Edward Eggman} \\
            \url{[email protected]}
        \end{flushleft}
    \end{minipage}\hfill
    \begin{minipage}{0.4\textwidth}
        \begin{flushright}
            \emph{Supervisor:} \\
            \textsc{Dr James Eggthusiast} \\
            \url{[email protected]}
        \end{flushright}
    \end{minipage} \\
    \vfill
    \begin{center}
    \large \emph{30\textsuperscript{th} June 2015}
    \end{center}
\end{titlepage}
\raggedright

% document content here
\end{document}

在此处输入图片描述

以下是一些其他精彩的标题页示例:展示用 TeX 制作的精美标题页

答案2

而不是使用小页面并必须猜测宽度,通常最好使用tabular并允许每个框为其自然宽度,这样您就可以将框中的文本左对齐,但将框设置为右齐平。

在此处输入图片描述

\documentclass{article}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}
\usepackage{graphicx}
\usepackage{url}
\begin{document}
\raggedright
\begin{titlepage}
    \begin{center}
        \textsc{\LARGE University of Blah} \\[1cm]
        \textsc{\Large School of Egg Decoration} \\[0.8cm]
        \rule{\linewidth}{0.5mm} \\[0.35cm]
        \bfseries{\huge On the decoration of Ostrich Eggs}
        \rule{\linewidth}{0.5mm}
    \end{center}

        \begin{tabular}{@{}l@{}}
            \emph{Author:} \\
            \textsc{Edward Eggman} \\
            \url{[email protected]}
        \end{tabular}\hfill
        \begin{tabular}{@{}l@{}}
            \emph{Supervisor:} \\
            \textsc{Dr James Eggthusiast} \\
            \url{[email protected]}
        \end{tabular}
    \par
    \vfill
    \begin{center}
    \large \emph{30\textsuperscript{th} June 2015}
    \end{center}
\end{titlepage}
% document content here
\end{document}

相关内容