This file contains hidden or 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
#!/usr/bin/env python | |
''' | |
Quick and dirty hack to get the SIKS dissertation list in LaTeX. | |
Original code taken from https://gist.github.com/breuderink/1253855 | |
''' | |
import argparse, re, operator, itertools, sys | |
def tex_escape(text): | |
""" | |
:param text: a plain text message |