Skip to content

Instantly share code, notes, and snippets.

@danmosergist
danmosergist / gist:59253b9691db18a0366c
Created January 2, 2016 22:26
Latex: long table twocolumn mode with xtab
% \usepackage{xtab,afterpage}
\begin{center}
\topcaption{Top caption xtab}
\tablefirsthead{\hline \multicolumn{1}{|c|}{\textbf{Command}} &
\multicolumn{1}{c|}{\textbf{Effect}} & \multicolumn{1}{|c|}{\textbf{Extra}}
\\ \hline }
\tablehead{\multicolumn{3}{c}%
{{\captionsize \tablename\ \thetable{} -- continued from previous page}} \\
\hline \multicolumn{1}{|c|}{\textbf{Command}} &
\multicolumn{1}{c|}{\textbf{Effect}} & \multicolumn{1}{|c|}{\textbf{Extra}}
@danmosergist
danmosergist / gist:08e39da11f9508be9535
Last active January 2, 2016 19:24
Latex: table with booktabs
% \usepackage{booktabs}
% \begin{table}
% \centering % alternatively to \begin{center}
% \caption{Caption this!} \label{tab:}
\begin{center}
\begin{tabular}{llr}
\toprule
\multicolumn{2}{c}{Item} \\
\cmidrule(r){1-2}
Animal & Description & Price (\$) \\
@danmosergist
danmosergist / gist:be01fd352deb52b624fe
Last active August 2, 2022 12:34
Latex: longtable example
% \usepackage{longtable} % Problem: longtable do not work on twocolumns mode
\begin{center}
\begin{longtable}{|l|l|l|}
\caption[Short caption]{Long captions for the long table.} \label{tab:long1} \\
% First head
\hline
\multicolumn{1}{|c|}{\textbf{Time (s)}} &
\multicolumn{1}{c|}{\textbf{Triple chosen}} &
\multicolumn{1}{c|}{\textbf{Other feasible triples}} \\ \hline
\endfirsthead
@danmosergist
danmosergist / gist:6b2a986495ce30d865b0
Created January 2, 2016 18:58
Latex: draft watermark
\usepackage{xcolor}
\usepackage[printwatermark]{xwatermark}
\newwatermark[allpages,color=red!20,angle=45,scale=5,xpos=0,ypos=0]{DRAFT}
@danmosergist
danmosergist / gist:d4d66aea74b15b145e1a
Last active January 23, 2019 16:32
Latex: natbib astronomy journals
\usepackage{natbib}
\newcommand{\aap}{A\&A}
\newcommand{\apj}{ApJ}
\newcommand{\apjl}{ApJ Letters}
\newcommand{\mnras}{MNRAS}
\newcommand{\aapr}{A\&A Rev.}
\newcommand{\pasp}{PASP}
\newcommand{\araa}{Annu. Rev. Astron. Astrophys}
\newcommand{\zap}{Zeitschrift f\"ur Astrophysik}
@danmosergist
danmosergist / gist:680326bb0dce46b44897
Created January 2, 2016 18:46
Latex: listings literate
\usepackage{listings}
\lstset{literate=
{á}{{\'a}}1 {é}{{\'e}}1 {í}{{\'i}}1 {ó}{{\'o}}1 {ú}{{\'u}}1
{Á}{{\'A}}1 {É}{{\'E}}1 {Í}{{\'I}}1 {Ó}{{\'O}}1 {Ú}{{\'U}}1
{à}{{\`a}}1 {è}{{\`e}}1 {ì}{{\`i}}1 {ò}{{\`o}}1 {ù}{{\`u}}1
{À}{{\`A}}1 {È}{{\'E}}1 {Ì}{{\`I}}1 {Ò}{{\`O}}1 {Ù}{{\`U}}1
{ä}{{\"a}}1 {ë}{{\"e}}1 {ï}{{\"i}}1 {ö}{{\"o}}1 {ü}{{\"u}}1
{Ä}{{\"A}}1 {Ë}{{\"E}}1 {Ï}{{\"I}}1 {Ö}{{\"O}}1 {Ü}{{\"U}}1
{â}{{\^a}}1 {ê}{{\^e}}1 {î}{{\^i}}1 {ô}{{\^o}}1 {û}{{\^u}}1
{Â}{{\^A}}1 {Ê}{{\^E}}1 {Î}{{\^I}}1 {Ô}{{\^O}}1 {Û}{{\^U}}1