Initial structure and content

This commit is contained in:
2026-05-24 13:57:38 +02:00
parent cb16adad6a
commit 6013e5d13c
10 changed files with 560 additions and 0 deletions

73
document.tex Normal file
View File

@@ -0,0 +1,73 @@
\documentclass{book}
\usepackage{polyglossia} % must be before fontspec
\setdefaultlanguage{english} % must be after polyglossia
\usepackage{fontspec}
\usepackage[backend=biber, style=alphabetic]{biblatex}
\addbibresource{document.bib}
\usepackage{expex} % Load expex AFTER fontspec/polyglossia
\usepackage{booktabs}
\usepackage{caption}
\usepackage{fancyhdr}
\usepackage[margin=1in]{geometry}
\usepackage[section,toc]{glossaries}
\makeglossaries
\usepackage{graphicx}
\usepackage{hyperref}
\hypersetup{colorlinks=true, linkcolor=blue}
\usepackage{subcaption}
\usepackage{xltabular}
\setmonofont{Charis SIL}
\setmainfont{Gentium Plus}
\newfontfamily\japanese{MS Mincho}
\newcommand\textipa[1]{\texttt{#1}}
\input{glossary}
\title{\textsc{Hazn}}
\author{Nomid Lomysz}
\pagestyle{fancy}
\lhead{Hazn}
\chead{}
\rhead{\thepage}
\lfoot{}
\cfoot{}
\rfoot{}
% Start the document
\begin{document}
\frontmatter
\maketitle
\tableofcontents
\include{introduction}
\mainmatter
\include{part.the-wind-blowers-of-destiny}
\include{part.a-language-for-the-hazn}
\include{part.silence}
\include{part.noise}
\backmatter
\include{part.glossary}
\printbibliography
\end{document}