32 lines
758 B
TeX
32 lines
758 B
TeX
\documentclass[12pt,titlepage,a4paper,twoside]{article}
|
|
\include{packages}
|
|
\include{header-footer}
|
|
|
|
\renewcommand{\thesection}{}
|
|
\renewcommand{\thesubsection}{\arabic{section}.\arabic{subsection}}
|
|
\makeatletter
|
|
\def\@seccntformat#1{\csname #1ignore\expandafter\endcsname\csname the#1\endcsname\quad}
|
|
\let\sectionignore\@gobbletwo
|
|
\let\latex@numberline\numberline
|
|
\def\numberline#1{\if\relax#1\relax\else\latex@numberline{#1}\fi}
|
|
\makeatother
|
|
|
|
\title{$title$}
|
|
\newcommand{\subtitle}{$subtitle$}
|
|
\author{Some Author}
|
|
\date{2018-01-01}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\input{title}
|
|
|
|
\tableofcontents
|
|
\thispagestyle{empty}
|
|
\cleardoublepage
|
|
\setcounter{page}{1}
|
|
|
|
$body$
|
|
|
|
\end{document}
|