Skip to content

Instantly share code, notes, and snippets.

@crazyhottommy
Last active November 3, 2015 04:32
Show Gist options
  • Select an option

  • Save crazyhottommy/1a137b57b093c87544c1 to your computer and use it in GitHub Desktop.

Select an option

Save crazyhottommy/1a137b57b093c87544c1 to your computer and use it in GitHub Desktop.

Pandoc is a very useful tool to convert common formats.

First install pandoc on mac by:

brew install pandoc

pandoc requires pdflatex to convert to pdfs.

install mactex:
download it and just double click it should install it.

next, put executables including latexpdf to the path.

echo export PATH=$PATH:/usr/texbin/ >> .bashrc
source ~/.bashrc

You can specify margins of the pdf by -V geometry:margin=1in:

pandoc http://quinlanlab.org/tutorials/cshl2013/gemini.html -V geometry:margin=1in -o gemini.pdf`  

when codes in html are too long, they get cut-off

Very thankful, I found the answer in this post:

Save the following as listings-setup.tex

% Contents of listings-setup.tex
\usepackage{xcolor}

\lstset{
    basicstyle=\ttfamily,
    numbers=left,
    keywordstyle=\color[rgb]{0.13,0.29,0.53}\bfseries,
    stringstyle=\color[rgb]{0.31,0.60,0.02},
    commentstyle=\color[rgb]{0.56,0.35,0.01}\itshape,
    numberstyle=\footnotesize,
    stepnumber=1,
    numbersep=5pt,
    backgroundcolor=\color[RGB]{248,248,248},
    showspaces=false,
    showstringspaces=false,
    showtabs=false,
    tabsize=2,
    captionpos=b,
    breaklines=true,
    breakatwhitespace=true,
    breakautoindent=true,
    escapeinside={\%*}{*)},
    linewidth=\textwidth,
    basewidth=0.5em,
}

Then, invoke pandoc:

pandoc https://cran.r-project.org/web/packages/gapmap/vignettes/tcga_example.html --listings -H listings-setup.tex -o gapmap_TCGA.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment