
나는 처음부터 논문을 쓰려고 노력하고 있습니다. 이런 표지를 어떻게 개발할 수 있나요?
이것은 내 LateX 소스입니다.
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\title{
{Thesis Title}\\
{\large Institution Name}\\
{\includegraphics[scale=0.10]{logo.png}}
}
\author{Author Name}
\date{Day Month Year}
\begin{document}
\maketitle
\chapter*{Abstract}
Abstract goes here
\chapter*{Dedication}
To mum and dad
\chapter*{Declaration}
I declare that..
\chapter*{Acknowledgements}
I want to thank...
\tableofcontents
\chapter{Introduction}
Lorem ipsum...
\chapter{Literature Review}
Lorem ipsum...
\chapter{Methodology}
Lorem ipsum...
\chapter{Discussion and Analysis}
Lorem ipsum...
\chapter{Conclusion}
Lorem ipsum...
\appendix
\chapter{Questionnaire}
Lorem ipsum...
\chapter{Regression Output}
Lorem ipsum...
\end{document}
내 코드는 다음과 같습니다.
답변1
@js bibra가 이미 지적했듯이 제목 페이지를 아주 쉽게 정의할 수 있습니다.
KOMA-Script 클래스를 확인하는 것이 좋습니다. Markus Kohm은 표준 LaTeX 및 클래스를 대체하여 을 작성 scrreprt
했습니다 . KOMA 수업에는 예제, 헌정 문구 등을 포함한 제목 페이지를 만드는 매우 강력한 명령이 있기 때문에 제안합니다. 다음을 살펴보세요.scrbook
report
book
영어 핸드북, 특히 3.7장.
일반적으로 명령으로 생성된 사전 정의된 레이아웃을 사용하도록 선택하거나 를 \maketitle
통해 자신만의 제목 페이지 환경을 디자인할 수 있습니다 begin{titlepage} ... \end{titlepage}
.
당신의 논문은 이것으로 시작될 수도 있습니다
\documentclass{scrbook}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
%% Definitions for the titles
%\titlehead{Not in use}
%\subject{Also not in use}
\title{Codimension-Two\\
Free Boundary Problems}
\subtitle{School of Atlantis}
\author{
\includegraphics[scale=0.3]{example-image-a}\\
{\huge\bfseries Keith Gillow}\\
St Catherine College\\
University of Oxford}
\date{}
\publishers{A thesis submitted for the degree of\par
\textsc{Doctor of Philosphy}\\
Trinity 1998\\[3ex]
\today}
\begin{document}
\maketitle
\end{document}
답변2
이것이 요구 사항을 충족합니까?
요구 사항을 충족하는 경우 답변 왼쪽의 확인 표시를 선택하세요. 그 밖에 필요한 사항이 있으면 댓글에 적어주세요.
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\begin{document}
\pagestyle{empty}
\begin{center}
\LARGE
{\bfseries Codimension-Two\\Free Boundary Problems\par}
School of Atlantis\par
\vspace{4cm}
\includegraphics[scale=0.3]{example-image-a}\\
{\huge\bfseries Keith Gillow\par}
{\small St Catherine College\\University of Oxford}
\vspace{3cm}
\par
\begin{minipage}{.5\linewidth}
\normalsize\centering
A thesis submitted for the degree of\par
\textsc{Doctor of Philosphy}\par
Trinity 1998
\end{minipage}
\vfill
\today
\end{center}
\newpage
\chapter*{Abstract}
Abstract goes here
\chapter*{Dedication}
To mum and dad
\chapter*{Declaration}
I declare that..
\chapter*{Acknowledgements}
I want to thank...
\tableofcontents
\chapter{Introduction}
Lorem ipsum...
\chapter{Literature Review}
Lorem ipsum...
\chapter{Methodology}
Lorem ipsum...
\chapter{Discussion and Analysis}
Lorem ipsum...
\chapter{Conclusion}
Lorem ipsum...
\appendix
\chapter{Questionnaire}
Lorem ipsum...
\chapter{Regression Output}
Lorem ipsum...
\end{document}