論文の碑文と献辞に関する 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

テンプレートはギットハブそれは良くありません。いくつかのコメントを追加しました。

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

ライセンスが付与されていないため、使用しないでください。他のより良いテンプレートが利用可能です。

関連情報