pandoc-crossref-0.2.7.0: lib/Text/Pandoc/CrossRef/Util/ModifyMeta.hs
module Text.Pandoc.CrossRef.Util.ModifyMeta
(
modifyMeta
) where
import Data.List (intercalate)
import Text.Pandoc
import Text.Pandoc.Builder
import Text.Pandoc.CrossRef.Util.Options
import Text.Pandoc.CrossRef.Util.Meta
import Text.Pandoc.CrossRef.Util.Util
modifyMeta :: Options -> Meta -> Meta
modifyMeta opts meta
| isFormat "latex" (outFormat opts)
= setMeta "header-includes"
(headerInc $ lookupMeta "header-includes" meta)
meta
| otherwise = meta
where
headerInc :: Maybe MetaValue -> MetaValue
headerInc Nothing = MetaList incList
headerInc (Just (MetaList x)) = MetaList $ x ++ incList
headerInc (Just x) = MetaList $ x:incList
incList = map MetaString $
[ "\\makeatletter" ] ++
subfig ++
floatnames ++
listnames ++
[ x | x <- codelisting, not $ listings opts] ++
lolcommand ++
[ x | x <- cleveref, cref opts] ++
[ x | x <- cleverefCodelisting, cref opts && not (listings opts)] ++
[ "\\makeatother" ]
where
subfig = [
usepackage [] "subfig"
, usepackage [] "caption"
, "\\captionsetup[subfloat]{margin=0.5em}"
]
floatnames = [
"\\AtBeginDocument{%"
, "\\renewcommand*\\figurename{"++metaString "figureTitle"++"}"
, "\\renewcommand*\\tablename{"++metaString "tableTitle"++"}"
, "}"
]
listnames = [
"\\AtBeginDocument{%"
, "\\renewcommand*\\listfigurename{"++metaString' "lofTitle"++"}"
, "\\renewcommand*\\listtablename{"++metaString' "lotTitle"++"}"
, "}"
]
codelisting = [
usepackage [] "float"
, "\\floatstyle{ruled}"
, "\\@ifundefined{c@chapter}{\\newfloat{codelisting}{h}{lop}}{\\newfloat{codelisting}{h}{lop}[chapter]}"
, "\\floatname{codelisting}{"++metaString "listingTitle"++"}"
]
lolcommand
| listings opts = [
"\\newcommand*\\listoflistings\\lstlistoflistings"
, "\\AtBeginDocument{%"
, "\\renewcommand*{\\lstlistlistingname}{"++metaString' "lolTitle"++"}"
, "}"
]
| otherwise = ["\\newcommand*\\listoflistings{\\listof{codelisting}{"++metaString' "lolTitle"++"}}"]
cleveref = [
usepackage cleverefOpts "cleveref"
, "\\crefname{figure}" ++ prefix figPrefix False
, "\\crefname{table}" ++ prefix tblPrefix False
, "\\crefname{equation}" ++ prefix eqnPrefix False
, "\\crefname{listing}" ++ prefix lstPrefix False
, "\\crefname{section}" ++ prefix secPrefix False
, "\\Crefname{figure}" ++ prefix figPrefix True
, "\\Crefname{table}" ++ prefix tblPrefix True
, "\\Crefname{equation}" ++ prefix eqnPrefix True
, "\\Crefname{listing}" ++ prefix lstPrefix True
, "\\Crefname{section}" ++ prefix secPrefix True
]
cleverefCodelisting = [
"\\crefname{codelisting}{\\cref@listing@name}{\\cref@listing@name@plural}"
, "\\Crefname{codelisting}{\\Cref@listing@name}{\\Cref@listing@name@plural}"
]
cleverefOpts | nameInLink opts = [ "nameinlink" ]
| otherwise = []
usepackage [] p = "\\@ifpackageloaded{"++p++"}{}{\\usepackage{"++p++"}}"
usepackage xs p = "\\@ifpackageloaded{"++p++"}{}{\\usepackage"++o++"{"++p++"}}"
where o = "[" ++ intercalate "," xs ++ "]"
toLatex = writeLaTeX def . Pandoc nullMeta . return . Plain
metaString s = toLatex $ getMetaInlines s meta
metaString' s = toLatex [Str $ getMetaString s meta]
prefix f uc = "{" ++ toLatex (f opts uc 0) ++ "}" ++
"{" ++ toLatex (f opts uc 1) ++ "}"