aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/latex/title.sty
blob: b6b54a30c3e713c0bc41c7c55ba5946bf86c29d8 (plain)
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
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{title}[2021/09/29 Title style]

% ┌───────────────────────────────────┐   
% │                   Title: Subtitle │ ──┬─ Header
% │                            Author │ ──┘
% │ Title                             │ ──┬─ [Title]
% │ Subtitle                          │ ──┘
% │                                   │ 
% │ A Section                         │ ──┬─ Sections
% │ ...                               │   │
% │ 1.1 A Subsection                  │ ──┤
% │ ...                               │   │
% │ Another Section                   │ ──┤
% │ ...                               │   │
% │ 2.1 A Subsection                  │ ──┤
% │ ...                               │   │
% │ 2.2 Another Subsection            │ ──┘
% │ ...                               │ 
% │                                   │
% │                                   │
% └───────────────────────────────────┘

\renewcommand{\maketitle}{
    \begin{flushleft}
        {\Huge \bfseries \sffamily \@title }\\[2ex]
        {\Large \sffamily \@subtitle }\\[4ex]
    \end{flushleft}
}