Changed hspace in last commit to 0.333em.

This seems to match the spacing of ~ exactly.
This commit is contained in:
John MacFarlane 2013-01-11 20:44:39 -08:00
parent c29a1942d0
commit f07ce6fead

View file

@ -530,7 +530,7 @@ inlineListToLaTeX lst =
fixLineInitialSpaces (x:xs) = x : fixLineInitialSpaces xs
fixNbsps s = let (ys,zs) = span (=='\160') s
in replicate (length ys) hspace ++ [Str zs]
hspace = RawInline "latex" "\\hspace*{0.4em}"
hspace = RawInline "latex" "\\hspace*{0.333em}"
isQuoted :: Inline -> Bool
isQuoted (Quoted _ _) = True