diff --git a/Makefile b/Makefile
--- a/Makefile
+++ b/Makefile
@@ -41,5 +41,6 @@
 	wget -O - http://hackage.haskell.org/packages/archive/00-index.tar.gz \
 	   | gunzip \
 	   | ./dist/build/hackage-bibtex/hackage-bibtex \
-	   | ssh code.haskell.org tee /home/thielema/public_html/bibtex/hackage.bib \
+	   | xz \
+	   | ssh code.haskell.org tee /home/thielema/public_html/bibtex/hackage.bib.xz \
 	   > /dev/null
diff --git a/bibtex.cabal b/bibtex.cabal
--- a/bibtex.cabal
+++ b/bibtex.cabal
@@ -1,5 +1,5 @@
 Name:             bibtex
-Version:          0.1.0.4
+Version:          0.1.0.5
 License:          BSD3
 License-File:     LICENSE
 Author:           Henning Thielemann <haskell@henning-thielemann.de>
@@ -76,7 +76,7 @@
   location: http://code.haskell.org/~thielema/bibtex/
 
 Source-Repository this
-  tag:      0.1.0.4
+  tag:      0.1.0.5
   type:     darcs
   location: http://code.haskell.org/~thielema/bibtex/
 
@@ -120,7 +120,7 @@
   If flag(buildExamples)
     Build-Depends:
       old-time >=1.0 && <1.2,
-      Cabal >=1.6 && <1.20,
+      Cabal >=1.6 && <1.24,
       tar >=0.3 && <0.5,
       utf8-string >=0.3.4 && <0.4,
       bytestring >=0.9 && <0.11
diff --git a/publications/publications.bib b/publications/publications.bib
--- a/publications/publications.bib
+++ b/publications/publications.bib
@@ -59,7 +59,7 @@
 
 @PhdThesis{thielemann2006diss,
   author =	 {Thielemann, Henning},
-  title =	 {Equivalence of Foo and Bar with respect to $\|.\|$},
+  title =	 {Equivalence of Foo and Bar with respect to $\|.\|$ and \[\alpha\]},
   school =	 {University of Applied Irrelevance},
   year =	 2006,
   month =	 {March}
@@ -67,7 +67,7 @@
 
 @Misc{thielemann2010bibtex,
   key =		 {haskell, bibtex, natbib},
-  author =	 {Thielemann, Henning},
+  author =	 {Thielemann, Henning and others},
   title =	 {BibTeX parsing and generation},
   howpublished = {\url{http://hackage.haskell.org/package/bibtex}},
   subtype =	 {program},
diff --git a/src/Text/BibTeX/Parse.hs b/src/Text/BibTeX/Parse.hs
--- a/src/Text/BibTeX/Parse.hs
+++ b/src/Text/BibTeX/Parse.hs
@@ -151,7 +151,7 @@
       (char '{') (texSequence '}') (char '}') <|>
    sequence
       [char '\\',
-       oneOf "_{}$|'`^&%\".,~# " <|> letter] <|>
+       oneOf "_{}[]$|'`^&%\".,~# " <|> letter] <|>
    fmap (:[]) (noneOf [closeChar])
 
 
