diff --git a/Text/LaTeX/Guide/Auto.hs b/Text/LaTeX/Guide/Auto.hs
--- a/Text/LaTeX/Guide/Auto.hs
+++ b/Text/LaTeX/Guide/Auto.hs
@@ -1,10 +1,10 @@
--- | Automatically generated module.
-module Text.LaTeX.Guide.Auto (
-  guideVersion
-    ) where
-
-import Data.Version
-
--- | The version of the guide. Based on the version of the package.
-guideVersion :: Version
-guideVersion = Version [1,0,1,5] []
+-- | Automatically generated module.
+module Text.LaTeX.Guide.Auto (
+  guideVersion
+    ) where
+
+import Data.Version
+
+-- | The version of the guide. Based on the version of the package.
+guideVersion :: Version
+guideVersion = Version [1,0,1,6] []
diff --git a/Text/LaTeX/Guide/Backend/LaTeX.hs b/Text/LaTeX/Guide/Backend/LaTeX.hs
--- a/Text/LaTeX/Guide/Backend/LaTeX.hs
+++ b/Text/LaTeX/Guide/Backend/LaTeX.hs
@@ -42,13 +42,16 @@
                             in color c <> f t <> normalcolor
 hatexSyntax _  (URL t) = let u = createURL $ unpack t
                          in  url u
-hatexSyntax fp (IMG t) = center $ includegraphics [] $ fp </> unpack t
+hatexSyntax fp (IMG t) = center $ includegraphics [] $ forwardSlashes $ fp </> unpack t
 hatexSyntax _ LaTeX = latex
 hatexSyntax _ HaTeX = hatex
 hatexSyntax _  (Math t) = math $ raw t
 hatexSyntax fp (Footnote s) = footnote $ hatexSyntax fp s
 hatexSyntax fp (Append s1 s2) = hatexSyntax fp s1 <> hatexSyntax fp s2
 hatexSyntax _ Empty = mempty
+
+forwardSlashes :: String -> String
+forwardSlashes = fmap $ \c -> if c == '\\' then '/' else c
 
 thePreamble :: LaTeX
 thePreamble =
diff --git a/hatex-guide.cabal b/hatex-guide.cabal
--- a/hatex-guide.cabal
+++ b/hatex-guide.cabal
@@ -1,5 +1,5 @@
 Name: hatex-guide
-Version: 1.0.1.5
+Version: 1.0.1.6
 Author: Daniel Díaz
 Build-type: Custom
 Category: LaTeX
