begin{titlepage} ジャーナル風のスタイルを使用したタイトルページ

begin{titlepage} ジャーナル風のスタイルを使用したタイトルページ

下のようなタイトルページを作成しようとしています。ただし、脚注としてダガーやスターを取得する際に問題があります。また、画像のように著者名を書こうとすると (同じ行にスペースを入れて)、中央揃えにしていて、名前の 1 つが 4 + 4 文字で、もう 1 つが 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 はタイトルブロック内で自動的に星/ダガー脚注記号を使用し、著者ブロックがページの中央に配置されるようにします (著者名が 1 人だけ長い場合でも)。

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

ここに画像の説明を入力してください

関連情報