标题页采用 begin{titlepage} 期刊式风格

标题页采用 begin{titlepage} 期刊式风格

我正在尝试制作一个类似于下面的标题页。但是,我在将匕首和星号用作脚注时遇到了一些问题。此外,当我尝试像图片中那样写作者时(同一行之间有空格),我遇到了一些“问题”,因为我有居中,其中一个名字有 4 + 4 个字母,另一个有 7 + 7 个字母,因此看起来有点不平衡……谢谢复制此

\documentclass[12pt]{article}
\pagestyle{plain}
\usepackage[english]{babel}
\usepackage{setspace}%set line spacing
\onehalfspacing
\usepackage[top=2cm, bottom=2cm, left=5cm, right=2cm]{geometry}
\usepackage{parskip}%gir avsnitt iuten\\
\setlength{\parindent}{0pt}

\begin{document}

\begin{titlepage}

\newcommand{\HRule}{\rule{\linewidth}{0.5mm}} % Defines a new command for the horizontal lines, change thickness here

\center % Center everything on the page

 %----------------------------------------------------------------------------------------
%   HEADING SECTIONS
%----------------------------------------------------------------------------------------

\textsc{Business School - Thesis}\\[2.6cm] % Name of university/college
%----------------------------------------------------------------------------------------
%   TITLE SECTION
%----------------------------------------------------------------------------------------


%\HRule \\
{ \LARGE \bfseries  Do the Financial Markets Trust XXX?:} \\[0.5cm] 
{\Large \bfseries A Macro-Finance Model of the Term Structure}


%----------------------------------------------------------------------------------------
%   AUTHOR SECTION
%----------------------------------------------------------------------------------------
\textsc{Authors:}\\
 Author1 $^\dag$\\
  Author2$^\ddag$\\[0.8cm]%Department of Economics  %Department of Financial Economics
\textsc{Supervisor:}\\Institute sup.\\[1cm]


%----------------------------------------------------------------------------------------
%   DATE SECTION
%----------------------------------------------------------------------------------------

\today\\[1cm] % Date, change the \today to a set date if you want to be precise
\hrule
\abstract{From a macroeconomic perspective, the short-term interest rate is a policy instrument under the direct control of the central bank, which adjusts the rate to achieve its economic stabilization goals.}
%----------------------------------------------------------------------------------------
%   LOGO SECTION
%----------------------------------------------------------------------------------------

\vfill % Filling the rest of the page with whitespace
\end{titlepage}
\end{document}

答案1

使用 LaTeX 内置的标题排版,只需进行最少的手动操作,即可实现所需的所有布局元素。您可以使用在、\\和 内插入新行或空白,并将商学院、主管和机构信息纳入其中。\title\author\date

LaTeX 会自动在标题栏内使用星号/匕首脚注符号,并确保作者栏位于页面的中心(即使一位作者的名字较长)。

\documentclass{article}

\title{
\textsc{Business School -- Thesis}\\[2.6cm]
{\LARGE \bfseries Project Title}\\{\Large\bfseries Project Subtitle}\thanks{Paper footnotes.}
}

\author{
First Author' Long Name\thanks{First author's footnotes go here.}\\Podang U. 
\and 
Second Author\thanks{Second author's footnotes go here.} \\Potato U.
}

\date{
\textsc{Supervisor:} Supervisor's Name\\[1em]
\today
}

%----------------------------------

\begin{document}
\maketitle

\hrule

\begin{abstract}
Abstract text goes here.
\end{abstract}
\vfill
\newpage

\end{document}

在此处输入图片描述

相关内容