This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DEFAULT_GOAL := thesis.pdf | |
%.pdf: %.dvi | |
dvipdfmx $^ | |
thesis.dvi: thesis.tex refs.bib | |
platex -halt-on-error -shell-escape thesis.tex | |
bibtex thesis | |
platex -halt-on-error thesis.tex | |
platex -halt-on-error thesis.tex |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; php-doc.el --- doc block generator/extractor for php | |
;; Copyright (C) 2010, 2013 Stefan Siegl <[email protected]> | |
;; Maintainer: Stefan Siegl <[email protected]> | |
;; Author: Stefan Siegl <[email protected]> | |
;; Keywords: php docblock | |
;; Created: 2010 | |
;; Modified: 2013-09-14 | |
;; X-URL: https://gist.github.com/stesie |