summaryrefslogtreecommitdiff
path: root/snippets/org-mode/title
blob: ceccb21328771b79e9472eba37e48ddb99337604 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# -*- mode: snippet -*-
# name: title
# key: ,t
# --

#+TITLE: ${1:title}
#+AUTHOR: ${2:author}
#+STARTUP: overview
#+LANGUAGE: en
#+OPTIONS: ^:nil
#+LATEX_HEADER: \let\oldsection\section
#+LATEX_HEADER: \renewcommand{\section}{\clearpage\oldsection}
#+LATEX: \pagenumbering{arabic}
#+LATEX: \setlength\parindent{0pt}

$0