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