Página de título usando el estilo de diario begin{titlepage}

Página de título usando el estilo de diario begin{titlepage}

Estoy intentando hacer una portada similar a la siguiente. Sin embargo, tengo algunos problemas con respecto a obtener la daga y la estrella como notas a pie de página. Además, cuando intenté escribir el autor como en la imagen (misma línea con espacio entre ellas), tengo algunos "problemas" porque tengo centrado y uno de los nombres tiene 4 + 4 letras y el otro tiene 7 + 7, por lo tanto Parece algo desequilibrado... Gracias.Replica esto

\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}

Respuesta1

Debería ser posible lograr todos los elementos de diseño que desee con un mínimo de manipulación manual utilizando la tipografía de bloque de título incorporada de LaTeX. Puede utilizar \\para insertar nuevas líneas o espacios en blanco dentro de \title, \authore \dateincorporar la información de la escuela de negocios, el supervisor y la institución en estos.

LaTeX utiliza automáticamente símbolos de nota al pie de estrella/daga dentro de su bloque de título y garantiza que el bloque de autor esté en el centro de la página (incluso si el nombre de un autor es más largo).

\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}

ingrese la descripción de la imagen aquí

información relacionada