Skip to content

Instantly share code, notes, and snippets.

View jacebrowning's full-sized avatar

Jace Browning jacebrowning

View GitHub Profile
@jacebrowning
jacebrowning / Makefile
Last active December 20, 2015 12:08
Generates a PDF from a Google Drive Document using html2text and LaTeX
ID = 123456789abcdef
NAME = MyDocument
.PHONY: pdf tex download all clean
pdf: $(NAME).pdf
$(NAME).pdf: $(NAME).tex *.bib
pdflatex $(NAME)
bibtex $(NAME)