Skip to content

Instantly share code, notes, and snippets.

@ustun
Created November 14, 2016 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ustun/79b73d89c6b3dd1b18bfa81973b588bf to your computer and use it in GitHub Desktop.
Save ustun/79b73d89c6b3dd1b18bfa81973b588bf to your computer and use it in GitHub Desktop.
Org Template for xelatex
#+TITLE: My Document Title
#+AUTHOR: My Name
#+DATE: Some Date
#+OPTIONS: toc:nil num:nil
# no table of contents
#+LATEX_COMPILER: xelatex
# Or M-x customize-variable org-latex-compiler
#+LATEX_HEADER: \usepackage{fontspec}
# no margins
#+LATEX_HEADER: \usepackage{fullpage}
# use Palatino font for main page
#+LATEX_HEADER: \setmainfont{Palatino}
# Turkish customizations
#+LATEX_HEADER: \usepackage{polyglossia}
#+LATEX_HEADER: \usepackage{testhyphens}
#+LATEX_HEADER: \setmainlanguage{turkish}
* My Header
Contents goes here
- A list
- of items
** A sub header
some other content
# C-c C-e then l then o will open the pdf
@AtomicNess123
Copy link

How to remove the date altogether?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment