論文題詞與奉獻的 LaTeX 科學標準

論文題詞與奉獻的 LaTeX 科學標準

我對 LaTeX 有點菜鳥,但我很享受在我在這裡做碩士論文時學習它。我一直想知道奉獻和銘文的最佳科學標準和 LaTeX 格式是什麼,因為我想在我的論文中包含這些內容。

它應該出現在摘要之前還是之後?中間有空白頁嗎?我自己也不太了解。另外,每種格式/包的最佳格式是什麼?

我想為我去世的兄弟獻上一份美好而簡單的奉獻。我嘗試了一個新的章節,但它看起來有點蹩腳...有人能提出建議嗎?另外,我用的這句話是最適合這種情況的嗎?我的母語不是英語,所以我不能確定。

對於銘文,我使用 Epigraph 套件並將銘文強制放置在空白頁的底部,但我仍然不能 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

模板好像來自吉圖布這並不好。新增了一些評論。

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

由於沒有給出許可證,因此不應使用。還有其他/更好的模板可用。

相關內容