標題頁使用 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}

在此輸入影像描述

相關內容