diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -4,3 +4,7 @@
 
 * Initial release
 
+## 0.1.0.1  -- 2016-12-23
+
+* Fixed bug in LaTeX renderer (backslash in wrong position).
+
diff --git a/skylighting.cabal b/skylighting.cabal
--- a/skylighting.cabal
+++ b/skylighting.cabal
@@ -1,5 +1,5 @@
 name:                skylighting
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            syntax highlighting library
 description:         Skylighting is a syntax highlighting library with
                      support for over one hundred languages.  It derives
diff --git a/src/Skylighting/Format/LaTeX.hs b/src/Skylighting/Format/LaTeX.hs
--- a/src/Skylighting/Format/LaTeX.hs
+++ b/src/Skylighting/Format/LaTeX.hs
@@ -31,8 +31,8 @@
 tokenToLaTeX :: Bool -> Token -> Text
 tokenToLaTeX inline (NormalTok, txt)
   | Text.all isSpace txt = escapeLaTeX inline txt
-tokenToLaTeX inline (toktype, txt)   = Text.snoc
-  (Text.pack (show toktype) <> "{" <> escapeLaTeX inline txt <> "}") '\\'
+tokenToLaTeX inline (toktype, txt)   = Text.cons '\\'
+  (Text.pack (show toktype) <> "{" <> escapeLaTeX inline txt <> "}")
 
 escapeLaTeX :: Bool -> Text -> Text
 escapeLaTeX inline = Text.concatMap escapeLaTeXChar
