Estándares científicos LaTeX para epígrafe y dedicatoria de tesis

Estándares científicos LaTeX para epígrafe y dedicatoria de tesis

Soy un poco novato con LaTeX, pero disfruto aprendiéndolo mientras hago mi tesis de maestría aquí. Me he estado preguntando cuáles serían los mejores estándares científicos y formatos LaTeX para dedicatorias y epígrafes, ya que quiero tenerlos en mi tesis.

¿Debería aparecer antes o después del resumen? ¿Páginas en blanco en el medio? Yo mismo no sé mucho. Además, ¿cuáles son los mejores formatos/paquetes para cada uno?

Quería hacer una bonita y sencilla dedicatoria a mi hermano que falleció. Probé un nuevo capítulo, pero parecía un poco aburrido... ¿Alguien puede sugerir algo? Además, ¿la frase que utilicé es la más adecuada para tal caso? No soy un hablante nativo de inglés, así que no puedo estar seguro.

Para el epígrafe, estoy usando el paquete epigraph y fuerzando el epígrafe al final de una página en blanco, pero todavía no estoy 100% seguro de que se vea bien. ¿Alguna sugerencia?

Así es como comienza mi documento:

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

¿Entonces? ¿Cualquier retroalimentación? Se lo agradecería mucho, esto es muy importante para mí.

Atentamente,

bpx.

Respuesta1

La plantilla parece provenir deGitHuby no es bueno. Se agregaron algunos comentarios.

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

Como no se otorga ninguna licencia, no debe utilizarse. Hay otras plantillas mejores disponibles.

información relacionada