
Estou tentando fazer uma página de título semelhante à abaixo. No entanto, estou tendo alguns problemas em relação à obtenção da adaga e estrela como notas de rodapé. Além disso, quando tentei escrever autor como na imagem (mesma linha com espaço entre), tive alguns "problemas" porque tenho centralização e um dos nomes tem 4 + 4 letras e o outro tem 7 + 7, portanto parece meio desequilibrado... Obrigado
\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}
Responder1
Deve ser possível obter todos os elementos de layout desejados com o mínimo de manipulação manual usando a composição tipográfica de bloco de título integrada do LaTeX. Você pode usar \\
para inserir novas linhas ou espaços em branco dentro de \title
, \author
e \date
incorporar as informações da escola de negócios, do supervisor e da instituição neles.
O LaTeX usa automaticamente símbolos de estrela/punhal de nota de rodapé em seu bloco de título e garante que o bloco do autor esteja no centro da página (mesmo que o nome de um autor seja mais longo).
\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}