-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
markless.tex
79 lines (69 loc) · 2.13 KB
/
markless.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
\providecommand{\doctitle}{Markless Specification}
\providecommand{\docauthor}{Yukari Hafner}
\providecommand{\doccopyright}{Shirakumo}
\documentclass[12pt,a4paper,titlepage]{article}
\usepackage[top=1.5cm, bottom=2.5cm, left=1cm, right=1cm]{geometry}
\usepackage{textcomp}
\usepackage{fix-cm}
\usepackage{ulem}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{tcolorbox}
\usepackage{listings}
\usepackage{enumitem}
\usepackage[labelfont=bf,textfont=md]{caption}
\usepackage[xindy,toc,nonumberlist,nopostdot]{glossaries}
\usepackage{xstring}
\usepackage{fontspec}
\usepackage{tabularx}
\usepackage{environ}
\usepackage{multirow}
\usepackage{graphicx}
%% These fonts are non-free and can be obtained on
%% http://practicaltypography.com/equity.html
%% If you want to use free fonts, you will have to
%% use one that supports a wide range of unicode
%% characters to properly render the document.
%\setmainfont[Ligatures=TeX]{Equity Text B}
%\setsansfont[Ligatures=TeX]{Concourse T3}
%\setmonofont{Triplicate T4}
\title{\doctitle}
\author{\docauthor}
\date{\d_mny\today}
\input{x-commands.tex}
\input{x-glossary.tex}
\begin{document}
\begin{titlepage}
\begin{center}
\vspace*{5cm}
{\bfseries\fontsize{32pt}{30pt}\selectfont\doctitle} \\
\vspace{0.5cm}
{\large v\gittag}
\vfill
\begin{tabular}{ll}
Maintainer: & \docauthor{} <\href{mailto:[email protected]}{[email protected]}> \\
Project URL: & \url{https://shirakumo.org/projects/markless} \\
Specification Source: & \url{https://github.com/Shirakumo/markless} \\
Discussion Channel: & \url{irc://irc.libera.chat/#shirakumo} \\
\end{tabular}
\end{center}
\end{titlepage}
\tableofcontents
\input{1-preamble}
\input{2-identifier-syntax}
\input{3-documents}
\input{4-interpretation}
\input{5-line-directives}
\input{6-inline-directives}
\newpage\section*{Issues}\label{section:ISSUES}
\addcontentsline{toc}{section}{Issues}
\directlua{dofile("issues.lua")}
\glsaddall
\newpage\label{section:GLOSSARY}\printglossaries
\end{document}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% TeX-engine: luatex
%%% TeX-command-extra-options: "-shell-escape"
%%% End: