Skip to content

Instantly share code, notes, and snippets.

View fmannhardt's full-sized avatar

Felix fmannhardt

View GitHub Profile
@breuderink
breuderink / siks2tex.py
Created September 30, 2011 14:16
Converter for SIKS dissertation list to LaTeX
#!/usr/bin/env python
'''
Quick and dirty hack to get the SIKS dissertation list in LaTeX.
'''
import argparse, re, operator, itertools, sys
parser = argparse.ArgumentParser(
description='Convert SIKS dissertation list to LaTeX.')
parser.add_argument('txt')
parser.add_argument('tex')