为标题页制作边框和细线

为标题页制作边框和细线

我想在封面周围添加边框,并在标题和作者之间添加一条水平线。当我尝试时\HRule,它总是出现在标题页之外的单独页面上。谢谢。

这是我的代码:

\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{titling}
\settowidth{\thanksmarkwidth}{*}
\setlength{\thanksmargin}{-\thanksmarkwidth}}
\usepackage{cleveref}
\usepackage{hyperref}
\hypersetup{urlcolor=blue, colorlinks=true, linkcolor=black, citecolor=blue}

\predate{\begin{center}\placetitlepicture\large}
\postdate{\par\end{center}}


\newcommand{\titlepicture}[2][]{%
\renewcommand\placetitlepicture{%
\includegraphics[#1]{#2}\par\medskip
}%
}
\newcommand{\placetitlepicture}{} % initialization

\begin{document}
\setcounter{page}{1}
\pagenumbering{Roman}

\title{\vspace{-2.0cm}\textbf{Analysis on the Impact and Effectiveness\\[0.5cm] of the BCEA Earning Threshold}}


\author{Morn\'e Oosthuizen \\[3ex] Christopher Rooney 
\titlepicture[scale=0.2]{DPRU.png}
\date{}
\maketitle
\thispagestyle{empty}
\clearpage
\tableofcontents
\clearpage
\listoftables
\newpage
\section{Introduction}
\pagenumbering{arabic}
Hello
\end{document}

答案1

或许这个答案适合您。您可以在扉页上找到边框,以及标题和作者之间的分隔线。

顺便说一句,对于分隔线,我尝试\vspace*{0.5cm}\hrule在代码中的标题命令末尾插入,它对我有用。

对于盒子,您还可以考虑使用 tikz 包直接“绘制”您的标题页。

相关内容