
나는 LaTeX에 대해 약간 멍청하지만 여기서 석사 논문을 작성하는 동안 LaTeX를 배우는 것을 즐기고 있습니다. 나는 내 논문에 그것을 포함하고 싶었기 때문에 헌신과 비문을 위한 최고의 과학적 표준과 LaTeX 형식이 무엇인지 궁금했습니다.
초록 앞이나 뒤에 와야 하나요? 사이에 빈 페이지가 있나요? 나 자신은 아는 바가 별로 없다. 또한 각각에 가장 적합한 형식/패키지는 무엇입니까?
나는 세상을 떠난 동생에게 간단하고 멋진 헌사를 드리고 싶었습니다. 새로운 챕터를 시도해 보았지만 좀 형편없어 보였습니다... 누군가 제안해 주실 수 있나요? 그리고, 그런 경우에 제가 사용한 문장이 가장 적절한 걸까요? 저는 영어가 모국어가 아니어서 확신할 수 없습니다.
에피그래프의 경우 에피그래프 패키지를 사용하고 에피그래프를 빈 페이지 하단에 강제로 배치하고 있지만 이것이 좋아 보일지 100% 확신할 수는 없습니다. 어떤 제안이 있으십니까?
내 문서가 시작되는 방법은 다음과 같습니다.
\documentclass[
12pt,
a4paper,
bibtotoc,
cleardoubleempty,
idxtotoc,
ngerman,
openright
final,
listof=nochaptergap,
]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\include{preamble}
\begin{document}
\setcounter{secnumdepth}{3}
% Titelblatt
\include{content/title}
%\cleardoubleemptypage
\frontmatter
% Abstract
\include{content/abstract}
\cleardoubleemptypage
% Epigraph
\chapter*{}
\vspace*{\fill}
\renewcommand{\epigraphsize}{\large}
\setlength{\epigraphwidth}{0.5\textwidth}
\epigraph{Somewhere, something incredible is waiting to be known.}{Carl Sagan}
\cleardoubleemptypage
% Dedication
\chapter*{Dedication}
To the memory of my beloved brother, Timothée.
\cleardoubleemptypage
% Inhaltsverzeichnis
\tableofcontents
\addcontentsline{toc}{chapter}{Contents}
\cleardoubleemptypage
... Then list of figures, abbreviations, mainmatter and so on ...
그래서? 아무 피드백? 정말 감사하겠습니다. 이것은 나에게 매우 중요합니다.
감사합니다.
bpx.
답변1
템플릿은 다음에서 나온 것 같습니다.Github그리고 그것은 좋지 않습니다. 몇 가지 의견이 추가되었습니다.
\documentclass[
12pt,
a4paper,
%bibtotoc,
bibliography=totoc,
%cleardoubleempty,
cleardoublepage=empty,
%idxtotoc,
index=totoc,
listof=totoc,% added
ngerman,
openright,% a comma was missing here
final,
listof=nochaptergap,
]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
%\include{preamble} % That should be input, not include
\usepackage{epigraph}
\setuptoc{toc}{totoc}% add the table of contents entry to the table of contents
\begin{document}
\setcounter{secnumdepth}{3}
% Titelblatt
%\include{content/title}
%\cleardoubleemptypage
\frontmatter
% Abstract
%\include{content/abstract}
\cleardoubleemptypage
% Epigraph
%\chapter*{}
\vspace*{\fill}
\renewcommand{\epigraphsize}{\large}
\setlength{\epigraphwidth}{0.5\textwidth}
\epigraph{Somewhere, something incredible is waiting to be known.}{Carl Sagan}
\cleardoubleemptypage
% Dedication
\addchap*{Dedication}
The text of the dedication here
\cleardoubleemptypage
% Inhaltsverzeichnis
\tableofcontents
\cleardoubleemptypage
... Then list of figures, abbreviations, mainmatter and so on ...
\end{document}
라이센스가 부여되지 않았으므로 사용해서는 안 됩니다. 다른/더 나은 템플릿을 사용할 수 있습니다.