diff --git a/Text/Highlighting/Kate/Format/LaTeX.hs b/Text/Highlighting/Kate/Format/LaTeX.hs
--- a/Text/Highlighting/Kate/Format/LaTeX.hs
+++ b/Text/Highlighting/Kate/Format/LaTeX.hs
@@ -23,10 +23,11 @@
 formatLaTeX _ = intercalate "\n" . map sourceLineToLaTeX
 
 -- | Formats tokens as LaTeX using custom commands inside
--- a @\\Highlight@ command.  A @KeywordTok@ is rendered
--- using @\\KeywordTok{..}@, and so on.
+-- @|@ characters. Assumes that @|@ is defined as a short verbatim
+-- command by the macros produced by 'styleToLaTeX'.
+-- A @KeywordTok@ is rendered using @\\KeywordTok{..}@, and so on.
 formatLaTeXInline :: FormatOptions -> [SourceLine] -> String
-formatLaTeXInline opts ls = "\\Verb{" ++ formatLaTeX opts ls ++ "}"
+formatLaTeXInline opts ls = "|" ++ formatLaTeX opts ls ++ "|"
 
 sourceLineToLaTeX :: SourceLine -> String
 sourceLineToLaTeX contents = concatMap tokenToLaTeX contents
diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,14 @@
+highlighting-kate 0.5.1 (29 May 2012)
+
+  * Fixed inline LaTeX formatting:  it should be `|...|`
+    rather than `\Verb{...}`.
+
+highlighting-kate 0.5.0.6 (27 Apr 2012)
+
+  * Added zenburn style.
+
+  * Updated for compatibility with blaze-html 0.5.*.
+
 highlighting-kate 0.5.0.5 (14 Feb 2012)
 
   * Update 'synStPrevNonspace' at end of line.
diff --git a/highlighting-kate.cabal b/highlighting-kate.cabal
--- a/highlighting-kate.cabal
+++ b/highlighting-kate.cabal
@@ -1,5 +1,5 @@
 Name:                highlighting-kate
-Version:             0.5.0.6
+Version:             0.5.1
 Cabal-Version:       >= 1.6
 Build-Type:          Simple
 Category:            Text
