{-# LANGUAGE CPP, ScopedTypeVariables #-}
module Text.TeXMath.Shared
( getMMLType
, getTextType
, getLaTeXTextCommand
, getScalerCommand
, getScalerValue
, scalers
, getSpaceWidth
, getSpaceChars
, getDiacriticalCommand
, diacriticals
, getOperator
, readLength
, fixTree
, isEmpty
, empty
, handleDownup
) where
import Text.TeXMath.Types
import Text.TeXMath.TeX
import qualified Data.Map as M
import qualified Data.Set as Set
import Data.Maybe (fromMaybe)
import Data.Ratio ((%))
import Data.List (sort)
import Control.Applicative ((<$>), (<*>))
import Control.Monad (guard)
import Text.Parsec (Parsec, parse, getInput, digit, char, many1, option)
import Data.Generics (everywhere, mkT)
removeNesting :: Exp -> Exp
removeNesting (EDelimited o c [Right (EDelimited "" "" xs)]) = EDelimited o c xs
removeNesting (EDelimited "" "" [x]) = either (ESymbol Ord) id x
removeNesting (EGrouped [x]) = x
removeNesting x = x
removeEmpty :: [Exp] -> [Exp]
removeEmpty xs = filter (not . isEmpty) xs
empty :: Exp
empty = EGrouped []
isEmpty :: Exp -> Bool
isEmpty (EGrouped []) = True
isEmpty _ = False
fixTree :: Exp -> Exp
fixTree = everywhere (mkT removeNesting) . everywhere (mkT removeEmpty)
getMMLType :: TextType -> String
getMMLType t = fromMaybe "normal" (fst <$> M.lookup t textTypesMap)
getLaTeXTextCommand :: Env -> TextType -> String
getLaTeXTextCommand e t =
let textCmd = fromMaybe "\\mathrm"
(snd <$> M.lookup t textTypesMap) in
if textPackage textCmd e
then textCmd
else fromMaybe "\\mathrm" (M.lookup textCmd alts)
getTextType :: String -> TextType
getTextType s = fromMaybe TextNormal (M.lookup s revTextTypesMap)
getScalerCommand :: Rational -> Maybe String
getScalerCommand width =
case sort [ (w, cmd) | (cmd, w) <- scalers, w >= width ] of
((_,cmd):_) -> Just cmd
_ -> Nothing
getScalerValue :: String -> Maybe Rational
getScalerValue command = lookup command scalers
getDiacriticalCommand :: Position -> String -> Maybe String
getDiacriticalCommand pos symbol = do
command <- M.lookup symbol diaMap
guard (not $ command `elem` unavailable)
let below = command `elem` under
case pos of
Under -> if below then Just command else Nothing
Over -> if not below then Just command else Nothing
where
diaMap = M.fromList diacriticals
getOperator :: Exp -> Maybe TeX
getOperator op = fmap ControlSeq $ M.lookup op operators
operators :: M.Map Exp String
operators = M.fromList
[ (EMathOperator "arccos", "\\arccos")
, (EMathOperator "arcsin", "\\arcsin")
, (EMathOperator "arctan", "\\arctan")
, (EMathOperator "arg", "\\arg")
, (EMathOperator "cos", "\\cos")
, (EMathOperator "cosh", "\\cosh")
, (EMathOperator "cot", "\\cot")
, (EMathOperator "coth", "\\coth")
, (EMathOperator "csc", "\\csc")
, (EMathOperator "deg", "\\deg")
, (EMathOperator "det", "\\det")
, (EMathOperator "dim", "\\dim")
, (EMathOperator "exp", "\\exp")
, (EMathOperator "gcd", "\\gcd")
, (EMathOperator "hom", "\\hom")
, (EMathOperator "inf", "\\inf")
, (EMathOperator "ker", "\\ker")
, (EMathOperator "lg", "\\lg")
, (EMathOperator "lim", "\\lim")
, (EMathOperator "liminf", "\\liminf")
, (EMathOperator "limsup", "\\limsup")
, (EMathOperator "ln", "\\ln")
, (EMathOperator "log", "\\log")
, (EMathOperator "max", "\\max")
, (EMathOperator "min", "\\min")
, (EMathOperator "Pr", "\\Pr")
, (EMathOperator "sec", "\\sec")
, (EMathOperator "sin", "\\sin")
, (EMathOperator "sinh", "\\sinh")
, (EMathOperator "sup", "\\sup")
, (EMathOperator "tan", "\\tan")
, (EMathOperator "tanh", "\\tanh") ]
readLength :: String -> Maybe Rational
readLength s = do
(n, unit) <- case (parse parseLength "" s) of
Left _ -> Nothing
Right v -> Just v
(n *) <$> unitToMultiplier unit
parseLength :: Parsec String () (Rational, String)
parseLength = do
neg <- option "" ((:[]) <$> char '-')
dec <- many1 digit
frac <- option "" ((:) <$> char '.' <*> many1 digit)
unit <- getInput
let [(n :: Double, [])] = reads (neg ++ dec ++ frac) :: [(Double, String)]
return (round (n * 18) % 18, unit)
textTypesMap :: M.Map TextType (String, String)
textTypesMap = M.fromList textTypes
revTextTypesMap :: M.Map String TextType
revTextTypesMap = M.fromList $ map (\(k, (v,_)) -> (v,k)) textTypes
textTypes :: [(TextType, (String, String))]
textTypes =
[ ( TextNormal , ("normal", "\\mathrm"))
, ( TextBold , ("bold", "\\mathbf"))
, ( TextItalic , ("italic","\\mathit"))
, ( TextMonospace , ("monospace","\\mathtt"))
, ( TextSansSerif , ("sans-serif","\\mathsf"))
, ( TextDoubleStruck , ("double-struck","\\mathbb"))
, ( TextScript , ("script","\\mathcal"))
, ( TextFraktur , ("fraktur","\\mathfrak"))
, ( TextBoldItalic , ("bold-italic","\\mathbfit"))
, ( TextSansSerifBold , ("bold-sans-serif","\\mathbfsfup"))
, ( TextSansSerifBoldItalic , ("sans-serif-bold-italic","\\mathbfsfit"))
, ( TextBoldScript , ("bold-script","\\mathbfscr"))
, ( TextBoldFraktur , ("bold-fraktur","\\mathbffrak"))
, ( TextSansSerifItalic , ("sans-serif-italic","\\mathsfit")) ]
unicodeMath, base :: Set.Set String
unicodeMath = Set.fromList
["\\mathbfit", "\\mathbfsfup", "\\mathbfsfit", "\\mathbfscr",
"\\mathbffrak", "\\mathsfit"]
base = Set.fromList
["\\mathbb", "\\mathrm", "\\mathbf", "\\mathit", "\\mathsf",
"\\mathtt", "\\mathfrak", "\\mathcal"]
alts :: M.Map String String
alts = M.fromList
[ ("\\mathbfit", "\\mathbf")
, ("\\mathbfsfup", "\\mathbf")
, ("\\mathbfsfit", "\\mathbf")
, ("\\mathbfscr", "\\mathcal")
, ("\\mathbffrak", "\\mathfrak")
, ("\\mathsfit", "\\mathsf")
]
textPackage :: String -> [String] -> Bool
textPackage s e
| s `Set.member` unicodeMath = "unicode-math" `elem` e
| s `Set.member` base = True
| otherwise = True
scalers :: [(String, Rational)]
scalers =
[ ("\\bigg", widthbigg)
, ("\\Bigg", widthBigg)
, ("\\big", widthbig)
, ("\\Big", widthBig)
, ("\\biggr", widthbigg)
, ("\\Biggr", widthBigg)
, ("\\bigr", widthbig)
, ("\\Bigr", widthBig)
, ("\\biggl", widthbigg)
, ("\\Biggl", widthBigg)
, ("\\bigl", widthbig)]
where widthbig = 6 / 5
widthBig = 9 / 5
widthbigg = 12 / 5
widthBigg = 3
getSpaceWidth :: Char -> Maybe Rational
getSpaceWidth ' ' = Just (4/18)
getSpaceWidth '\xA0' = Just (4/18)
getSpaceWidth '\x2000' = Just (1/2)
getSpaceWidth '\x2001' = Just 1
getSpaceWidth '\x2002' = Just (1/2)
getSpaceWidth '\x2003' = Just 1
getSpaceWidth '\x2004' = Just (1/3)
getSpaceWidth '\x2005' = Just (4/18)
getSpaceWidth '\x2006' = Just (1/6)
getSpaceWidth '\x2007' = Just (1/3)
getSpaceWidth '\x2008' = Just (1/6)
getSpaceWidth '\x2009' = Just (1/6)
getSpaceWidth '\x200A' = Just (1/9)
getSpaceWidth '\x200B' = Just 0
getSpaceWidth '\x202F' = Just (3/18)
getSpaceWidth '\x205F' = Just (4/18)
getSpaceWidth _ = Nothing
getSpaceChars :: Rational -> [Char]
getSpaceChars n =
case n of
_ | n < 0 -> "\x200B"
| n <= 2/18 -> "\x200A"
| n <= 3/18 -> "\x2006"
| n <= 4/18 -> "\xA0"
| n <= 5/18 -> "\x2005"
| n <= 7/18 -> "\x2004"
| n <= 9/18 -> "\x2000"
| n < 1 -> '\x2000' : getSpaceChars (n - (1/2))
| n == 1 -> "\x2001"
| otherwise -> '\x2001' : getSpaceChars (n - 1)
under :: [String]
under = ["\\underbrace", "\\underline", "\\underbar", "\\underbracket"]
unavailable :: [String]
unavailable = ["\\overbracket", "\\underbracket"]
diacriticals :: [(String, String)]
diacriticals =
[ ("\x00B4", "\\acute")
, ("\x0301", "\\acute")
, ("\x0060", "\\grave")
, ("\x0300", "\\grave")
, ("\x02D8", "\\breve")
, ("\x0306", "\\breve")
, ("\x02C7", "\\check")
, ("\x030C", "\\check")
, ("\x307", "\\dot")
, ("\x308", "\\ddot")
, ("\x20DB", "\\dddot")
, ("\x20DC", "\\ddddot")
, ("\x00B0", "\\mathring")
, ("\x030A", "\\mathring")
, ("\x20D7", "\\vec")
, ("\x20D7", "\\overrightarrow")
, ("\x20D6", "\\overleftarrow")
, ("\x005E", "\\hat")
, ("\x02C6", "\\widehat")
, ("\x0302", "\\widehat")
, ("\x02DC", "\\widetilde")
, ("\x0303", "\\tilde")
, ("\x0303", "\\widetilde")
, ("\x0304", "\\bar")
, ("\x203E", "\\bar")
, ("\x23DE", "\\overbrace")
, ("\x23B4", "\\overbracket")
, ("\x00AF", "\\overline")
, ("\x0305", "\\overline")
, ("\x23DF", "\\underbrace")
, ("\x23B5", "\\underbracket")
, ("\x0332", "\\underline")
, ("\x0333", "\\underbar")
]
unitToMultiplier :: String -> Maybe Rational
unitToMultiplier s = M.lookup s units
where
units = M.fromList [ ( "pt" , 10)
, ( "mm" , (351/10))
, ( "cm" , (35/100))
, ( "in" , (14/100))
, ( "ex" , (232/100))
, ( "em" , 1)
, ( "mu" , 18)
, ( "dd" , (93/100))
, ( "bp" , (996/1000))
, ( "pc" , (83/100)) ]
handleDownup :: DisplayType -> Exp -> Exp
handleDownup DisplayInline (EUnder True x y) = ESub x y
handleDownup DisplayInline (EOver True x y) = ESuper x y
handleDownup DisplayInline (EUnderover True x y z) = ESubsup x y z
handleDownup DisplayBlock (EUnder True x y) = EUnder False x y
handleDownup DisplayBlock (EOver True x y) = EOver False x y
handleDownup DisplayBlock (EUnderover True x y z) = EUnderover False x y z
handleDownup _ x = x