mjlassila (owner)
Revisions
-






9085b9
PhilGeek
Sat Nov 22 19:00:57 -0800 2008
-






9df28b
PhilGeek
Sat Nov 01 09:09:59 -0700 2008
-






5efccb
PhilGeek
Sat Oct 25 10:40:53 -0700 2008
-






c1a368
PhilGeek
Wed Sep 10 12:52:17 -0700 2008
-






4bff4b
PhilGeek
Wed Sep 10 12:40:15 -0700 2008
-






222b8a
PhilGeek
Wed Jul 30 20:02:54 -0700 2008
-






04db59
PhilGeek
Wed Jul 30 18:19:15 -0700 2008
-






e0bbf7
PhilGeek
Wed Jul 30 18:06:41 -0700 2008
-






f017a0
PhilGeek
Wed Jul 30 18:05:16 -0700 2008
-






c1a3e2
PhilGeek
Wed Jul 30 18:03:55 -0700 2008
This gist is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are given this private URL.
Every gist with this icon (
) is private.
Every gist with this icon (
This gist is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
README
LaTeX Preamble
Created by Mark Eli Kalderon on 2008-07-30
Introduction
LaTeX preamble and associated files. Meant to be used as a submodule of a Git repository. The file, preamble.tex, needs to be included in the LaTeX document under version control. See the provided template. For more information about keeping your LaTeX preamble in a Git submodule see this blog post.
LaTeX Template
%!TEX TS-program = xelatex
%!TEX TS-options = -synctex=1 -output-driver="xdvipdfmx -q -E"
%!TEX encoding = UTF-8 Unicode
%
% my_title
%
% Created by my_name on date.
% Copyright (c) year. All rights reserved.
%
\documentclass[12pt]{article}
% Definitions
\newcommand\mykeywords{}
\newcommand\myauthor{}
\newcommand\mytitle{}
\newcommand\mybib{}
\include{preamble/preamble.tex}
%%% BEGIN DOCUMENT
\begin{document}
% Title Page
\maketitle
% \begin{abstract} % optional
% \noindent
% \end{abstract}
\vskip 2em \hrule height 0.4pt \vskip 2em
% \epigraph{text of epigraph}{\textsc{author of epigraph}} % optional; make sure to uncomment \usepackage{epigraph}
% Layout Settings
\setlength{\parindent}{1em}
% Main Content
% Bibligography
\bibliographystyle{plainnat}
\bibliography{\mybib}
\end{document}
License
The files:
- preamble.tex
- README.markdown
are written by Mark Eli Kalderon eli@markelikalderon.com and are dedicated to the Public Domain.
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 |
|


