论文题词和致谢的 LaTeX 科学标准

论文题词和致谢的 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}

由于没有授予许可证,因此不应使用。有其他/更好的模板可用。

相关内容