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}

여기에 이미지 설명을 입력하세요

관련 정보