module Language.Drasil.Config(
numberedSections,hyperSettings,fontSize,bibFname,
verboseDDDescription,
StyleGuide(..),bibStyleH,bibStyleT,colAwidth,colBwidth,
numberedDDEquations,numberedTMEquations) where
fontSize :: Int
fontSize :: Int
fontSize = 12
verboseDDDescription :: Bool
verboseDDDescription :: Bool
verboseDDDescription = Bool
True
numberedDDEquations :: Bool
numberedDDEquations :: Bool
numberedDDEquations = Bool
False
numberedTMEquations :: Bool
numberedTMEquations :: Bool
numberedTMEquations = Bool
False
numberedSections :: Bool
numberedSections :: Bool
numberedSections = Bool
True
colAwidth, colBwidth :: Double
colAwidth :: Double
colAwidth = 0.13
colBwidth :: Double
colBwidth = 0.82
hyperSettings :: String
hyperSettings :: String
hyperSettings =
"bookmarks=true,"
String -> String -> String
forall a. [a] -> [a] -> [a]
++ "colorlinks=true,"
String -> String -> String
forall a. [a] -> [a] -> [a]
++ "linkcolor=red,"
String -> String -> String
forall a. [a] -> [a] -> [a]
++ "citecolor=blue,"
String -> String -> String
forall a. [a] -> [a] -> [a]
++ "filecolor=magenta,"
String -> String -> String
forall a. [a] -> [a] -> [a]
++ "urlcolor=cyan"
data StyleGuide = MLA | APA | Chicago
useStyleTeX :: StyleGuide -> String
useStyleTeX :: StyleGuide -> String
useStyleTeX MLA = "ieeetr"
useStyleTeX APA = "apalike"
useStyleTeX Chicago = "plain"
bibStyleT :: String
bibStyleT :: String
bibStyleT = StyleGuide -> String
useStyleTeX StyleGuide
bibStyle
bibStyleH :: StyleGuide
bibStyleH :: StyleGuide
bibStyleH = StyleGuide
bibStyle
bibStyle :: StyleGuide
bibStyle :: StyleGuide
bibStyle = StyleGuide
MLA
bibFname :: String
bibFname :: String
bibFname = "bibfile"