创建标题页

创建标题页

我想创建一个如图所示的标题页这里。但我不知道如何在徽标下画一条线,并将文字和所有内容放在正确的位置。

我尝试过一些方法:

\begin{titlepage}

\pagecolor{blue}
\includegraphics{logo.jpg}
\title{TITLE}

\end{titlepage}

但它看起来仍然不像 pdf。有什么想法、建议或解决方案吗?

答案1

根据 Harish Kumar 的回答,我们可以得到以下结果:

在此处输入图片描述

\documentclass[12pt,demo]{report} %% Remove demo in your file.
\usepackage{geometry}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{lipsum}% Used for dummy text.
\definecolor{titlepagecolor}{cmyk}{1,.60,0,.40}
\definecolor{namecolor}{cmyk}{1,.50,0,.10} % Here I am trying to define the font color that is used in the example but I don't really know which one is it so I leave this to the OP to figure out
%-----------------------------------------------------------------
\begin{document}
% ----------------------------------------------------------------
\begin{titlepage}
\newgeometry{left=7.5cm} %defines the geometry for the titlepage
\pagecolor{titlepagecolor}
\noindent
\includegraphics[width=2cm]{logo.jpg}\\[-1em]
\color{white}
\makebox[0pt][l]{\rule{1.3\textwidth}{1pt}}
\par
\noindent
\textbf{\textsf{UniversitätsKlinikum}} \textcolor{namecolor}{\textsf{Heidelberg}}
\vfill
\noindent
{\huge \textsf{Handbuch 1.3}}
\vskip\baselineskip
\noindent
\textsf{August 2008}
\end{titlepage}
\restoregeometry % restores the geometry
\nopagecolor% Use this to restore the color pages to white
% ----------------------------------------------------------------
\lipsum[1-9]
\end{document}

有几件事情需要改进,比如可以使用小页面等等。Harish Kumar 建议的更新是使用geometry如上所示的包,这确实比我之前的回答要好。

答案2

您可以使用\rule{width}{height}

\documentclass[12pt,demo]{report} %% Remove demo in your file.
\usepackage{xcolor}
\usepackage{graphicx}
%-----------------------------------------------------------------
\begin{document}
% ----------------------------------------------------------------
\begin{titlepage}

\pagecolor{blue}
\noindent
\includegraphics[width=2cm]{logo.jpg}\\[-1em]
\makebox[0pt][l]{\rule{1.3\textwidth}{1pt}}
\par
\noindent
This is the title
\end{titlepage}
% ----------------------------------------------------------------
\end{document}

在此处输入图片描述

答案3

\hrulefill插入一条水平线。

正确的位置是什么意思?如果要对齐文本,可以使用环境flushleft, center, flushright。因此,

\begin{flushright}
    this text appears on the right of the page
\end{flushright}

此外,如果你想打印标题,你只需说,但你必须在文档中说 之前的任何位置\maketitle填写标题字段(例如authortitle、 ) (通常在序言中)。所以在你的情况下,你可以说date\maketitle

\title{TITLE}


\begin{titlepage}

    \maketitle

\end{titlepage}

在标题页上打印 TITLE。

相关内容