diff --git a/changelog b/changelog
--- a/changelog
+++ b/changelog
@@ -1,3 +1,26 @@
+texmath (0.12.8)
+
+  * Expose Text.TeXMath.Shared [API change]
+
+  * Typst writer: Fix bug where 's' turned into 'space' (#219).
+
+  * Typst writer: Fix handling of overline (#214).
+
+  * Typst writer: Fix underbrace (#217).
+
+  * Typst writer: Improve some accents (#216).
+
+  * TeX writer: don't include \\ on last line of matrix.
+
+  * TeX writer: Remove escaping of spaces inside \text{}.
+    It isn't needed, and it causes problems in MathJax rendering.
+
+  * TeX reader: allow empty matrices.
+
+  * MathML writer: Fix rendering of vectors (#218).
+
+  * Depend on external typst-symbols package.
+
 texmath (0.12.7.1)
 
  * Typst writer:
diff --git a/src/Text/TeXMath/Readers/TeX.hs b/src/Text/TeXMath/Readers/TeX.hs
--- a/src/Text/TeXMath/Readers/TeX.hs
+++ b/src/Text/TeXMath/Readers/TeX.hs
@@ -424,9 +424,9 @@
   return '\n'
 
 arrayLine :: TP ArrayLine
-arrayLine = notFollowedBy (ctrlseq "end" >> return '\n') >>
+arrayLine =
   sepBy1 (unGrouped <$>
-    manyExp (try (ignorable' *> notFollowedBy endLine) *>
+    manyExp (try (ignorable' *> notFollowedBy (('\n' <$ ctrlseq "end") <|> endLine)) *>
                expr <*
                ignorable')) (symbol "&")
   where ignorable' = ignorable >>
@@ -489,7 +489,7 @@
 
 matrixWith :: Text -> Text -> TP Exp
 matrixWith opendelim closedelim = do
-  lines' <- sepEndBy1 arrayLine endLineAMS
+  lines' <- sepEndBy arrayLine endLineAMS
   let aligns = alignsFromRows AlignCenter lines'
   return $ if T.null opendelim && T.null closedelim
               then EArray aligns lines'
diff --git a/src/Text/TeXMath/Writers/MathML.hs b/src/Text/TeXMath/Writers/MathML.hs
--- a/src/Text/TeXMath/Writers/MathML.hs
+++ b/src/Text/TeXMath/Writers/MathML.hs
@@ -186,6 +186,8 @@
    ESuper x y       -> unode "msup" $ map (showExp tt) [x, y]
    ESubsup x y z    -> unode "msubsup" $ map (showExp tt) [x, y, z]
    EUnder _ x y     -> unode "munder" [showExp tt x, showExp' tt y]
+   EOver _ x (ESymbol Accent "\8407") -- see #218, gives better rendering for vectors
+                    -> unode "mover" [showExp tt x, showExp' tt (ESymbol Accent "\8594")]
    EOver _ x y      -> unode "mover" [showExp tt x, showExp' tt y]
    EUnderover _ x y z -> unode "munderover"
                           [showExp tt x, showExp' tt y, showExp' tt z]
diff --git a/src/Text/TeXMath/Writers/TeX.hs b/src/Text/TeXMath/Writers/TeX.hs
--- a/src/Text/TeXMath/Writers/TeX.hs
+++ b/src/Text/TeXMath/Writers/TeX.hs
@@ -269,7 +269,9 @@
   | otherwise = writeExp e
 writeExp (EText ttype s) = do
   let txtcmd = getTextCommand ttype
-  case map escapeLaTeX (T.unpack s) of
+  let fixSpace (Literal "\\ ") = Literal " "
+      fixSpace x = x
+  case map (fixSpace . escapeLaTeX) (T.unpack s) of
        []   -> return ()
        xs   -> tell $ txtcmd (Grouped xs)
 writeExp (EStyled ttype es) = do
@@ -299,7 +301,7 @@
   unless (null aligns) $
      tell [Grouped [Literal columnAligns]]
   tell [Token '\n']
-  mapM_ row rows
+  doRows rows
   tell [ControlSeq "\\end", Grouped [Literal name]]
   where
     columnAligns = T.pack $ map alignmentToLetter aligns
@@ -307,10 +309,12 @@
     alignmentToLetter AlignCenter = 'c'
     alignmentToLetter AlignRight = 'r'
 
-row :: ArrayLine -> Math ()
-row []     = tell [Space, Literal "\\\\", Token '\n']
-row [c]    = cell c >> row []
-row (c:cs) = cell c >> tell [Space, Token '&', Space] >> row cs
+doRows :: [ArrayLine] -> Math ()
+doRows []          = return ()
+doRows ([]:[])     = tell [Token '\n']
+doRows ([]:ls)     = tell [Space, Literal "\\\\", Token '\n'] >> doRows ls
+doRows ([c]:ls)    = cell c >> doRows ([]:ls)
+doRows ((c:cs):ls) = cell c >> tell [Space, Token '&', Space] >> doRows (cs:ls)
 
 cell :: [Exp] -> Math ()
 cell = mapM_ writeExp
diff --git a/src/Text/TeXMath/Writers/Typst.hs b/src/Text/TeXMath/Writers/Typst.hs
--- a/src/Text/TeXMath/Writers/Typst.hs
+++ b/src/Text/TeXMath/Writers/Typst.hs
@@ -25,6 +25,7 @@
 import qualified Data.Text as T
 import Text.TeXMath.Types
 import qualified Text.TeXMath.Shared as S
+import Typst.Symbols (typstSymbols)
 import Data.Generics (everywhere, mkT)
 import Data.Text (Text)
 import Data.Char (isDigit, isAlpha)
@@ -82,7 +83,7 @@
 writeExp :: Exp -> Text
 writeExp (ENumber s) = s
 writeExp (ESymbol _t s) =
-  maybe (esc s) id $ M.lookup s typstSymbols
+  maybe (esc s) id $ M.lookup s typstSymbolMap
 writeExp (EIdentifier s) =
   if T.length s == 1
      then writeExp (ESymbol Ord s)
@@ -109,17 +110,19 @@
   "overbrace(" <> writeExp b <> ", " <> writeExp e1 <> ")"
 writeExp (EOver _ (EOver _ b (ESymbol TOver "\9140")) e1) =
   "overbracket(" <> writeExp b <> ", " <> writeExp e1 <> ")"
-writeExp (EOver _ (EOver _ b (ESymbol TOver "_")) e1) =
-  "overline(" <> writeExp b <> ", " <> writeExp e1 <> ")"
 writeExp (EOver _convertible b e1) =
   case e1 of
     ESymbol Accent "`" -> "grave" <> inParens (writeExp b)
+    ESymbol Accent "\768" -> "grave" <> inParens (writeExp b)
     ESymbol Accent "\xb4" -> "acute" <> inParens (writeExp b)
     ESymbol Accent "^" -> "hat" <> inParens (writeExp b)
+    ESymbol Accent "\770" -> "hat" <> inParens (writeExp b)
     ESymbol Accent "~" -> "tilde" <> inParens (writeExp b)
+    ESymbol Accent "\771" -> "tilde" <> inParens (writeExp b)
     ESymbol Accent "\xaf" -> "macron" <> inParens (writeExp b)
     ESymbol Accent "\x2d8" -> "breve" <> inParens (writeExp b)
     ESymbol Accent "." -> "dot" <> inParens (writeExp b)
+    ESymbol Accent "\775" -> "dot" <> inParens (writeExp b)
     ESymbol Accent "\xa8" -> "diaer" <> inParens (writeExp b)
     ESymbol Accent "\x2218" -> "circle" <> inParens (writeExp b)
     ESymbol Accent "\x2dd" -> "acute.double" <> inParens (writeExp b)
@@ -128,18 +131,16 @@
     ESymbol Accent "\x2190" -> "<-" <> inParens (writeExp b)
     ESymbol TOver "\9182" -> "overbrace(" <> writeExp b <> ")"
     ESymbol TOver "\9140" -> "overbracket(" <> writeExp b <> ")"
-    ESymbol TOver "_" -> "overline(" <> writeExp b <> ")"
+    ESymbol TOver "\175" -> "overline(" <> writeExp b <> ")"
     _ -> writeExpB b <> "^" <> writeExpS e1
-writeExp (EUnder _ (EUnder _ b (ESymbol TUnder "_")) e1) =
-  "underline(" <> writeExp b <> ", " <> writeExp e1 <> ")"
-writeExp (EUnder _ (EUnder _ b (ESymbol TUnder "\9182")) e1) =
+writeExp (EUnder _ (EUnder _ b (ESymbol TUnder "\9183")) e1) =
   "underbrace(" <> writeExp b <> ", " <> writeExp e1 <> ")"
 writeExp (EUnder _ (EUnder _ b (ESymbol TUnder "\9140")) e1) =
   "underbrace(" <> writeExp b <> ", " <> writeExp e1 <> ")"
 writeExp (EUnder _convertible b e1) =
   case e1 of
     ESymbol TUnder "_" -> "underline(" <> writeExp b <> ")"
-    ESymbol TUnder "\9182" -> "underbrace(" <> writeExp b <> ")"
+    ESymbol TUnder "\9183" -> "underbrace(" <> writeExp b <> ")"
     ESymbol TUnder "\9140" -> "underbracket(" <> writeExp b <> ")"
     _ -> writeExpB b <> "_" <> writeExpS e1
 writeExp (EUnderover convertible b e1 e2) =
@@ -244,785 +245,5 @@
 tshow :: Show a => a -> Text
 tshow = T.pack . show
 
-typstSymbols :: M.Map Text Text
-typstSymbols = M.fromList
-  [ ("\x1d538","AA")
-  , ("\x391","Alpha")
-  , ("\x1d539","BB")
-  , ("\x392","Beta")
-  , ("\x2102","CC")
-  , ("\x3A7","Chi")
-  , ("\x1d53b","DD")
-  , ("\x394","Delta")
-  , ("\x1d53c","EE")
-  , ("\x395","Epsilon")
-  , ("\x397","Eta")
-  , ("\x1d53d","FF")
-  , ("\x1d53e","GG")
-  , ("\x393","Gamma")
-  , ("\x210d","HH")
-  , ("\x1d540","II")
-  , ("\x2111","Im")
-  , ("\x399","Iota")
-  , ("\x1d541","JJ")
-  , ("\x1d542","KK")
-  , ("\x3CF","Kai")
-  , ("\x39A","Kappa")
-  , ("\x1d543","LL")
-  , ("\x39B","Lambda")
-  , ("\x1d544","MM")
-  , ("\x39C","Mu")
-  , ("\x2115","NN")
-  , ("\x39D","Nu")
-  , ("\x1d546","OO")
-  , ("\x3A9","Omega")
-  , ("\x39F","Omicron")
-  , ("\x2119","PP")
-  , ("\x3A6","Phi")
-  , ("\x3A0","Pi")
-  , ("\x3A8","Psi")
-  , ("\x211a","QQ")
-  , ("\x211d","RR")
-  , ("\x211c","Re")
-  , ("\x3A1","Rho")
-  , ("\x1d54a","SS")
-  , ("\x3A3","Sigma")
-  , ("\x1d54b","TT")
-  , ("\x3A4","Tau")
-  , ("\x398","Theta")
-  , ("\x1d54c","UU")
-  , ("\x3A5","Upsilon")
-  , ("\x1d54d","VV")
-  , ("\x1d54e","WW")
-  , ("\x1d54f","XX")
-  , ("\x39E","Xi")
-  , ("\x1d550","YY")
-  , ("\x2124","ZZ")
-  , ("\x396","Zeta")
-  , ("\xb4","acute")
-  , ("\x2dd","acute.double")
-  , ("\x5d0","alef")
-  , ("\x3b1","alpha")
-  , ("&","amp")
-  , ("\x214b","amp.inv")
-  , ("\x2227","and")
-  , ("\x22c0","and.big")
-  , ("\x22cf","and.curly")
-  , ("\x27d1","and.dot")
-  , ("\x2a53","and.double")
-  , ("\x2220","angle")
-  , ("\x2329","angle.l")
-  , ("\x232a","angle.r")
-  , ("\x300a","angle.l.double")
-  , ("\x300b","angle.r.double")
-  , ("\x299f","angle.acute")
-  , ("\x2221","angle.arc")
-  , ("\x299b","angle.arc.rev")
-  , ("\x29a3","angle.rev")
-  , ("\x221f","angle.right")
-  , ("\11262","angle.right.rev")
-  , ("\x22be","angle.right.arc")
-  , ("\x299d","angle.right.dot")
-  , ("\x299c","angle.right.sq")
-  , ("\x27c0","angle.spatial")
-  , ("\x2222","angle.spheric")
-  , ("\x29a0","angle.spheric.rev")
-  , ("\x29a1","angle.spheric.top")
-  , ("\x212B","angstrom")
-  , ("\x2248","approx")
-  , ("\x224a","approx.eq")
-  , ("\x2249","approx.not")
-  , ("\x2192","arrow.r")
-  , ("\x27fc","arrow.r.long.bar")
-  , ("\x21a6","arrow.r.bar")
-  , ("\x2937","arrow.r.curve")
-  , ("\x21e2","arrow.r.dashed")
-  , ("\x2911","arrow.r.dotted")
-  , ("\x21d2","arrow.r.double")
-  , ("\x2907","arrow.r.double.bar")
-  , ("\x27f9","arrow.r.double.long")
-  , ("\x27fe","arrow.r.double.long.bar")
-  , ("\x21cf","arrow.r.double.not")
-  , ("\x27a1","arrow.r.filled")
-  , ("\x21aa","arrow.r.hook")
-  , ("\x27f6","arrow.r.long")
-  , ("\x27ff","arrow.r.long.squiggly")
-  , ("\x21ac","arrow.r.loop")
-  , ("\x219b","arrow.r.not")
-  , ("\x2b46","arrow.r.quad")
-  , ("\x21dd","arrow.r.squiggly")
-  , ("\x21e5","arrow.r.stop")
-  , ("\x21e8","arrow.r.stroked")
-  , ("\x21a3","arrow.r.tail")
-  , ("\x21db","arrow.r.triple")
-  , ("\x2905","arrow.r.twohead.bar")
-  , ("\x21a0","arrow.r.twohead")
-  , ("\x219d","arrow.r.wave")
-  , ("\x2190","arrow.l")
-  , ("\x21a4","arrow.l.bar")
-  , ("\x2936","arrow.l.curve")
-  , ("\x21e0","arrow.l.dashed")
-  , ("\x2b38","arrow.l.dotted")
-  , ("\x21d0","arrow.l.double")
-  , ("\x2906","arrow.l.double.bar")
-  , ("\x27f8","arrow.l.double.long")
-  , ("\x27fd","arrow.l.double.long.bar")
-  , ("\x21cd","arrow.l.double.not")
-  , ("\x2b05","arrow.l.filled")
-  , ("\x21a9","arrow.l.hook")
-  , ("\x27f5","arrow.l.long")
-  , ("\x27fb","arrow.l.long.bar")
-  , ("\x2b33","arrow.l.long.squiggly")
-  , ("\x21ab","arrow.l.loop")
-  , ("\x219a","arrow.l.not")
-  , ("\x2b45","arrow.l.quad")
-  , ("\x21dc","arrow.l.squiggly")
-  , ("\x21e4","arrow.l.stop")
-  , ("\x21e6","arrow.l.stroked")
-  , ("\x21a2","arrow.l.tail")
-  , ("\x21da","arrow.l.triple")
-  , ("\x2b36","arrow.l.twohead.bar")
-  , ("\x219e","arrow.l.twohead")
-  , ("\x219c","arrow.l.wave")
-  , ("\x2191","arrow.t")
-  , ("\x21a5","arrow.t.bar")
-  , ("\x2934","arrow.t.curve")
-  , ("\x21e1","arrow.t.dashed")
-  , ("\x21d1","arrow.t.double")
-  , ("\x2b06","arrow.t.filled")
-  , ("\x27f0","arrow.t.quad")
-  , ("\x2912","arrow.t.stop")
-  , ("\x21e7","arrow.t.stroked")
-  , ("\x290a","arrow.t.triple")
-  , ("\x219f","arrow.t.twohead")
-  , ("\x2193","arrow.b")
-  , ("\x21a7","arrow.b.bar")
-  , ("\x2935","arrow.b.curve")
-  , ("\x21e3","arrow.b.dashed")
-  , ("\x21d3","arrow.b.double")
-  , ("\x2b07","arrow.b.filled")
-  , ("\x27f1","arrow.b.quad")
-  , ("\x2913","arrow.b.stop")
-  , ("\x21e9","arrow.b.stroked")
-  , ("\x290b","arrow.b.triple")
-  , ("\x21a1","arrow.b.twohead")
-  , ("\x2194","arrow.l.r")
-  , ("\x21d4","arrow.l.r.double")
-  , ("\x27fa","arrow.l.r.double.long")
-  , ("\x21ce","arrow.l.r.double.not")
-  , ("\x2b0c","arrow.l.r.filled")
-  , ("\x27f7","arrow.l.r.long")
-  , ("\x21ae","arrow.l.r.not")
-  , ("\x2b04","arrow.l.r.stroked")
-  , ("\x21ad","arrow.l.r.wave")
-  , ("\x2195","arrow.t.b")
-  , ("\x21d5","arrow.t.b.double")
-  , ("\x2b0d","arrow.t.b.filled")
-  , ("\x21f3","arrow.t.b.stroked")
-  , ("\x2197","arrow.tr")
-  , ("\x21d7","arrow.tr.double")
-  , ("\x2b08","arrow.tr.filled")
-  , ("\x2924","arrow.tr.hook")
-  , ("\x2b00","arrow.tr.stroked")
-  , ("\x2198","arrow.br")
-  , ("\x21d8","arrow.br.double")
-  , ("\x2b0a","arrow.br.filled")
-  , ("\x2925","arrow.br.hook")
-  , ("\x2b02","arrow.br.stroked")
-  , ("\x2196","arrow.tl")
-  , ("\x21d6","arrow.tl.double")
-  , ("\x2b09","arrow.tl.filled")
-  , ("\x2923","arrow.tl.hook")
-  , ("\x2b01","arrow.tl.stroked")
-  , ("\x2199","arrow.bl")
-  , ("\x21d9","arrow.bl.double")
-  , ("\x2b0b","arrow.bl.filled")
-  , ("\x2926","arrow.bl.hook")
-  , ("\x2b03","arrow.bl.stroked")
-  , ("\x2921","arrow.tl.br")
-  , ("\x2922","arrow.tr.bl")
-  , ("\x21ba","arrow.ccw")
-  , ("\x21b6","arrow.ccw.half")
-  , ("\x21bb","arrow.cw")
-  , ("\x21b7","arrow.cw.half")
-  , ("\x21af","arrow.zigzag")
-  , ("\x2303","arrowhead.t")
-  , ("\x2304","arrowhead.b")
-  , ("\x21c9","arrows.rr")
-  , ("\x21c7","arrows.ll")
-  , ("\x21c8","arrows.tt")
-  , ("\x21ca","arrows.bb")
-  , ("\x21c6","arrows.lr")
-  , ("\x21b9","arrows.lr.stop")
-  , ("\x21c4","arrows.rl")
-  , ("\x21c5","arrows.tb")
-  , ("\x21f5","arrows.bt")
-  , ("\x21f6","arrows.rrr")
-  , ("\x2b31","arrows.lll")
-  , ("*","ast")
-  , ("\x204e","ast.low")
-  , ("\x2051","ast.double")
-  , ("\x2042","ast.triple")
-  , ("\xfe61","ast.small")
-  , ("\x2217","ast.op")
-  , ("\x229b","ast.circle")
-  , ("\x29c6","ast.sq")
-  , ("@","at")
-  , ("\\","backslash")
-  , ("\x29b8","backslash.circle")
-  , ("\x29f7","backslash.not")
-  , ("\x2610","ballot")
-  , ("\x2612","ballot.x")
-  , ("|","bar.v")
-  , ("\x2016","bar.v.double")
-  , ("\x2980","bar.v.triple")
-  , ("\xa6","bar.v.broken")
-  , ("\x29b6","bar.v.circle")
-  , ("\x2015","bar.h")
-  , ("\x2235","because")
-  , ("\x5d1","bet")
-  , ("\x3b2","beta")
-  , ("\x3d0","beta.alt")
-  , ("\x20bf","bitcoin")
-  , ("\x22a5","bot")
-  , ("{","brace.l")
-  , ("}","brace.r")
-  , ("\x23de","brace.t")
-  , ("\x23df","brace.b")
-  , ("[","bracket.l")
-  , ("]","bracket.r")
-  , ("\x23b4","bracket.t")
-  , ("\x23b5","bracket.b")
-  , ("\x2d8","breve")
-  , ("\x2038","caret")
-  , ("\x2c7","caron")
-  , ("\x2713","checkmark")
-  , ("\x1f5f8","checkmark.light")
-  , ("\x3c7","chi")
-  , ("\x25cb","circle.stroked")
-  , ("\x2218","circle.stroked.tiny")
-  , ("\x26ac","circle.stroked.small")
-  , ("\x25ef","circle.stroked.big")
-  , ("\x25cf","circle.filled")
-  , ("\x2981","circle.filled.tiny")
-  , ("\x2219","circle.filled.small")
-  , ("\x2b24","circle.filled.big")
-  , ("\x25cc","circle.dotted")
-  , ("\x229a","circle.nested")
-  , ("\x2105","co")
-  , (":","colon")
-  , ("\x2254","colon.eq")
-  , ("\x2a74","colon.double.eq")
-  , (",","comma")
-  , ("\x2201","complement")
-  , ("\x2218","compose")
-  , ("\x2217","convolve")
-  , ("\xa9","copyright")
-  , ("\x2117","copyright.sound")
-  , ("\x2020","dagger")
-  , ("\x2021","dagger.double")
-  , ("\x2013","dash.en")
-  , ("\x2014","dash.em")
-  , ("\x2012","dash.fig")
-  , ("\x301c","dash.wave")
-  , ("\x2239","dash.colon")
-  , ("\x229d","dash.circle")
-  , ("\x3030","dash.wave.double")
-  , ("\xb0","degree")
-  , ("\x2103","degree.c")
-  , ("\x2109","degree.f")
-  , ("\x3b4","delta")
-  , ("\xa8","diaer")
-  , ("\x2300","diameter")
-  , ("\x25c7","diamond.stroked")
-  , ("\x22c4","diamond.stroked.small")
-  , ("\x2b26","diamond.stroked.medium")
-  , ("\x27d0","diamond.stroked.dot")
-  , ("\x25c6","diamond.filled")
-  , ("\x2b25","diamond.filled.medium")
-  , ("\x2b29","diamond.filled.small")
-  , ("\x2202","diff")
-  , ("\xf7","div")
-  , ("\x2a38","div.circle")
-  , ("\x2223","divides")
-  , ("\x2224","divides.not")
-  , ("$","dollar")
-  , (".","dot")
-  , ("\x22c5","dot.op")
-  , ("\xb7","dot.c")
-  , ("\x2299","dot.circle")
-  , ("\x2a00","dot.circle.big")
-  , ("\x22a1","dot.square")
-  , ("\x2026","dots.h")
-  , ("\x22ef","dots.h.c")
-  , ("\x22ee","dots.v")
-  , ("\x22f1","dots.down")
-  , ("\x22f0","dots.up")
-  , ("\x2113","ell")
-  , ("\x2b2d","ellipse.stroked.h")
-  , ("\x2b2f","ellipse.stroked.v")
-  , ("\x2b2c","ellipse.filled.h")
-  , ("\x2b2e","ellipse.filled.v")
-  , ("\x3b5","epsilon")
-  , ("\x3f5","epsilon.alt")
-  , ("=","eq")
-  , ("\x225b","eq.star")
-  , ("\x229c","eq.circle")
-  , ("\x2255","eq.colon")
-  , ("\x225d","eq.def")
-  , ("\x225c","eq.delta")
-  , ("\x225a","eq.equi")
-  , ("\x2259","eq.est")
-  , ("\x22dd","eq.gt")
-  , ("\x22dc","eq.lt")
-  , ("\x225e","eq.m")
-  , ("\x2260","eq.not")
-  , ("\x22de","eq.prec")
-  , ("\x225f","eq.quest")
-  , ("\xfe66","eq.small")
-  , ("\x22df","eq.succ")
-  , ("\x3b7","eta")
-  , ("\x20ac","euro")
-  , ("!","excl")
-  , ("\x203c","excl.double")
-  , ("\xa1","excl.inv")
-  , ("\x2049","excl.quest")
-  , ("\x2203","exists")
-  , ("\x2204","exists.not")
-  , ("\x29d8","fence.l")
-  , ("\x29da","fence.l.double")
-  , ("\x29d9","fence.r")
-  , ("\x29db","fence.r.double")
-  , ("\x2999","fence.dotted")
-  , ("\x2766","floral")
-  , ("\x2619","floral.l")
-  , ("\x2767","floral.r")
-  , ("\x2200","forall")
-  , ("\x20a3","franc")
-  , ("\x3b3","gamma")
-  , ("\x5d2","gimel")
-  , ("`","grave")
-  , (">","gt")
-  , ("\x29c1","gt.circle")
-  , ("\x22d7","gt.dot")
-  , ("\x226b","gt.double")
-  , ("\x2265","gt.eq")
-  , ("\x22db","gt.eq.lt")
-  , ("\x2271","gt.eq.not")
-  , ("\x2267","gt.eqq")
-  , ("\x2277","gt.lt")
-  , ("\x2279","gt.lt.not")
-  , ("\x2269","gt.neqq")
-  , ("\x226f","gt.not")
-  , ("\x22e7","gt.ntilde")
-  , ("\xfe65","gt.small")
-  , ("\x2273","gt.tilde")
-  , ("\x2275","gt.tilde.not")
-  , ("\x22d9","gt.triple")
-  , ("\x2af8","gt.triple.nested")
-  , ("\x21c0","harpoon.rt")
-  , ("\x295b","harpoon.rt.bar")
-  , ("\x2953","harpoon.rt.stop")
-  , ("\x21c1","harpoon.rb")
-  , ("\x295f","harpoon.rb.bar")
-  , ("\x2957","harpoon.rb.stop")
-  , ("\x21bc","harpoon.lt")
-  , ("\x295a","harpoon.lt.bar")
-  , ("\x2952","harpoon.lt.stop")
-  , ("\x21bd","harpoon.lb")
-  , ("\x295e","harpoon.lb.bar")
-  , ("\x2956","harpoon.lb.stop")
-  , ("\x21bf","harpoon.tl")
-  , ("\x2960","harpoon.tl.bar")
-  , ("\x2958","harpoon.tl.stop")
-  , ("\x21be","harpoon.tr")
-  , ("\x295c","harpoon.tr.bar")
-  , ("\x2954","harpoon.tr.stop")
-  , ("\x21c3","harpoon.bl")
-  , ("\x2961","harpoon.bl.bar")
-  , ("\x2959","harpoon.bl.stop")
-  , ("\x21c2","harpoon.br")
-  , ("\x295d","harpoon.br.bar")
-  , ("\x2955","harpoon.br.stop")
-  , ("\x294e","harpoon.lt.rt")
-  , ("\x2950","harpoon.lb.rb")
-  , ("\x294b","harpoon.lb.rt")
-  , ("\x294a","harpoon.lt.rb")
-  , ("\x2951","harpoon.tl.bl")
-  , ("\x294f","harpoon.tr.br")
-  , ("\x294d","harpoon.tl.br")
-  , ("\x294c","harpoon.tr.bl")
-  , ("\x2964","harpoons.rtrb")
-  , ("\x2965","harpoons.blbr")
-  , ("\x296f","harpoons.bltr")
-  , ("\x2967","harpoons.lbrb")
-  , ("\x2962","harpoons.ltlb")
-  , ("\x21cb","harpoons.ltrb")
-  , ("\x2966","harpoons.ltrt")
-  , ("\x2969","harpoons.rblb")
-  , ("\x21cc","harpoons.rtlb")
-  , ("\x2968","harpoons.rtlt")
-  , ("\x296e","harpoons.tlbr")
-  , ("\x2963","harpoons.tltr")
-  , ("#","hash")
-  , ("^","hat")
-  , ("\x2b21","hexa.stroked")
-  , ("\x2b22","hexa.filled")
-  , ("\x2010","hyph")
-  , ("-","hyph.minus")
-  , ("\x2011","hyph.nobreak")
-  , ("\x2027","hyph.point")
-  , ("\173","hyph.soft")
-  , ("\x2261","ident")
-  , ("\x2262","ident.not")
-  , ("\x2263","ident.strict")
-  , ("\x2208","in")
-  , ("\x2209","in.not")
-  , ("\x220b","in.rev")
-  , ("\x220c","in.rev.not")
-  , ("\x220d","in.rev.small")
-  , ("\x220a","in.small")
-  , ("\x221e","infinity")
-  , ("\x222b","integral")
-  , ("\x2a17","integral.arrow.hook")
-  , ("\x2a11","integral.ccw")
-  , ("\x222e","integral.cont")
-  , ("\x2233","integral.cont.ccw")
-  , ("\x2232","integral.cont.cw")
-  , ("\x2231","integral.cw")
-  , ("\x222c","integral.double")
-  , ("\x2a0c","integral.quad")
-  , ("\x2a19","integral.sect")
-  , ("\x2a16","integral.sq")
-  , ("\x222f","integral.surf")
-  , ("\x2a18","integral.times")
-  , ("\x222d","integral.triple")
-  , ("\x2a1a","integral.union")
-  , ("\x2230","integral.vol")
-  , ("\x203d","interrobang")
-  , ("\x3b9","iota")
-  , ("\x2a1d","join")
-  , ("\x27d6","join.r")
-  , ("\x27d5","join.l")
-  , ("\x27d7","join.l.r")
-  , ("\x3d7","kai")
-  , ("\x3ba","kappa")
-  , ("\x3f0","kappa.alt")
-  , ("\x212a","kelvin")
-  , ("\x3bb","lambda")
-  , ("\x20ba","lira")
-  , ("\x25ca","lozenge.stroked")
-  , ("\x2b2b","lozenge.stroked.small")
-  , ("\x2b28","lozenge.stroked.medium")
-  , ("\x29eb","lozenge.filled")
-  , ("\x2b2a","lozenge.filled.small")
-  , ("\x2b27","lozenge.filled.medium")
-  , ("<","lt")
-  , ("\x29c0","lt.circle")
-  , ("\x22d6","lt.dot")
-  , ("\x226a","lt.double")
-  , ("\x2264","lt.eq")
-  , ("\x22da","lt.eq.gt")
-  , ("\x2270","lt.eq.not")
-  , ("\x2266","lt.eqq")
-  , ("\x2276","lt.gt")
-  , ("\x2278","lt.gt.not")
-  , ("\x2268","lt.neqq")
-  , ("\x226e","lt.not")
-  , ("\x22e6","lt.ntilde")
-  , ("\xfe64","lt.small")
-  , ("\x2272","lt.tilde")
-  , ("\x2274","lt.tilde.not")
-  , ("\x22d8","lt.triple")
-  , ("\x2af7","lt.triple.nested")
-  , ("\xaf","macron")
-  , ("\x2720","maltese")
-  , ("\x2212","minus")
-  , ("\x2296","minus.circle")
-  , ("\x2238","minus.dot")
-  , ("\x2213","minus.plus")
-  , ("\x229f","minus.square")
-  , ("\x2242","minus.tilde")
-  , ("\x2a3a","minus.triangle")
-  , ("\x22a7","models")
-  , ("\x3bc","mu")
-  , ("\x22b8","multimap")
-  , ("\x2207","nabla")
-  , ("\xac","not")
-  , ("\x1f39c","notes.up")
-  , ("\x1f39d","notes.down")
-  , ("\x2205","nothing")
-  , ("\x29b0","nothing.rev")
-  , ("\x3bd","nu")
-  , ("\x2126","ohm")
-  , ("\x2127","ohm.inv")
-  , ("\x3c9","omega")
-  , ("\x3bf","omicron")
-  , ("\x221e","oo")
-  , ("\x2228","or")
-  , ("\x22c1","or.big")
-  , ("\x22ce","or.curly")
-  , ("\x27c7","or.dot")
-  , ("\x2a54","or.double")
-  , ("\x2225","parallel")
-  , ("\x29b7","parallel.circle")
-  , ("\x2226","parallel.not")
-  , ("(","paren.l")
-  , (")","paren.r")
-  , ("\x23dc","paren.t")
-  , ("\x23dd","paren.b")
-  , ("\x2b20","penta.stroked")
-  , ("\x2b1f","penta.filled")
-  , ("%","percent")
-  , ("\x2030","permille")
-  , ("\x27c2","perp")
-  , ("\x29b9","perp.circle")
-  , ("\x20b1","peso")
-  , ("\x3c6","phi")
-  , ("\x3d5","phi.alt")
-  , ("\x3c0","pi")
-  , ("\x3d6","pi.alt")
-  , ("\xb6","pilcrow")
-  , ("\x204b","pilcrow.rev")
-  , ("\x210e","planck")
-  , ("\x210f","planck.reduce")
-  , ("+","plus")
-  , ("\x2295","plus.circle")
-  , ("\x27f4","plus.circle.arrow")
-  , ("\x2a01","plus.circle.big")
-  , ("\x2214","plus.dot")
-  , ("\xb1","plus.minus")
-  , ("\xfe62","plus.small")
-  , ("\x229e","plus.square")
-  , ("\x2a39","plus.triangle")
-  , ("\xa3","pound")
-  , ("\x227a","prec")
-  , ("\x2ab7","prec.approx")
-  , ("\x2abb","prec.double")
-  , ("\x227c","prec.eq")
-  , ("\x22e0","prec.eq.not")
-  , ("\x2ab3","prec.eqq")
-  , ("\x2ab9","prec.napprox")
-  , ("\x2ab5","prec.neqq")
-  , ("\x2280","prec.not")
-  , ("\x22e8","prec.ntilde")
-  , ("\x227e","prec.tilde")
-  , ("\x2032","prime")
-  , ("\x2035","prime.rev")
-  , ("\x2033","prime.double")
-  , ("\x2036","prime.double.rev")
-  , ("\x2034","prime.triple")
-  , ("\x2037","prime.triple.rev")
-  , ("\x2057","prime.quad")
-  , ("\x220f","product")
-  , ("\x2210","product.co")
-  , ("\x221d","prop")
-  , ("\x3c8","psi")
-  , ("\x220e","qed")
-  , ("?","quest")
-  , ("\x2047","quest.double")
-  , ("\x2048","quest.excl")
-  , ("\xbf","quest.inv")
-  , ("\"","quote.double")
-  , ("'","quote.single")
-  , ("\x201c","quote.l.double")
-  , ("\x2018","quote.l.single")
-  , ("\x201d","quote.r.double")
-  , ("\x2019","quote.r.single")
-  , ("\xab","quote.angle.l.double")
-  , ("\x2039","quote.angle.l.single")
-  , ("\xbb","quote.angle.r.double")
-  , ("\x203a","quote.angle.r.single")
-  , ("\x201f","quote.high.double")
-  , ("\x201b","quote.high.single")
-  , ("\x201e","quote.low.double")
-  , ("\x201a","quote.low.single")
-  , ("\x2236","ratio")
-  , ("\x25ad","rect.stroked.h")
-  , ("\x25af","rect.stroked.v")
-  , ("\x25ac","rect.filled.h")
-  , ("\x25ae","rect.filled.v")
-  , ("\x203b","refmark")
-  , ("\x3c1","rho")
-  , ("\x3f1","rho.alt")
-  , ("\x20bd","ruble")
-  , ("\x20b9","rupee")
-  , ("\x2229","sect")
-  , ("\x2a44","sect.and")
-  , ("\x22c2","sect.big")
-  , ("\x2a40","sect.dot")
-  , ("\x22d2","sect.double")
-  , ("\x2293","sect.sq")
-  , ("\x2a05","sect.sq.big")
-  , ("\x2a4e","sect.sq.double")
-  , ("\xa7","section")
-  , (";","semi")
-  , ("\x204f","semi.rev")
-  , ("\x2120","servicemark")
-  , ("\x5e9","shin")
-  , ("\x3c3","sigma")
-  , ("/","slash")
-  , ("\x2afd","slash.double")
-  , ("\x2afb","slash.triple")
-  , ("\x2a33","smash")
-  , ("s","space")
-  , ("\xa0","space.nobreak")
-  , ("\x2002","space.en")
-  , ("\x2003","space.quad")
-  , ("\x2004","space.third")
-  , ("\x2005","space.quarter")
-  , ("\x2006","space.sixth")
-  , ("\x205f","space.med")
-  , ("\x2007","space.fig")
-  , ("\x2008","space.punct")
-  , ("\x2009","space.thin")
-  , ("\x200a","space.hair")
-  , ("\x25a1","square.stroked")
-  , ("\x25ab","square.stroked.tiny")
-  , ("\x25fd","square.stroked.small")
-  , ("\x25fb","square.stroked.medium")
-  , ("\x2b1c","square.stroked.big")
-  , ("\x2b1a","square.stroked.dotted")
-  , ("\x25a2","square.stroked.rounded")
-  , ("\x25a0","square.filled")
-  , ("\x25aa","square.filled.tiny")
-  , ("\x25fe","square.filled.small")
-  , ("\x25fc","square.filled.medium")
-  , ("\x2b1b","square.filled.big")
-  , ("\x22c6","star.op")
-  , ("\x2605","star.stroked")
-  , ("\x2605","star.filled")
-  , ("\x2282","subset")
-  , ("\x2abd","subset.dot")
-  , ("\x22d0","subset.double")
-  , ("\x2286","subset.eq")
-  , ("\x2288","subset.eq.not")
-  , ("\x2291","subset.eq.sq")
-  , ("\x22e2","subset.eq.sq.not")
-  , ("\x228a","subset.neq")
-  , ("\x2284","subset.not")
-  , ("\x228f","subset.sq")
-  , ("\x22e4","subset.sq.neq")
-  , ("\x227b","succ")
-  , ("\x2ab8","succ.approx")
-  , ("\x2abc","succ.double")
-  , ("\x227d","succ.eq")
-  , ("\x22e1","succ.eq.not")
-  , ("\x2ab4","succ.eqq")
-  , ("\x2aba","succ.napprox")
-  , ("\x2ab6","succ.neqq")
-  , ("\x2281","succ.not")
-  , ("\x22e9","succ.ntilde")
-  , ("\x227f","succ.tilde")
-  , ("\x2663","suit.club")
-  , ("\x2666","suit.diamond")
-  , ("\x2665","suit.heart")
-  , ("\x2660","suit.spade")
-  , ("\x2211","sum")
-  , ("\x2a0b","sum.integral")
-  , ("\x2283","supset")
-  , ("\x2abe","supset.dot")
-  , ("\x22d1","supset.double")
-  , ("\x2287","supset.eq")
-  , ("\x2289","supset.eq.not")
-  , ("\x2292","supset.eq.sq")
-  , ("\x22e3","supset.eq.sq.not")
-  , ("\x228b","supset.neq")
-  , ("\x2285","supset.not")
-  , ("\x2290","supset.sq")
-  , ("\x22e5","supset.sq.neq")
-  , ("\x22a2","tack.r")
-  , ("\x27dd","tack.r.long")
-  , ("\x22a3","tack.l")
-  , ("\x27de","tack.l.long")
-  , ("\x2ade","tack.l.short")
-  , ("\x22a5","tack.t")
-  , ("\x27d8","tack.t.big")
-  , ("\x2aeb","tack.t.double")
-  , ("\x2ae0","tack.t.short")
-  , ("\x22a4","tack.b")
-  , ("\x27d9","tack.b.big")
-  , ("\x2aea","tack.b.double")
-  , ("\x2adf","tack.b.short")
-  , ("\x27db","tack.l.r")
-  , ("\x3c4","tau")
-  , ("\x2234","therefore")
-  , ("\x3b8","theta")
-  , ("\x3d1","theta.alt")
-  , ("~","tilde")
-  , ("\x223c","tilde.op")
-  , ("\x2243","tilde.eq")
-  , ("\x2244","tilde.eq.not")
-  , ("\x22cd","tilde.eq.rev")
-  , ("\x2245","tilde.eqq")
-  , ("\x2247","tilde.eqq.not")
-  , ("\x2246","tilde.neqq")
-  , ("\x2241","tilde.not")
-  , ("\x223d","tilde.rev")
-  , ("\x224c","tilde.rev.eqq")
-  , ("\x224b","tilde.triple")
-  , ("\xd7","times")
-  , ("\x2a09","times.big")
-  , ("\x2297","times.circle")
-  , ("\x2a02","times.circle.big")
-  , ("\x22c7","times.div")
-  , ("\x22cb","times.l")
-  , ("\x22cc","times.r")
-  , ("\x22a0","times.square")
-  , ("\x2a3b","times.triangle")
-  , ("\x22a4","top")
-  , ("\x25b7","triangle.stroked.r")
-  , ("\x25c1","triangle.stroked.l")
-  , ("\x25b3","triangle.stroked.t")
-  , ("\x25bd","triangle.stroked.b")
-  , ("\x25fa","triangle.stroked.bl")
-  , ("\x25ff","triangle.stroked.br")
-  , ("\x25f8","triangle.stroked.tl")
-  , ("\x25f9","triangle.stroked.tr")
-  , ("\x25b9","triangle.stroked.small.r")
-  , ("\x25bf","triangle.stroked.small.b")
-  , ("\x25c3","triangle.stroked.small.l")
-  , ("\x25b5","triangle.stroked.small.t")
-  , ("\x1f6c6","triangle.stroked.rounded")
-  , ("\x27c1","triangle.stroked.nested")
-  , ("\x25ec","triangle.stroked.dot")
-  , ("\x25b6","triangle.filled.r")
-  , ("\x25c0","triangle.filled.l")
-  , ("\x25b2","triangle.filled.t")
-  , ("\x25bc","triangle.filled.b")
-  , ("\x25e3","triangle.filled.bl")
-  , ("\x25e2","triangle.filled.br")
-  , ("\x25e4","triangle.filled.tl")
-  , ("\x25e5","triangle.filled.tr")
-  , ("\x25b8","triangle.filled.small.r")
-  , ("\x25be","triangle.filled.small.b")
-  , ("\x25c2","triangle.filled.small.l")
-  , ("\x25b4","triangle.filled.small.t")
-  , ("\x3014","turtle.l")
-  , ("\x3015","turtle.r")
-  , ("\x23e0","turtle.t")
-  , ("\x23e1","turtle.b")
-  , ("\x222a","union")
-  , ("\x228c","union.arrow")
-  , ("\x22c3","union.big")
-  , ("\x228d","union.dot")
-  , ("\x2a03","union.dot.big")
-  , ("\x22d3","union.double")
-  , ("\x2a41","union.minus")
-  , ("\x2a45","union.or")
-  , ("\x228e","union.plus")
-  , ("\x2a04","union.plus.big")
-  , ("\x2294","union.sq")
-  , ("\x2a06","union.sq.big")
-  , ("\x2a4f","union.sq.double")
-  , ("\x3c5","upsilon")
-  , ("\x2216","without")
-  , ("\8288","wj")
-  , ("\x20a9","won")
-  , ("\x2240","wreath")
-  , ("\x3be","xi")
-  , ("\xa5","yen")
-  , ("\x3b6","zeta")
-  , ("\x200d","zwj")
-  , ("\x200c","zwnj")
-  , ("\x200b","zws") ]
+typstSymbolMap :: M.Map Text Text
+typstSymbolMap = M.fromList [(s,name) | (name, _, s) <- typstSymbols]
diff --git a/test/regression/196.test b/test/regression/196.test
--- a/test/regression/196.test
+++ b/test/regression/196.test
@@ -92,5 +92,5 @@
 >>> tex
 f(x) = \left\{ \begin{aligned}
 x & = 1\  & \ y & = 2 \\
-xxx & = 111\  & \ yyy & = 222 \\
+xxx & = 111\  & \ yyy & = 222
 \end{aligned} \right.\ 
diff --git a/test/writer/mml/divergence.test b/test/writer/mml/divergence.test
--- a/test/writer/mml/divergence.test
+++ b/test/writer/mml/divergence.test
@@ -29,7 +29,7 @@
     <mo>⋅</mo>
     <mover>
       <mi>v</mi>
-      <mo accent="true">⃗</mo>
+      <mo accent="true">→</mo>
     </mover>
     <mo>=</mo>
     <mfrac>
diff --git a/test/writer/tex/00000_C0_Controls_and_Basic_Latin.test b/test/writer/tex/00000_C0_Controls_and_Basic_Latin.test
--- a/test/writer/tex/00000_C0_Controls_and_Basic_Latin.test
+++ b/test/writer/tex/00000_C0_Controls_and_Basic_Latin.test
@@ -200,5 +200,5 @@
 \text{C} & * & * & , & < & L & \backslash & l & | \\
 \text{D} & * & * & - & = & M & \rbrack & m & \} \\
 \text{E} & * & * & . & > & N & \hat{} & n & \sim \\
-\text{F} & * & * & / & ? & O & \_ & o & @ \\
+\text{F} & * & * & / & ? & O & \_ & o & @
 \end{matrix}
diff --git a/test/writer/tex/00080_C1_Controls_and_Latin-1_Supplement.test b/test/writer/tex/00080_C1_Controls_and_Latin-1_Supplement.test
--- a/test/writer/tex/00080_C1_Controls_and_Latin-1_Supplement.test
+++ b/test/writer/tex/00080_C1_Controls_and_Latin-1_Supplement.test
@@ -200,5 +200,5 @@
 \text{C} & @ & @ & \neg & ¼ & Ì & Ü & ì & ü \\
 \text{D} & @ & @ & ­ & ½ & Í & Ý & í & ý \\
 \text{E} & @ & @ & ® & ¾ & Î & Þ & î & þ \\
-\text{F} & @ & @ & ¯ & ¿ & Ï & ß & ï & ÿ \\
+\text{F} & @ & @ & ¯ & ¿ & Ï & ß & ï & ÿ
 \end{matrix}
diff --git a/test/writer/tex/00100_Latin_Extended-A.test b/test/writer/tex/00100_Latin_Extended-A.test
--- a/test/writer/tex/00100_Latin_Extended-A.test
+++ b/test/writer/tex/00100_Latin_Extended-A.test
@@ -200,5 +200,5 @@
 \text{C} & Č & Ĝ & Ĭ & ļ & Ō & Ŝ & Ŭ & ż \\
 \text{D} & č & ĝ & ĭ & Ľ & ō & ŝ & ŭ & Ž \\
 \text{E} & Ď & Ğ & Į & ľ & Ŏ & Ş & Ů & ž \\
-\text{F} & ď & ğ & į & Ŀ & ŏ & ş & ů & ſ \\
+\text{F} & ď & ğ & į & Ŀ & ŏ & ş & ů & ſ
 \end{matrix}
diff --git a/test/writer/tex/00180_Latin_Extended-B.test b/test/writer/tex/00180_Latin_Extended-B.test
--- a/test/writer/tex/00180_Latin_Extended-B.test
+++ b/test/writer/tex/00180_Latin_Extended-B.test
@@ -290,5 +290,5 @@
 \text{C} & ƌ & Ɯ & Ƭ & Ƽ & ǌ & ǜ & Ǭ & Ǽ & Ȍ & Ȝ & Ȭ & ȼ & Ɍ \\
 \text{D} & ƍ & Ɲ & ƭ & ƽ & Ǎ & ǝ & ǭ & ǽ & ȍ & ȝ & ȭ & Ƚ & ɍ \\
 \text{E} & Ǝ & ƞ & Ʈ & ƾ & ǎ & Ǟ & Ǯ & Ǿ & Ȏ & Ȟ & Ȯ & Ⱦ & Ɏ \\
-\text{F} & Ə & Ɵ & Ư & ƿ & Ǐ & ǟ & ǯ & ǿ & ȏ & ȟ & ȯ & ȿ & ɏ \\
+\text{F} & Ə & Ɵ & Ư & ƿ & Ǐ & ǟ & ǯ & ǿ & ȏ & ȟ & ȯ & ȿ & ɏ
 \end{matrix}
diff --git a/test/writer/tex/00250_IPA_Extensions.test b/test/writer/tex/00250_IPA_Extensions.test
--- a/test/writer/tex/00250_IPA_Extensions.test
+++ b/test/writer/tex/00250_IPA_Extensions.test
@@ -164,5 +164,5 @@
 \text{C} & ɜ & ɬ & ɼ & ʌ & ʜ & ʬ \\
 \text{D} & ɝ & ɭ & ɽ & ʍ & ʝ & ʭ \\
 \text{E} & ɞ & ɮ & ɾ & ʎ & ʞ & ʮ \\
-\text{F} & ɟ & ɯ & ɿ & ʏ & ʟ & ʯ \\
+\text{F} & ɟ & ɯ & ɿ & ʏ & ʟ & ʯ
 \end{matrix}
diff --git a/test/writer/tex/002B0_Spacing_Modifier_Letters.test b/test/writer/tex/002B0_Spacing_Modifier_Letters.test
--- a/test/writer/tex/002B0_Spacing_Modifier_Letters.test
+++ b/test/writer/tex/002B0_Spacing_Modifier_Letters.test
@@ -146,5 +146,5 @@
 \text{C} & ʼ & ˌ & ˜ & ˬ & ˼ \\
 \text{D} & ʽ & ˍ & ˝ & ˭ & ˽ \\
 \text{E} & ʾ & ˎ & ˞ & ˮ & ˾ \\
-\text{F} & ʿ & ˏ & ˟ & ˯ & ˿ \\
+\text{F} & ʿ & ˏ & ˟ & ˯ & ˿
 \end{matrix}
diff --git a/test/writer/tex/00300_Combining_Diacritical_Marks.test b/test/writer/tex/00300_Combining_Diacritical_Marks.test
--- a/test/writer/tex/00300_Combining_Diacritical_Marks.test
+++ b/test/writer/tex/00300_Combining_Diacritical_Marks.test
@@ -182,5 +182,5 @@
 \text{C} & \check{} & ̜ & ̬ & ̼ & ͌ & ͜ & ͬ \\
 \text{D} & ̍ & ̝ & ̭ & ̽ & ͍ & ͝ & ͭ \\
 \text{E} & ̎ & ̞ & ̮ & ̾ & ͎ & ͞ & ͮ \\
-\text{F} & ̏ & ̟ & ̯ & ̿ & ͏ & ͟ & ͯ \\
+\text{F} & ̏ & ̟ & ̯ & ̿ & ͏ & ͟ & ͯ
 \end{matrix}
diff --git a/test/writer/tex/00370_Greek_and_Coptic.test b/test/writer/tex/00370_Greek_and_Coptic.test
--- a/test/writer/tex/00370_Greek_and_Coptic.test
+++ b/test/writer/tex/00370_Greek_and_Coptic.test
@@ -218,5 +218,5 @@
 \text{C} & ͼ & Ό & Μ & ά & \mu & ό & \digamma & Ϭ & ϼ \\
 \text{D} & ͽ & @ & Ν & έ & \nu & ύ & ϝ & ϭ & Ͻ \\
 \text{E} & ; & Ύ & \Xi & ή & \xi & ώ & Ϟ & Ϯ & Ͼ \\
-\text{F} & @ & Ώ & Ο & ί & ο & Ϗ & ϟ & ϯ & Ͽ \\
+\text{F} & @ & Ώ & Ο & ί & ο & Ϗ & ϟ & ϯ & Ͽ
 \end{matrix}
diff --git a/test/writer/tex/00400_Cyrillic.test b/test/writer/tex/00400_Cyrillic.test
--- a/test/writer/tex/00400_Cyrillic.test
+++ b/test/writer/tex/00400_Cyrillic.test
@@ -344,5 +344,5 @@
 \text{C} & Ќ & М & Ь & м & ь & ќ & Ѭ & Ѽ & Ҍ & Ҝ & Ҭ & Ҽ & ӌ & Ӝ & Ӭ & Ӽ \\
 \text{D} & Ѝ & Н & Э & н & э & ѝ & ѭ & ѽ & ҍ & ҝ & ҭ & ҽ & Ӎ & ӝ & ӭ & ӽ \\
 \text{E} & Ў & О & Ю & о & ю & ў & Ѯ & Ѿ & Ҏ & Ҟ & Ү & Ҿ & ӎ & Ӟ & Ӯ & Ӿ \\
-\text{F} & Џ & П & Я & п & я & џ & ѯ & ѿ & ҏ & ҟ & ү & ҿ & ӏ & ӟ & ӯ & ӿ \\
+\text{F} & Џ & П & Я & п & я & џ & ѯ & ѿ & ҏ & ҟ & ү & ҿ & ӏ & ӟ & ӯ & ӿ
 \end{matrix}
diff --git a/test/writer/tex/01E00_Latin_Extended_Additional.test b/test/writer/tex/01E00_Latin_Extended_Additional.test
--- a/test/writer/tex/01E00_Latin_Extended_Additional.test
+++ b/test/writer/tex/01E00_Latin_Extended_Additional.test
@@ -344,5 +344,5 @@
 \text{C} & Ḍ & Ḝ & Ḭ & Ḽ & Ṍ & Ṝ & Ṭ & Ṽ & Ẍ & ẜ & Ậ & Ẽ & Ọ & Ờ & Ử & Ỽ \\
 \text{D} & ḍ & ḝ & ḭ & ḽ & ṍ & ṝ & ṭ & ṽ & ẍ & ẝ & ậ & ẽ & ọ & ờ & ử & ỽ \\
 \text{E} & Ḏ & Ḟ & Ḯ & Ḿ & Ṏ & Ṟ & Ṯ & Ṿ & Ẏ & ẞ & Ắ & Ế & Ỏ & Ở & Ữ & Ỿ \\
-\text{F} & ḏ & ḟ & ḯ & ḿ & ṏ & ṟ & ṯ & ṿ & ẏ & ẟ & ắ & ế & ỏ & ở & ữ & ỿ \\
+\text{F} & ḏ & ḟ & ḯ & ḿ & ṏ & ṟ & ṯ & ṿ & ẏ & ẟ & ắ & ế & ỏ & ở & ữ & ỿ
 \end{matrix}
diff --git a/test/writer/tex/01F00_Greek_Extended.test b/test/writer/tex/01F00_Greek_Extended.test
--- a/test/writer/tex/01F00_Greek_Extended.test
+++ b/test/writer/tex/01F00_Greek_Extended.test
@@ -344,5 +344,5 @@
 \text{C} & Ἄ & Ἔ & Ἤ & Ἴ & Ὄ & @ & Ὤ & ὼ & ᾌ & ᾜ & ᾬ & ᾼ & ῌ & @ & Ῥ & ῼ \\
 \text{D} & Ἅ & Ἕ & Ἥ & Ἵ & Ὅ & Ὕ & Ὥ & ώ & ᾍ & ᾝ & ᾭ & ᾽ & ῍ & ῝ & ῭ & ´ \\
 \text{E} & Ἆ & @ & Ἦ & Ἶ & @ & @ & Ὦ & @ & ᾎ & ᾞ & ᾮ & ι & ῎ & ῞ & ΅ & ῾ \\
-\text{F} & Ἇ & @ & Ἧ & Ἷ & @ & Ὗ & Ὧ & @ & ᾏ & ᾟ & ᾯ & ᾿ & ῏ & ῟ & ` & @ \\
+\text{F} & Ἇ & @ & Ἧ & Ἷ & @ & Ὗ & Ὧ & @ & ᾏ & ᾟ & ᾯ & ᾿ & ῏ & ῟ & ` & @
 \end{matrix}
diff --git a/test/writer/tex/02000_General_Punctuation.test b/test/writer/tex/02000_General_Punctuation.test
--- a/test/writer/tex/02000_General_Punctuation.test
+++ b/test/writer/tex/02000_General_Punctuation.test
@@ -182,5 +182,5 @@
 \text{C} & ‌ & `` & ‬ & !! & ⁌ & ⁜ & ⁬ \\
 \text{D} & ‍ & " & ‭ & ‽ & ⁍ & ⁝ & ⁭ \\
 \text{E} & ‎ & „ & ‮ & ‾ & \ast & ⁞ & ⁮ \\
-\text{F} & ‏ & ‟ &   & ‿ & ⁏ & \: & ⁯ \\
+\text{F} & ‏ & ‟ &   & ‿ & ⁏ & \: & ⁯
 \end{matrix}
diff --git a/test/writer/tex/02070_Superscripts_and_Subscripts.test b/test/writer/tex/02070_Superscripts_and_Subscripts.test
--- a/test/writer/tex/02070_Superscripts_and_Subscripts.test
+++ b/test/writer/tex/02070_Superscripts_and_Subscripts.test
@@ -106,5 +106,5 @@
 \text{C} & ⁼ & ₌ & @ \\
 \text{D} & ⁽ & ₍ & @ \\
 \text{E} & ⁾ & ₎ & @ \\
-\text{F} & ⁿ & @ & @ \\
+\text{F} & ⁿ & @ & @
 \end{matrix}
diff --git a/test/writer/tex/020A0_Currency_Symbols.test b/test/writer/tex/020A0_Currency_Symbols.test
--- a/test/writer/tex/020A0_Currency_Symbols.test
+++ b/test/writer/tex/020A0_Currency_Symbols.test
@@ -106,5 +106,5 @@
 \text{C} & € & @ & @ \\
 \text{D} & ₭ & @ & @ \\
 \text{E} & ₮ & @ & @ \\
-\text{F} & ₯ & @ & @ \\
+\text{F} & ₯ & @ & @
 \end{matrix}
diff --git a/test/writer/tex/020D0_Combining_Diacritical_Marks_for_Symbols.test b/test/writer/tex/020D0_Combining_Diacritical_Marks_for_Symbols.test
--- a/test/writer/tex/020D0_Combining_Diacritical_Marks_for_Symbols.test
+++ b/test/writer/tex/020D0_Combining_Diacritical_Marks_for_Symbols.test
@@ -106,5 +106,5 @@
 \text{C} & \ddddot{} & ⃬ & @ \\
 \text{D} & ⃝ & ⃭ & @ \\
 \text{E} & ⃞ & \underleftarrow{} & @ \\
-\text{F} & ⃟ & \underrightarrow{} & @ \\
+\text{F} & ⃟ & \underrightarrow{} & @
 \end{matrix}
diff --git a/test/writer/tex/02100_Letterlike_Symbols.test b/test/writer/tex/02100_Letterlike_Symbols.test
--- a/test/writer/tex/02100_Letterlike_Symbols.test
+++ b/test/writer/tex/02100_Letterlike_Symbols.test
@@ -146,5 +146,5 @@
 \text{C} & \mathfrak{H} & \Re & \mathcal{B} & \mathbb{π} & ⅌ \\
 \text{D} & \mathbb{H} & \mathbb{R} & \mathfrak{C} & \mathbb{γ} & ⅍ \\
 \text{E} & h & ℞ & ℮ & \mathbb{Γ} & ⅎ \\
-\text{F} & \hslash & ℟ & \mathcal{e} & \mathbb{Π} & ⅏ \\
+\text{F} & \hslash & ℟ & \mathcal{e} & \mathbb{Π} & ⅏
 \end{matrix}
diff --git a/test/writer/tex/02150_Number_Forms.test b/test/writer/tex/02150_Number_Forms.test
--- a/test/writer/tex/02150_Number_Forms.test
+++ b/test/writer/tex/02150_Number_Forms.test
@@ -128,5 +128,5 @@
 \text{C} & ⅜ & Ⅼ & ⅼ & @ \\
 \text{D} & ⅝ & Ⅽ & ⅽ & @ \\
 \text{E} & ⅞ & Ⅾ & ⅾ & @ \\
-\text{F} & ⅟ & Ⅿ & ⅿ & @ \\
+\text{F} & ⅟ & Ⅿ & ⅿ & @
 \end{matrix}
diff --git a/test/writer/tex/02190_Arrows.test b/test/writer/tex/02190_Arrows.test
--- a/test/writer/tex/02190_Arrows.test
+++ b/test/writer/tex/02190_Arrows.test
@@ -182,5 +182,5 @@
 \text{C} & ↜ & \looparrowright & \leftharpoonup & \rightleftharpoons & ⇜ & ⇬ & ⇼ \\
 \text{D} & ↝ & \leftrightsquigarrow & \leftharpoondown & \nLeftarrow & \rightsquigarrow & ⇭ & ⇽ \\
 \text{E} & \twoheadleftarrow & \nleftrightarrow & \upharpoonright & \nLeftrightarrow & ⇞ & ⇮ & ⇾ \\
-\text{F} & ↟ & ↯ & \upharpoonleft & \nRightarrow & ⇟ & ⇯ & ⇿ \\
+\text{F} & ↟ & ↯ & \upharpoonleft & \nRightarrow & ⇟ & ⇯ & ⇿
 \end{matrix}
diff --git a/test/writer/tex/02200_Mathematical_Operators.test b/test/writer/tex/02200_Mathematical_Operators.test
--- a/test/writer/tex/02200_Mathematical_Operators.test
+++ b/test/writer/tex/02200_Mathematical_Operators.test
@@ -344,5 +344,5 @@
 \text{C} & ∌ & \sqrt[4]{} & \iint & \sim & ≌ & \triangleq & \between & \preccurlyeq & ⊌ & ⊜ & \nvdash & \barwedge & \rightthreetimes & ⋜ & \ntrianglelefteq & ⋼ \\
 \text{D} & \ni & \propto & \iiint & \backsim & \asymp & ≝ & ≭ & \succcurlyeq & ⊍ & \circleddash & \nvDash & ⊽ & \backsimeq & ⋝ & \ntrianglerighteq & ⋽ \\
 \text{E} & \blacksquare & \infty & \oint & ∾ & \Bumpeq & ≞ & \nless & \precsim & \uplus & \boxplus & \nVdash & ⊾ & \curlyvee & \curlyeqprec & \vdots & ⋾ \\
-\text{F} & \prod & ∟ & ∯ & ∿ & \bumpeq & ≟ & \ngtr & \succsim & ⊏ & \boxminus & \nVDash & ⊿ & \curlywedge & \curlyeqsucc & \cdots & \mathsf{E} \\
+\text{F} & \prod & ∟ & ∯ & ∿ & \bumpeq & ≟ & \ngtr & \succsim & ⊏ & \boxminus & \nVDash & ⊿ & \curlywedge & \curlyeqsucc & \cdots & \mathsf{E} 
 \end{matrix}
diff --git a/test/writer/tex/02300_Miscellaneous_Technical.test b/test/writer/tex/02300_Miscellaneous_Technical.test
--- a/test/writer/tex/02300_Miscellaneous_Technical.test
+++ b/test/writer/tex/02300_Miscellaneous_Technical.test
@@ -344,5 +344,5 @@
 \text{C} & ⌌ & ⌜ & ⌬ & ⌼ & ⍌ & ⍜ & ⍬ & ⍼ & ⎌ & ⎜ & ⎬ & ⎼ & ⏌ & ⏜ & @ & @ \\
 \text{D} & ⌍ & ⌝ & ⌭ & ⌽ & ⍍ & ⍝ & ⍭ & ⍽ & ⎍ & ⎝ & ⎭ & ⎽ & ⏍ & ⏝ & @ & @ \\
 \text{E} & ⌎ & ⌞ & ⌮ & ⌾ & ⍎ & ⍞ & ⍮ & ⍾ & ⎎ & ⎞ & ⎮ & ⎾ & ⏎ & \overbrace{} & @ & @ \\
-\text{F} & ⌏ & ⌟ & ⌯ & ⌿ & ⍏ & ⍟ & ⍯ & ⍿ & ⎏ & ⎟ & ⎯ & ⎿ & ⏏ & \underbrace{} & @ & @ \\
+\text{F} & ⌏ & ⌟ & ⌯ & ⌿ & ⍏ & ⍟ & ⍯ & ⍿ & ⎏ & ⎟ & ⎯ & ⎿ & ⏏ & \underbrace{} & @ & @
 \end{matrix}
diff --git a/test/writer/tex/02400_Control_Pictures.test b/test/writer/tex/02400_Control_Pictures.test
--- a/test/writer/tex/02400_Control_Pictures.test
+++ b/test/writer/tex/02400_Control_Pictures.test
@@ -128,5 +128,5 @@
 \text{C} & ␌ & ␜ & @ & @ \\
 \text{D} & ␍ & ␝ & @ & @ \\
 \text{E} & ␎ & ␞ & @ & @ \\
-\text{F} & ␏ & ␟ & @ & @ \\
+\text{F} & ␏ & ␟ & @ & @
 \end{matrix}
diff --git a/test/writer/tex/02440_Optical_Character_Recognition.test b/test/writer/tex/02440_Optical_Character_Recognition.test
--- a/test/writer/tex/02440_Optical_Character_Recognition.test
+++ b/test/writer/tex/02440_Optical_Character_Recognition.test
@@ -86,5 +86,5 @@
 \text{C} & @ & @ \\
 \text{D} & @ & @ \\
 \text{E} & @ & @ \\
-\text{F} & @ & @ \\
+\text{F} & @ & @
 \end{matrix}
diff --git a/test/writer/tex/02460_Enclosed_Alphanumerics.test b/test/writer/tex/02460_Enclosed_Alphanumerics.test
--- a/test/writer/tex/02460_Enclosed_Alphanumerics.test
+++ b/test/writer/tex/02460_Enclosed_Alphanumerics.test
@@ -236,5 +236,5 @@
 \text{C} & ⑬ & ⑼ & ⒌ & ⒜ & ⒬ & Ⓖ & Ⓦ & ⓜ & ⓬ & ⓼ \\
 \text{D} & ⑭ & ⑽ & ⒍ & ⒝ & ⒭ & Ⓗ & Ⓧ & ⓝ & ⓭ & ⓽ \\
 \text{E} & ⑮ & ⑾ & ⒎ & ⒞ & ⒮ & Ⓘ & Ⓨ & ⓞ & ⓮ & ⓾ \\
-\text{F} & ⑯ & ⑿ & ⒏ & ⒟ & ⒯ & Ⓙ & Ⓩ & ⓟ & ⓯ & ⓿ \\
+\text{F} & ⑯ & ⑿ & ⒏ & ⒟ & ⒯ & Ⓙ & Ⓩ & ⓟ & ⓯ & ⓿
 \end{matrix}
diff --git a/test/writer/tex/02500_Box_Drawing.test b/test/writer/tex/02500_Box_Drawing.test
--- a/test/writer/tex/02500_Box_Drawing.test
+++ b/test/writer/tex/02500_Box_Drawing.test
@@ -200,5 +200,5 @@
 \text{C} & ┌ & ├ & ┬ & ┼ & ╌ & ╜ & ╬ & ╼ \\
 \text{D} & ┍ & ┝ & ┭ & ┽ & ╍ & ╝ & ╭ & ╽ \\
 \text{E} & ┎ & ┞ & ┮ & ┾ & ╎ & ╞ & ╮ & ╾ \\
-\text{F} & ┏ & ┟ & ┯ & ┿ & ╏ & ╟ & ╯ & ╿ \\
+\text{F} & ┏ & ┟ & ┯ & ┿ & ╏ & ╟ & ╯ & ╿
 \end{matrix}
diff --git a/test/writer/tex/02580_Block_Elements.test b/test/writer/tex/02580_Block_Elements.test
--- a/test/writer/tex/02580_Block_Elements.test
+++ b/test/writer/tex/02580_Block_Elements.test
@@ -86,5 +86,5 @@
 \text{C} & ▌ & ▜ \\
 \text{D} & ▍ & ▝ \\
 \text{E} & ▎ & ▞ \\
-\text{F} & ▏ & ▟ \\
+\text{F} & ▏ & ▟
 \end{matrix}
diff --git a/test/writer/tex/025A0_Geometric_Shapes.test b/test/writer/tex/025A0_Geometric_Shapes.test
--- a/test/writer/tex/025A0_Geometric_Shapes.test
+++ b/test/writer/tex/025A0_Geometric_Shapes.test
@@ -164,5 +164,5 @@
 \text{C} & ▬ & ▼ & ◌ & ◜ & ◬ & \blacksquare \\
 \text{D} & ▭ & \bigtriangledown & ◍ & ◝ & ◭ & ◽ \\
 \text{E} & ▮ & ▾ & \circledcirc & ◞ & ◮ & ◾ \\
-\text{F} & ▯ & \triangledown & ● & ◟ & ◯ & ◿ \\
+\text{F} & ▯ & \triangledown & ● & ◟ & ◯ & ◿
 \end{matrix}
diff --git a/test/writer/tex/02600_Miscellaneous_Symbols.test b/test/writer/tex/02600_Miscellaneous_Symbols.test
--- a/test/writer/tex/02600_Miscellaneous_Symbols.test
+++ b/test/writer/tex/02600_Miscellaneous_Symbols.test
@@ -344,5 +344,5 @@
 \text{C} & ☌ & ☜ & ☬ & ☼ & ♌ & ♜ & ♬ & ♼ & ⚌ & ⚜ & ⚬ & ⚼ & ⛌ & ⛜ & ⛬ & ⛼ \\
 \text{D} & ☍ & ☝ & ☭ & ☽ & ♍ & ♝ & \flat & ♽ & ⚍ & ⚝ & ⚭ & ⚽ & ⛍ & ⛝ & ⛭ & ⛽ \\
 \text{E} & ☎ & ☞ & ☮ & ☾ & ♎ & ♞ & \natural & ♾ & ⚎ & ⚞ & ⚮ & ⚾ & @ & ⛞ & ⛮ & ⛾ \\
-\text{F} & ☏ & ☟ & ☯ & ☿ & ♏ & ♟ & \sharp & ♿ & ⚏ & ⚟ & ⚯ & ⚿ & ⛏ & ⛟ & ⛯ & ⛿ \\
+\text{F} & ☏ & ☟ & ☯ & ☿ & ♏ & ♟ & \sharp & ♿ & ⚏ & ⚟ & ⚯ & ⚿ & ⛏ & ⛟ & ⛯ & ⛿
 \end{matrix}
diff --git a/test/writer/tex/02700_Dingbats.test b/test/writer/tex/02700_Dingbats.test
--- a/test/writer/tex/02700_Dingbats.test
+++ b/test/writer/tex/02700_Dingbats.test
@@ -272,5 +272,5 @@
 \text{C} & ✌ & ✜ & ✬ & ✼ & @ & ❜ & ❬ & ❼ & ➌ & ➜ & ➬ & ➼ \\
 \text{D} & ✍ & ✝ & ✭ & ✽ & ❍ & ❝ & ❭ & ❽ & ➍ & ➝ & ➭ & ➽ \\
 \text{E} & ✎ & ✞ & ✮ & ✾ & @ & ❞ & ❮ & ❾ & ➎ & ➞ & ➮ & ➾ \\
-\text{F} & ✏ & ✟ & ✯ & ✿ & ❏ & @ & ❯ & ❿ & ➏ & ➟ & ➯ & @ \\
+\text{F} & ✏ & ✟ & ✯ & ✿ & ❏ & @ & ❯ & ❿ & ➏ & ➟ & ➯ & @
 \end{matrix}
diff --git a/test/writer/tex/027C0_Miscellaneous_Mathematical_Symbols-A.test b/test/writer/tex/027C0_Miscellaneous_Mathematical_Symbols-A.test
--- a/test/writer/tex/027C0_Miscellaneous_Mathematical_Symbols-A.test
+++ b/test/writer/tex/027C0_Miscellaneous_Mathematical_Symbols-A.test
@@ -106,5 +106,5 @@
 \text{C} & ⟌ & ⟜ & ⟬ \\
 \text{D} & @ & ⟝ & ⟭ \\
 \text{E} & @ & ⟞ & \lgroup \\
-\text{F} & @ & ⟟ & \rgroup \\
+\text{F} & @ & ⟟ & \rgroup
 \end{matrix}
diff --git a/test/writer/tex/027F0_Supplemental_Arrows-A.test b/test/writer/tex/027F0_Supplemental_Arrows-A.test
--- a/test/writer/tex/027F0_Supplemental_Arrows-A.test
+++ b/test/writer/tex/027F0_Supplemental_Arrows-A.test
@@ -38,5 +38,5 @@
 \text{C} & \longmapsto \\
 \text{D} & ⟽ \\
 \text{E} & ⟾ \\
-\text{F} & ⟿ \\
+\text{F} & ⟿
 \end{matrix}
diff --git a/test/writer/tex/02900_Supplemental_Arrows-B.test b/test/writer/tex/02900_Supplemental_Arrows-B.test
--- a/test/writer/tex/02900_Supplemental_Arrows-B.test
+++ b/test/writer/tex/02900_Supplemental_Arrows-B.test
@@ -200,5 +200,5 @@
 \text{C} & ⤌ & ⤜ & ⤬ & ⤼ & ⥌ & ⥜ & ⥬ & ⥼ \\
 \text{D} & ⤍ & ⤝ & ⤭ & ⤽ & ⥍ & ⥝ & ⥭ & ⥽ \\
 \text{E} & ⤎ & ⤞ & ⤮ & ⤾ & ⥎ & ⥞ & ⥮ & ⥾ \\
-\text{F} & ⤏ & ⤟ & ⤯ & ⤿ & ⥏ & ⥟ & ⥯ & ⥿ \\
+\text{F} & ⤏ & ⤟ & ⤯ & ⤿ & ⥏ & ⥟ & ⥯ & ⥿ 
 \end{matrix}
diff --git a/test/writer/tex/02980_Miscellaneous_Mathematical_Symbols-B.test b/test/writer/tex/02980_Miscellaneous_Mathematical_Symbols-B.test
--- a/test/writer/tex/02980_Miscellaneous_Mathematical_Symbols-B.test
+++ b/test/writer/tex/02980_Miscellaneous_Mathematical_Symbols-B.test
@@ -200,5 +200,5 @@
 \text{C} & ⦌ & ⦜ & ⦬ & ⦼ & ⧌ & ⧜ & ⧬ & ⧼ \\
 \text{D} & ⦍ & ⦝ & ⦭ & ⦽ & ⧍ & ⧝ & ⧭ & ⧽ \\
 \text{E} & ⦎ & ⦞ & ⦮ & ⦾ & ⧎ & ⧞ & ⧮ & ⧾ \\
-\text{F} & ⦏ & ⦟ & ⦯ & ⦿ & ⧏ & ⧟ & ⧯ & ⧿ \\
+\text{F} & ⦏ & ⦟ & ⦯ & ⦿ & ⧏ & ⧟ & ⧯ & ⧿ 
 \end{matrix}
diff --git a/test/writer/tex/02A00_Supplemental_Mathematical_Operators.test b/test/writer/tex/02A00_Supplemental_Mathematical_Operators.test
--- a/test/writer/tex/02A00_Supplemental_Mathematical_Operators.test
+++ b/test/writer/tex/02A00_Supplemental_Mathematical_Operators.test
@@ -344,5 +344,5 @@
 \text{C} & \iiiint & ⨜ & ⨬ & ⨼ & ⩌ & ⩜ & ⩬ & ⩼ & \gtreqqless & ⪜ & ⪬ & ⪼ & \supsetneqq & ⫝̸ & ⫬ & ⫼ \\
 \text{D} & ⨍ & \Join & ⨭ & ⨽ & ⩍ & ⩝ & ⩭ & \leqslant & ⪍ & ⪝ & ⪭ & ⪽ & ⫍ & ⫝ & ⫭ & ⫽ \\
 \text{E} & ⨎ & ⨞ & ⨮ & ⨾ & ⩎ & \doublebarwedge & ⩮ & \geqslant & ⪎ & ⪞ & ⪮ & ⪾ & ⫎ & ⫞ & ⫮ & ⫾ \\
-\text{F} & ⨏ & ⨟ & \times & \amalg & ⩏ & ⩟ & ⩯ & ⩿ & ⪏ & ⪟ & \preceq & ⪿ & ⫏ & ⫟ & ⫯ & ⫿ \\
+\text{F} & ⨏ & ⨟ & \times & \amalg & ⩏ & ⩟ & ⩯ & ⩿ & ⪏ & ⪟ & \preceq & ⪿ & ⫏ & ⫟ & ⫯ & ⫿
 \end{matrix}
diff --git a/test/writer/tex/02B00_Miscellaneous_Symbols_and_Arrows.test b/test/writer/tex/02B00_Miscellaneous_Symbols_and_Arrows.test
--- a/test/writer/tex/02B00_Miscellaneous_Symbols_and_Arrows.test
+++ b/test/writer/tex/02B00_Miscellaneous_Symbols_and_Arrows.test
@@ -164,5 +164,5 @@
 \text{C} & ⬌ & ⬜ & ⬬ & ⬼ & ⭌ & @ \\
 \text{D} & ⬍ & \centerdot & ⬭ & ⬽ & @ & @ \\
 \text{E} & ⬎ & ⬞ & ⬮ & ⬾ & @ & @ \\
-\text{F} & ⬏ & ⬟ & ⬯ & ⬿ & @ & @ \\
+\text{F} & ⬏ & ⬟ & ⬯ & ⬿ & @ & @
 \end{matrix}
diff --git a/test/writer/tex/0FB00_Alphabetic_Presentation_Forms.test b/test/writer/tex/0FB00_Alphabetic_Presentation_Forms.test
--- a/test/writer/tex/0FB00_Alphabetic_Presentation_Forms.test
+++ b/test/writer/tex/0FB00_Alphabetic_Presentation_Forms.test
@@ -146,5 +146,5 @@
 \text{C} & @ & @ & שּׁ & לּ & בֿ \\
 \text{D} & @ & יִ & שּׂ & @ & כֿ \\
 \text{E} & @ & ﬞ & אַ & מּ & פֿ \\
-\text{F} & @ & ײַ & אָ & @ & ﭏ \\
+\text{F} & @ & ײַ & אָ & @ & ﭏ
 \end{matrix}
diff --git a/test/writer/tex/0FB50_Arabic_Presentation_Forms-A.test b/test/writer/tex/0FB50_Arabic_Presentation_Forms-A.test
--- a/test/writer/tex/0FB50_Arabic_Presentation_Forms-A.test
+++ b/test/writer/tex/0FB50_Arabic_Presentation_Forms-A.test
@@ -830,5 +830,5 @@
 \text{C} & ﭜ & ﭬ & ﭼ & ﮌ & ﮜ & ﮬ & @ & @ & ﯜ & ﯬ & ﯼ & ﰌ & ﰜ & ﰬ & ﰼ & ﱌ & ﱜ & ﱬ & ﱼ & ﲌ & ﲜ & ﲬ & ﲼ & ﳌ & ﳜ & ﳬ & ﳼ & ﴌ & ﴜ & ﴬ & ﴼ & @ & ﵜ & ﵬ & ﵼ & ﶌ & ﶜ & ﶬ & ﶼ & @ & @ & @ & ﷼ \\
 \text{D} & ﭝ & ﭭ & ﭽ & ﮍ & ﮝ & ﮭ & @ & @ & ﯝ & ﯭ & ﯽ & ﰍ & ﰝ & ﰭ & ﰽ & ﱍ & ﱝ & ﱭ & ﱽ & ﲍ & ﲝ & ﲭ & ﲽ & ﳍ & ﳝ & ﳭ & ﳽ & ﴍ & ﴝ & ﴭ & ﴽ & @ & ﵝ & ﵭ & ﵽ & ﶍ & ﶝ & ﶭ & ﶽ & @ & @ & @ & ﷽ \\
 \text{E} & ﭞ & ﭮ & ﭾ & ﮎ & ﮞ & ﮮ & @ & @ & ﯞ & ﯮ & ﯾ & ﰎ & ﰞ & ﰮ & ﰾ & ﱎ & ﱞ & ﱮ & ﱾ & ﲎ & ﲞ & ﲮ & ﲾ & ﳎ & ﳞ & ﳮ & ﳾ & ﴎ & ﴞ & ﴮ & ﴾ & @ & ﵞ & ﵮ & ﵾ & ﶎ & ﶞ & ﶮ & ﶾ & @ & @ & @ & @ \\
-\text{F} & ﭟ & ﭯ & ﭿ & ﮏ & ﮟ & ﮯ & @ & @ & ﯟ & ﯯ & ﯿ & ﰏ & ﰟ & ﰯ & ﰿ & ﱏ & ﱟ & ﱯ & ﱿ & ﲏ & ﲟ & ﲯ & ﲿ & ﳏ & ﳟ & ﳯ & ﳿ & ﴏ & ﴟ & ﴯ & ﴿ & @ & ﵟ & ﵯ & ﵿ & ﶏ & ﶟ & ﶯ & ﶿ & @ & @ & @ & @ \\
+\text{F} & ﭟ & ﭯ & ﭿ & ﮏ & ﮟ & ﮯ & @ & @ & ﯟ & ﯯ & ﯿ & ﰏ & ﰟ & ﰯ & ﰿ & ﱏ & ﱟ & ﱯ & ﱿ & ﲏ & ﲟ & ﲯ & ﲿ & ﳏ & ﳟ & ﳯ & ﳿ & ﴏ & ﴟ & ﴯ & ﴿ & @ & ﵟ & ﵯ & ﵿ & ﶏ & ﶟ & ﶯ & ﶿ & @ & @ & @ & @
 \end{matrix}
diff --git a/test/writer/tex/0FE00_Variation_Selectors.test b/test/writer/tex/0FE00_Variation_Selectors.test
--- a/test/writer/tex/0FE00_Variation_Selectors.test
+++ b/test/writer/tex/0FE00_Variation_Selectors.test
@@ -38,5 +38,5 @@
 \text{C} & ︌ \\
 \text{D} & ︍ \\
 \text{E} & ︎ \\
-\text{F} & ️ \\
+\text{F} & ️
 \end{matrix}
diff --git a/test/writer/tex/0FE10_Vertical_Forms.test b/test/writer/tex/0FE10_Vertical_Forms.test
--- a/test/writer/tex/0FE10_Vertical_Forms.test
+++ b/test/writer/tex/0FE10_Vertical_Forms.test
@@ -38,5 +38,5 @@
 \text{C} & @ \\
 \text{D} & @ \\
 \text{E} & @ \\
-\text{F} & @ \\
+\text{F} & @
 \end{matrix}
diff --git a/test/writer/tex/0FE20_Combining_Half_Marks.test b/test/writer/tex/0FE20_Combining_Half_Marks.test
--- a/test/writer/tex/0FE20_Combining_Half_Marks.test
+++ b/test/writer/tex/0FE20_Combining_Half_Marks.test
@@ -38,5 +38,5 @@
 \text{C} & @ \\
 \text{D} & @ \\
 \text{E} & @ \\
-\text{F} & @ \\
+\text{F} & @
 \end{matrix}
diff --git a/test/writer/tex/0FE30_CJK_Compatibility_Forms.test b/test/writer/tex/0FE30_CJK_Compatibility_Forms.test
--- a/test/writer/tex/0FE30_CJK_Compatibility_Forms.test
+++ b/test/writer/tex/0FE30_CJK_Compatibility_Forms.test
@@ -86,5 +86,5 @@
 \text{C} & ︼ & ﹌ \\
 \text{D} & ︽ & ﹍ \\
 \text{E} & ︾ & ﹎ \\
-\text{F} & ︿ & ﹏ \\
+\text{F} & ︿ & ﹏
 \end{matrix}
diff --git a/test/writer/tex/0FE50_Small_Form_Variants.test b/test/writer/tex/0FE50_Small_Form_Variants.test
--- a/test/writer/tex/0FE50_Small_Form_Variants.test
+++ b/test/writer/tex/0FE50_Small_Form_Variants.test
@@ -86,5 +86,5 @@
 \text{C} & ﹜ & @ \\
 \text{D} & ﹝ & @ \\
 \text{E} & ﹞ & @ \\
-\text{F} & ﹟ & @ \\
+\text{F} & ﹟ & @
 \end{matrix}
diff --git a/test/writer/tex/0FE70_Arabic_Presentation_Forms-B.test b/test/writer/tex/0FE70_Arabic_Presentation_Forms-B.test
--- a/test/writer/tex/0FE70_Arabic_Presentation_Forms-B.test
+++ b/test/writer/tex/0FE70_Arabic_Presentation_Forms-B.test
@@ -218,5 +218,5 @@
 \text{C} & ﹼ & ﺌ & ﺜ & ﺬ & ﺼ & ﻌ & ﻜ & ﻬ & ﻼ \\
 \text{D} & ﹽ & ﺍ & ﺝ & ﺭ & ﺽ & ﻍ & ﻝ & ﻭ & @ \\
 \text{E} & ﹾ & ﺎ & ﺞ & ﺮ & ﺾ & ﻎ & ﻞ & ﻮ & @ \\
-\text{F} & ﹿ & ﺏ & ﺟ & ﺯ & ﺿ & ﻏ & ﻟ & ﻯ & ﻿ \\
+\text{F} & ﹿ & ﺏ & ﺟ & ﺯ & ﺿ & ﻏ & ﻟ & ﻯ & ﻿
 \end{matrix}
diff --git a/test/writer/tex/12.test b/test/writer/tex/12.test
--- a/test/writer/tex/12.test
+++ b/test/writer/tex/12.test
@@ -33,5 +33,5 @@
 f(x) = \begin{cases}
 1 & - 1 \leq x < 0 \\
 \frac{1}{2} & x = 0 \\
-1 - x^{2} & \text{otherwise} \\
+1 - x^{2} & \text{otherwise}
 \end{cases}
diff --git a/test/writer/tex/19.test b/test/writer/tex/19.test
--- a/test/writer/tex/19.test
+++ b/test/writer/tex/19.test
@@ -83,17 +83,17 @@
 \begin{bmatrix}
 \dfrac{\partial x_{1}}{\partial y_{1}} & \dfrac{\partial x_{2}}{\partial y_{1}} \\
 \  \\
-\dfrac{\partial x_{1}}{\partial y_{2}} & \dfrac{\partial x_{2}}{\partial y_{2}} \\
+\dfrac{\partial x_{1}}{\partial y_{2}} & \dfrac{\partial x_{2}}{\partial y_{2}}
 \end{bmatrix}\begin{pmatrix}
 1 & 2 \\
-3 & 4 \\
+3 & 4
 \end{pmatrix}\begin{Bmatrix}
 1 & 2 \\
-3 & 4 \\
+3 & 4
 \end{Bmatrix}\begin{vmatrix}
 1 & 2 \\
-3 & 4 \\
+3 & 4
 \end{vmatrix}\begin{Vmatrix}
 1 & 2 \\
-3 & 4 \\
+3 & 4
 \end{Vmatrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-fraktur.test
@@ -128,5 +128,5 @@
 \text{C} & \mathfrak{A} & \mathfrak{Q} & \mathfrak{g} & \mathfrak{w} \\
 \text{D} & \mathfrak{B} & \mathfrak{R} & \mathfrak{h} & \mathfrak{x} \\
 \text{E} & \mathfrak{C} & \mathfrak{S} & \mathfrak{i} & \mathfrak{y} \\
-\text{F} & \mathfrak{D} & \mathfrak{T} & \mathfrak{j} & \mathfrak{z} \\
+\text{F} & \mathfrak{D} & \mathfrak{T} & \mathfrak{j} & \mathfrak{z}
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-italic.test
@@ -218,5 +218,5 @@
 \text{C} & \mathbf{E} & \mathbf{U} & \mathbf{k} & & \mathbf{Α} & \mathbf{Ρ} & \mathbf{η} & \mathbf{χ} & \\
 \text{D} & \mathbf{F} & \mathbf{V} & \mathbf{l} & & \mathbf{Β} & \mathbf{ϴ} & \mathbf{θ} & \mathbf{ψ} & \\
 \text{E} & \mathbf{G} & \mathbf{W} & \mathbf{m} & & \mathbf{Γ} & \mathbf{Σ} & \mathbf{ι} & \mathbf{ω} & \\
-\text{F} & \mathbf{H} & \mathbf{X} & \mathbf{n} & & \mathbf{Δ} & \mathbf{Τ} & \mathbf{κ} & \mathbf{∂} & \\
+\text{F} & \mathbf{H} & \mathbf{X} & \mathbf{n} & & \mathbf{Δ} & \mathbf{Τ} & \mathbf{κ} & \mathbf{∂} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-sans-serif.test
@@ -236,5 +236,5 @@
 \text{C} & \mathbf{I} & \mathbf{Y} & \mathbf{o} & & \mathbf{Η} & \mathbf{Χ} & \mathbf{ν} & \mathbf{ϰ} & \mathbf{0} & \\
 \text{D} & \mathbf{J} & \mathbf{Z} & \mathbf{p} & & \mathbf{Θ} & \mathbf{Ψ} & \mathbf{ξ} & \mathbf{ϕ} & \mathbf{1} & \\
 \text{E} & \mathbf{K} & \mathbf{a} & \mathbf{q} & & \mathbf{Ι} & \mathbf{Ω} & \mathbf{ο} & \mathbf{ϱ} & \mathbf{2} & \\
-\text{F} & \mathbf{L} & \mathbf{b} & \mathbf{r} & & \mathbf{Κ} & \mathbf{∇} & \mathbf{π} & \mathbf{ϖ} & \mathbf{3} & \\
+\text{F} & \mathbf{L} & \mathbf{b} & \mathbf{r} & & \mathbf{Κ} & \mathbf{∇} & \mathbf{π} & \mathbf{ϖ} & \mathbf{3} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold-script.test
@@ -128,5 +128,5 @@
 \text{C} & \mathcal{M} & \mathcal{c} & \mathcal{s} & \\
 \text{D} & \mathcal{N} & \mathcal{d} & \mathcal{t} & \\
 \text{E} & \mathcal{O} & \mathcal{e} & \mathcal{u} & \\
-\text{F} & \mathcal{P} & \mathcal{f} & \mathcal{v} & \\
+\text{F} & \mathcal{P} & \mathcal{f} & \mathcal{v} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_bold.test
@@ -254,5 +254,5 @@
 \text{C} & \mathbf{M} & \mathbf{c} & \mathbf{s} & & \mathbf{Ε} & \mathbf{\Upsilon} & \mathbf{λ} & \mathbf{ϵ} & & & \\
 \text{D} & \mathbf{N} & \mathbf{d} & \mathbf{t} & & \mathbf{Ζ} & \mathbf{\Phi} & \mathbf{μ} & \mathbf{ϑ} & & & \\
 \text{E} & \mathbf{O} & \mathbf{e} & \mathbf{u} & & \mathbf{Η} & \mathbf{Χ} & \mathbf{ν} & \mathbf{ϰ} & & \mathbf{0} & \\
-\text{F} & \mathbf{P} & \mathbf{f} & \mathbf{v} & & \mathbf{\Theta} & \mathbf{\Psi} & \mathbf{ξ} & \mathbf{ϕ} & & \mathbf{1} & \\
+\text{F} & \mathbf{P} & \mathbf{f} & \mathbf{v} & & \mathbf{\Theta} & \mathbf{\Psi} & \mathbf{ξ} & \mathbf{ϕ} & & \mathbf{1} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_double-struck.test
@@ -164,5 +164,5 @@
 \text{C} & \mathbb{E} & \mathbb{U} & \Bbbk & & \mathbb{4} & \\
 \text{D} & \mathbb{F} & \mathbb{V} & \mathbb{l} & & \mathbb{5} & \\
 \text{E} & \mathbb{G} & \mathbb{W} & \mathbb{m} & & \mathbb{6} & \\
-\text{F} & @ & \mathbb{X} & \mathbb{n} & & \mathbb{7} & \\
+\text{F} & @ & \mathbb{X} & \mathbb{n} & & \mathbb{7} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_fraktur.test
@@ -128,5 +128,5 @@
 \text{C} & @ & \mathfrak{Y} & \mathfrak{o} & \\
 \text{D} & \mathfrak{J} & @ & \mathfrak{p} & \\
 \text{E} & \mathfrak{K} & \mathfrak{a} & \mathfrak{q} & \\
-\text{F} & \mathfrak{L} & \mathfrak{b} & \mathfrak{r} & \\
+\text{F} & \mathfrak{L} & \mathfrak{b} & \mathfrak{r} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_italic.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_italic.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_italic.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_italic.test
@@ -218,5 +218,5 @@
 \text{C} & I & Y & o & & & \mathit{Λ} & \alpha & \rho & \\
 \text{D} & J & Z & p & & & \mathit{Μ} & \beta & \varsigma & \\
 \text{E} & K & a & q & & & \mathit{Ν} & \gamma & \sigma & \\
-\text{F} & L & b & r & & & \mathit{Ξ} & \delta & \tau & \\
+\text{F} & L & b & r & & & \mathit{Ξ} & \delta & \tau & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_monospace.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_monospace.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_monospace.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_monospace.test
@@ -146,5 +146,5 @@
 \text{C} & \mathtt{M} & \mathtt{c} & \mathtt{s} & & \mathtt{6} \\
 \text{D} & \mathtt{N} & \mathtt{d} & \mathtt{t} & & \mathtt{7} \\
 \text{E} & \mathtt{O} & \mathtt{e} & \mathtt{u} & & \mathtt{8} \\
-\text{F} & \mathtt{P} & \mathtt{f} & \mathtt{v} & & \mathtt{9} \\
+\text{F} & \mathtt{P} & \mathtt{f} & \mathtt{v} & & \mathtt{9}
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-bold-italic.test
@@ -200,5 +200,5 @@
 \text{C} & \mathbf{A} & \mathbf{Q} & \mathbf{g} & \mathbf{w} & \mathbf{Ν} & \mathbf{γ} & \mathbf{σ} & \\
 \text{D} & \mathbf{B} & \mathbf{R} & \mathbf{h} & \mathbf{x} & \mathbf{Ξ} & \mathbf{δ} & \mathbf{τ} & \\
 \text{E} & \mathbf{C} & \mathbf{S} & \mathbf{i} & \mathbf{y} & \mathbf{Ο} & \mathbf{ε} & \mathbf{υ} & \\
-\text{F} & \mathbf{D} & \mathbf{T} & \mathbf{j} & \mathbf{z} & \mathbf{Π} & \mathbf{ζ} & \mathbf{φ} & \\
+\text{F} & \mathbf{D} & \mathbf{T} & \mathbf{j} & \mathbf{z} & \mathbf{Π} & \mathbf{ζ} & \mathbf{φ} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif-italic.test
@@ -128,5 +128,5 @@
 \text{C} & \mathsf{E} & \mathsf{U} & \mathsf{k} & \\
 \text{D} & \mathsf{F} & \mathsf{V} & \mathsf{l} & \\
 \text{E} & \mathsf{G} & \mathsf{W} & \mathsf{m} & \\
-\text{F} & \mathsf{H} & \mathsf{X} & \mathsf{n} & \\
+\text{F} & \mathsf{H} & \mathsf{X} & \mathsf{n} & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_sans-serif.test
@@ -146,5 +146,5 @@
 \text{C} & \mathsf{M} & \mathsf{c} & \mathsf{s} & & \\
 \text{D} & \mathsf{N} & \mathsf{d} & \mathsf{t} & & \\
 \text{E} & \mathsf{O} & \mathsf{e} & \mathsf{u} & & \\
-\text{F} & \mathsf{P} & \mathsf{f} & \mathsf{v} & & \\
+\text{F} & \mathsf{P} & \mathsf{f} & \mathsf{v} & & 
 \end{matrix}
diff --git a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_script.test b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_script.test
--- a/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_script.test
+++ b/test/writer/tex/1D400_Mathematical_Alphanumeric_Symbols_script.test
@@ -128,5 +128,5 @@
 \text{C} & \mathcal{A} & \mathcal{Q} & @ & \mathcal{w} \\
 \text{D} & @ & @ & \mathcal{h} & \mathcal{x} \\
 \text{E} & \mathcal{C} & \mathcal{S} & \mathcal{i} & \mathcal{y} \\
-\text{F} & \mathcal{D} & \mathcal{T} & \mathcal{j} & \mathcal{z} \\
+\text{F} & \mathcal{D} & \mathcal{T} & \mathcal{j} & \mathcal{z}
 \end{matrix}
diff --git a/test/writer/tex/22.test b/test/writer/tex/22.test
--- a/test/writer/tex/22.test
+++ b/test/writer/tex/22.test
@@ -275,5 +275,5 @@
 \texttt{mathbfscr} & \mathcal{ABCabc} \\
 \texttt{mathbffrak} & \mathfrak{ABCabc} \\
 \texttt{mathbfcal} & \mathcal{ABCabc} \\
-\texttt{mathsfit} & \mathsf{ABCabc} \\
+\texttt{mathsfit} & \mathsf{ABCabc}
 \end{array}
diff --git a/test/writer/tex/a.test b/test/writer/tex/a.test
--- a/test/writer/tex/a.test
+++ b/test/writer/tex/a.test
@@ -158,5 +158,5 @@
 \text{auml} & ä \\
 \text{Auml} & Ä \\
 \text{awconint} & ∳ \\
-\text{awint} & ⨑ \\
+\text{awint} & ⨑
 \end{matrix}
diff --git a/test/writer/tex/accents1.test b/test/writer/tex/accents1.test
--- a/test/writer/tex/accents1.test
+++ b/test/writer/tex/accents1.test
@@ -87,8 +87,8 @@
 ]
 >>> tex
 \begin{array}{l}
-\text{default:\ (accent=true)} \\
+\text{default: (accent=true)} \\
 {\overset{'}{H}\hat{H}\overset{\_}{H}\grave{H}\overset{\sim}{H}\overset{¨}{H}\overline{H}\acute{H}\overset{¸}{H}\widehat{H}\check{H}\breve{H}\overset{˙}{H}\overset{˚}{H}\widetilde{H}\overset{˝}{H}\widehat{H}\overset{̑}{H}\bar{H}\dddot{H}\ddddot{H}\overset{\leftarrow}{H}\overset{\rightarrow}{H}\overset{\leftrightarrow}{H}\overset{\leftharpoonup}{H}\overset{\leftharpoondown}{H}\overset{\rightharpoonup}{H}\overset{\rightharpoondown}{H}\overset{⎴}{H}\overset{⎵}{H}\overset{⏜}{H}\overset{⏝}{H}\overbrace{H}\overset{\underbrace{}}{H}\overset{⥎}{H}\overset{⥐}{H}} \\
 \text{accent=false:} \\
-{\overset{'}{H}\overset{\hat{}}{H}\overset{\_}{H}\overset{`}{H}\overset{\sim}{H}\overset{¨}{H}\overset{¯}{H}\overset{´}{H}\overset{¸}{H}\overset{\hat{}}{H}\overset{ˇ}{H}\overset{˘}{H}\overset{˙}{H}\overset{˚}{H}\overset{˜}{H}\overset{˝}{H}\widehat{H}\overset{̑}{H}\overset{‾}{H}\dddot{H}\ddddot{H}\overset{\leftarrow}{H}\overset{\rightarrow}{H}\overset{\leftrightarrow}{H}\overset{\leftharpoonup}{H}\overset{\leftharpoondown}{H}\overset{\rightharpoonup}{H}\overset{\rightharpoondown}{H}\overset{⎴}{H}\overset{⎵}{H}\overset{⏜}{H}\overset{⏝}{H}\overbrace{H}\overset{\underbrace{}}{H}\overset{⥎}{H}\overset{⥐}{H}} \\
+{\overset{'}{H}\overset{\hat{}}{H}\overset{\_}{H}\overset{`}{H}\overset{\sim}{H}\overset{¨}{H}\overset{¯}{H}\overset{´}{H}\overset{¸}{H}\overset{\hat{}}{H}\overset{ˇ}{H}\overset{˘}{H}\overset{˙}{H}\overset{˚}{H}\overset{˜}{H}\overset{˝}{H}\widehat{H}\overset{̑}{H}\overset{‾}{H}\dddot{H}\ddddot{H}\overset{\leftarrow}{H}\overset{\rightarrow}{H}\overset{\leftrightarrow}{H}\overset{\leftharpoonup}{H}\overset{\leftharpoondown}{H}\overset{\rightharpoonup}{H}\overset{\rightharpoondown}{H}\overset{⎴}{H}\overset{⎵}{H}\overset{⏜}{H}\overset{⏝}{H}\overbrace{H}\overset{\underbrace{}}{H}\overset{⥎}{H}\overset{⥐}{H}}
 \end{array}
diff --git a/test/writer/tex/accents2.test b/test/writer/tex/accents2.test
--- a/test/writer/tex/accents2.test
+++ b/test/writer/tex/accents2.test
@@ -87,8 +87,8 @@
 ]
 >>> tex
 \begin{array}{l}
-\text{default:\ (accent=true)} \\
+\text{default: (accent=true)} \\
 {\overset{'}{x}\hat{x}\overset{\_}{x}\grave{x}\overset{\sim}{x}\overset{¨}{x}\overline{x}\acute{x}\overset{¸}{x}\widehat{x}\check{x}\breve{x}\overset{˙}{x}\overset{˚}{x}\widetilde{x}\overset{˝}{x}\widehat{x}\overset{̑}{x}\bar{x}\dddot{x}\ddddot{x}\overset{\leftarrow}{x}\overset{\rightarrow}{x}\overset{\leftrightarrow}{x}\overset{\leftharpoonup}{x}\overset{\leftharpoondown}{x}\overset{\rightharpoonup}{x}\overset{\rightharpoondown}{x}\overset{⎴}{x}\overset{⎵}{x}\overset{⏜}{x}\overset{⏝}{x}\overbrace{x}\overset{\underbrace{}}{x}\overset{⥎}{x}\overset{⥐}{x}} \\
 \text{accent=false:} \\
-{\overset{'}{x}\overset{\hat{}}{x}\overset{\_}{x}\overset{`}{x}\overset{\sim}{x}\overset{¨}{x}\overset{¯}{x}\overset{´}{x}\overset{¸}{x}\overset{\hat{}}{x}\overset{ˇ}{x}\overset{˘}{x}\overset{˙}{x}\overset{˚}{x}\overset{˜}{x}\overset{˝}{x}\widehat{x}\overset{̑}{x}\overset{‾}{x}\dddot{x}\ddddot{x}\overset{\leftarrow}{x}\overset{\rightarrow}{x}\overset{\leftrightarrow}{x}\overset{\leftharpoonup}{x}\overset{\leftharpoondown}{x}\overset{\rightharpoonup}{x}\overset{\rightharpoondown}{x}\overset{⎴}{x}\overset{⎵}{x}\overset{⏜}{x}\overset{⏝}{x}\overbrace{x}\overset{\underbrace{}}{x}\overset{⥎}{x}\overset{⥐}{x}} \\
+{\overset{'}{x}\overset{\hat{}}{x}\overset{\_}{x}\overset{`}{x}\overset{\sim}{x}\overset{¨}{x}\overset{¯}{x}\overset{´}{x}\overset{¸}{x}\overset{\hat{}}{x}\overset{ˇ}{x}\overset{˘}{x}\overset{˙}{x}\overset{˚}{x}\overset{˜}{x}\overset{˝}{x}\widehat{x}\overset{̑}{x}\overset{‾}{x}\dddot{x}\ddddot{x}\overset{\leftarrow}{x}\overset{\rightarrow}{x}\overset{\leftrightarrow}{x}\overset{\leftharpoonup}{x}\overset{\leftharpoondown}{x}\overset{\rightharpoonup}{x}\overset{\rightharpoondown}{x}\overset{⎴}{x}\overset{⎵}{x}\overset{⏜}{x}\overset{⏝}{x}\overbrace{x}\overset{\underbrace{}}{x}\overset{⥎}{x}\overset{⥐}{x}}
 \end{array}
diff --git a/test/writer/tex/accents3.test b/test/writer/tex/accents3.test
--- a/test/writer/tex/accents3.test
+++ b/test/writer/tex/accents3.test
@@ -87,8 +87,8 @@
 ]
 >>> tex
 \begin{array}{l}
-\text{default:\ (accent=true)} \\
+\text{default: (accent=true)} \\
 {\underset{'}{H}\underset{\hat{}}{H}\underline{H}\underset{`}{H}\underset{\sim}{H}\underset{¨}{H}\underset{¯}{H}\underset{´}{H}\underset{¸}{H}\underset{\hat{}}{H}\underset{ˇ}{H}\underset{˘}{H}\underset{˙}{H}\underset{˚}{H}\underset{˜}{H}\underset{˝}{H}\underset{\hat{}}{H}\underset{̑}{H}\underset{‾}{H}\underset{\dddot{}}{H}\underset{\ddddot{}}{H}\underset{\leftarrow}{H}\underset{\rightarrow}{H}\underset{\leftrightarrow}{H}\underset{\leftharpoonup}{H}\underset{\leftharpoondown}{H}\underset{\rightharpoonup}{H}\underset{\rightharpoondown}{H}\underset{⎴}{H}\underset{⎵}{H}\underset{⏜}{H}\underset{⏝}{H}\underset{\overbrace{}}{H}\underbrace{H}\underset{⥎}{H}\underset{⥐}{H}} \\
 \text{accent=false:} \\
-{\underset{'}{H}\underset{\hat{}}{H}\underset{\_}{H}\underset{`}{H}\underset{\sim}{H}\underset{¨}{H}\underset{¯}{H}\underset{´}{H}\underset{¸}{H}\underset{\hat{}}{H}\underset{ˇ}{H}\underset{˘}{H}\underset{˙}{H}\underset{˚}{H}\underset{˜}{H}\underset{˝}{H}\underset{\hat{}}{H}\underset{̑}{H}\underset{‾}{H}\underset{\dddot{}}{H}\underset{\ddddot{}}{H}\underset{\leftarrow}{H}\underset{\rightarrow}{H}\underset{\leftrightarrow}{H}\underset{\leftharpoonup}{H}\underset{\leftharpoondown}{H}\underset{\rightharpoonup}{H}\underset{\rightharpoondown}{H}\underset{⎴}{H}\underset{⎵}{H}\underset{⏜}{H}\underset{⏝}{H}\underset{\overbrace{}}{H}\underbrace{H}\underset{⥎}{H}\underset{⥐}{H}} \\
+{\underset{'}{H}\underset{\hat{}}{H}\underset{\_}{H}\underset{`}{H}\underset{\sim}{H}\underset{¨}{H}\underset{¯}{H}\underset{´}{H}\underset{¸}{H}\underset{\hat{}}{H}\underset{ˇ}{H}\underset{˘}{H}\underset{˙}{H}\underset{˚}{H}\underset{˜}{H}\underset{˝}{H}\underset{\hat{}}{H}\underset{̑}{H}\underset{‾}{H}\underset{\dddot{}}{H}\underset{\ddddot{}}{H}\underset{\leftarrow}{H}\underset{\rightarrow}{H}\underset{\leftrightarrow}{H}\underset{\leftharpoonup}{H}\underset{\leftharpoondown}{H}\underset{\rightharpoonup}{H}\underset{\rightharpoondown}{H}\underset{⎴}{H}\underset{⎵}{H}\underset{⏜}{H}\underset{⏝}{H}\underset{\overbrace{}}{H}\underbrace{H}\underset{⥎}{H}\underset{⥐}{H}}
 \end{array}
diff --git a/test/writer/tex/accents4.test b/test/writer/tex/accents4.test
--- a/test/writer/tex/accents4.test
+++ b/test/writer/tex/accents4.test
@@ -87,8 +87,8 @@
 ]
 >>> tex
 \begin{array}{l}
-\text{default:\ (accent=true)} \\
+\text{default: (accent=true)} \\
 {\underset{'}{x}\underset{\hat{}}{x}\underline{x}\underset{`}{x}\underset{\sim}{x}\underset{¨}{x}\underset{¯}{x}\underset{´}{x}\underset{¸}{x}\underset{\hat{}}{x}\underset{ˇ}{x}\underset{˘}{x}\underset{˙}{x}\underset{˚}{x}\underset{˜}{x}\underset{˝}{x}\underset{\hat{}}{x}\underset{̑}{x}\underset{‾}{x}\underset{\dddot{}}{x}\underset{\ddddot{}}{x}\underset{\leftarrow}{x}\underset{\rightarrow}{x}\underset{\leftrightarrow}{x}\underset{\leftharpoonup}{x}\underset{\leftharpoondown}{x}\underset{\rightharpoonup}{x}\underset{\rightharpoondown}{x}\underset{⎴}{x}\underset{⎵}{x}\underset{⏜}{x}\underset{⏝}{x}\underset{\overbrace{}}{x}\underbrace{x}\underset{⥎}{x}\underset{⥐}{x}} \\
 \text{accent=false:} \\
-{\underset{'}{x}\underset{\hat{}}{x}\underset{\_}{x}\underset{`}{x}\underset{\sim}{x}\underset{¨}{x}\underset{¯}{x}\underset{´}{x}\underset{¸}{x}\underset{\hat{}}{x}\underset{ˇ}{x}\underset{˘}{x}\underset{˙}{x}\underset{˚}{x}\underset{˜}{x}\underset{˝}{x}\underset{\hat{}}{x}\underset{̑}{x}\underset{‾}{x}\underset{\dddot{}}{x}\underset{\ddddot{}}{x}\underset{\leftarrow}{x}\underset{\rightarrow}{x}\underset{\leftrightarrow}{x}\underset{\leftharpoonup}{x}\underset{\leftharpoondown}{x}\underset{\rightharpoonup}{x}\underset{\rightharpoondown}{x}\underset{⎴}{x}\underset{⎵}{x}\underset{⏜}{x}\underset{⏝}{x}\underset{\overbrace{}}{x}\underbrace{x}\underset{⥎}{x}\underset{⥐}{x}} \\
+{\underset{'}{x}\underset{\hat{}}{x}\underset{\_}{x}\underset{`}{x}\underset{\sim}{x}\underset{¨}{x}\underset{¯}{x}\underset{´}{x}\underset{¸}{x}\underset{\hat{}}{x}\underset{ˇ}{x}\underset{˘}{x}\underset{˙}{x}\underset{˚}{x}\underset{˜}{x}\underset{˝}{x}\underset{\hat{}}{x}\underset{̑}{x}\underset{‾}{x}\underset{\dddot{}}{x}\underset{\ddddot{}}{x}\underset{\leftarrow}{x}\underset{\rightarrow}{x}\underset{\leftrightarrow}{x}\underset{\leftharpoonup}{x}\underset{\leftharpoondown}{x}\underset{\rightharpoonup}{x}\underset{\rightharpoondown}{x}\underset{⎴}{x}\underset{⎵}{x}\underset{⏜}{x}\underset{⏝}{x}\underset{\overbrace{}}{x}\underbrace{x}\underset{⥎}{x}\underset{⥐}{x}}
 \end{array}
diff --git a/test/writer/tex/accents5.test b/test/writer/tex/accents5.test
--- a/test/writer/tex/accents5.test
+++ b/test/writer/tex/accents5.test
@@ -294,8 +294,8 @@
 ]
 >>> tex
 \begin{array}{l}
-\text{default:\ (accent=true)} \\
+\text{default: (accent=true)} \\
 {\underset{'}{\overset{'}{H}}\underset{\hat{}}{\hat{H}}\underline{\overset{\_}{H}}\underset{`}{\grave{H}}\underset{\sim}{\overset{\sim}{H}}\underset{¨}{\overset{¨}{H}}\underset{¯}{\overline{H}}\underset{´}{\acute{H}}\underset{¸}{\overset{¸}{H}}\underset{\hat{}}{\widehat{H}}\underset{ˇ}{\check{H}}\underset{˘}{\breve{H}}\underset{˙}{\overset{˙}{H}}\underset{˚}{\overset{˚}{H}}\underset{˜}{\widetilde{H}}\underset{˝}{\overset{˝}{H}}\underset{\hat{}}{\widehat{H}}\underset{̑}{\overset{̑}{H}}\underset{‾}{\bar{H}}\underset{\dddot{}}{\dddot{H}}\underset{\ddddot{}}{\ddddot{H}}\underset{\leftarrow}{\overset{\leftarrow}{H}}\underset{\rightarrow}{\overset{\rightarrow}{H}}\underset{\leftrightarrow}{\overset{\leftrightarrow}{H}}\underset{\leftharpoonup}{\overset{\leftharpoonup}{H}}\underset{\leftharpoondown}{\overset{\leftharpoondown}{H}}\underset{\rightharpoonup}{\overset{\rightharpoonup}{H}}\underset{\rightharpoondown}{\overset{\rightharpoondown}{H}}\underset{⎴}{\overset{⎴}{H}}\underset{⎵}{\overset{⎵}{H}}\underset{⏜}{\overset{⏜}{H}}\underset{⏝}{\overset{⏝}{H}}\underset{\overbrace{}}{\overbrace{H}}\underbrace{\overset{\underbrace{}}{H}}\underset{⥎}{\overset{⥎}{H}}\underset{⥐}{\overset{⥐}{H}}} \\
 \text{accent=false:} \\
-{\underset{'}{\overset{'}{H}}\underset{\hat{}}{\overset{\hat{}}{H}}\underset{\_}{\overset{\_}{H}}\underset{`}{\overset{`}{H}}\underset{\sim}{\overset{\sim}{H}}\underset{¨}{\overset{¨}{H}}\underset{¯}{\overset{¯}{H}}\underset{´}{\overset{´}{H}}\underset{¸}{\overset{¸}{H}}\underset{\hat{}}{\overset{\hat{}}{H}}\underset{ˇ}{\overset{ˇ}{H}}\underset{˘}{\overset{˘}{H}}\underset{˙}{\overset{˙}{H}}\underset{˚}{\overset{˚}{H}}\underset{˜}{\overset{˜}{H}}\underset{˝}{\overset{˝}{H}}\underset{\hat{}}{\widehat{H}}\underset{̑}{\overset{̑}{H}}\underset{‾}{\overset{‾}{H}}\underset{\dddot{}}{\dddot{H}}\underset{\ddddot{}}{\ddddot{H}}\underset{\leftarrow}{\overset{\leftarrow}{H}}\underset{\rightarrow}{\overset{\rightarrow}{H}}\underset{\leftrightarrow}{\overset{\leftrightarrow}{H}}\underset{\leftharpoonup}{\overset{\leftharpoonup}{H}}\underset{\leftharpoondown}{\overset{\leftharpoondown}{H}}\underset{\rightharpoonup}{\overset{\rightharpoonup}{H}}\underset{\rightharpoondown}{\overset{\rightharpoondown}{H}}\underset{⎴}{\overset{⎴}{H}}\underset{⎵}{\overset{⎵}{H}}\underset{⏜}{\overset{⏜}{H}}\underset{⏝}{\overset{⏝}{H}}\underset{\overbrace{}}{\overbrace{H}}\underbrace{\overset{\underbrace{}}{H}}\underset{⥎}{\overset{⥎}{H}}\underset{⥐}{\overset{⥐}{H}}} \\
+{\underset{'}{\overset{'}{H}}\underset{\hat{}}{\overset{\hat{}}{H}}\underset{\_}{\overset{\_}{H}}\underset{`}{\overset{`}{H}}\underset{\sim}{\overset{\sim}{H}}\underset{¨}{\overset{¨}{H}}\underset{¯}{\overset{¯}{H}}\underset{´}{\overset{´}{H}}\underset{¸}{\overset{¸}{H}}\underset{\hat{}}{\overset{\hat{}}{H}}\underset{ˇ}{\overset{ˇ}{H}}\underset{˘}{\overset{˘}{H}}\underset{˙}{\overset{˙}{H}}\underset{˚}{\overset{˚}{H}}\underset{˜}{\overset{˜}{H}}\underset{˝}{\overset{˝}{H}}\underset{\hat{}}{\widehat{H}}\underset{̑}{\overset{̑}{H}}\underset{‾}{\overset{‾}{H}}\underset{\dddot{}}{\dddot{H}}\underset{\ddddot{}}{\ddddot{H}}\underset{\leftarrow}{\overset{\leftarrow}{H}}\underset{\rightarrow}{\overset{\rightarrow}{H}}\underset{\leftrightarrow}{\overset{\leftrightarrow}{H}}\underset{\leftharpoonup}{\overset{\leftharpoonup}{H}}\underset{\leftharpoondown}{\overset{\leftharpoondown}{H}}\underset{\rightharpoonup}{\overset{\rightharpoonup}{H}}\underset{\rightharpoondown}{\overset{\rightharpoondown}{H}}\underset{⎴}{\overset{⎴}{H}}\underset{⎵}{\overset{⎵}{H}}\underset{⏜}{\overset{⏜}{H}}\underset{⏝}{\overset{⏝}{H}}\underset{\overbrace{}}{\overbrace{H}}\underbrace{\overset{\underbrace{}}{H}}\underset{⥎}{\overset{⥎}{H}}\underset{⥐}{\overset{⥐}{H}}}
 \end{array}
diff --git a/test/writer/tex/accents6.test b/test/writer/tex/accents6.test
--- a/test/writer/tex/accents6.test
+++ b/test/writer/tex/accents6.test
@@ -294,8 +294,8 @@
 ]
 >>> tex
 \begin{array}{l}
-\text{default:\ (accent=true)} \\
+\text{default: (accent=true)} \\
 {\underset{'}{\overset{'}{x}}\underset{\hat{}}{\hat{x}}\underline{\overset{\_}{x}}\underset{`}{\grave{x}}\underset{\sim}{\overset{\sim}{x}}\underset{¨}{\overset{¨}{x}}\underset{¯}{\overline{x}}\underset{´}{\acute{x}}\underset{¸}{\overset{¸}{x}}\underset{\hat{}}{\widehat{x}}\underset{ˇ}{\check{x}}\underset{˘}{\breve{x}}\underset{˙}{\overset{˙}{x}}\underset{˚}{\overset{˚}{x}}\underset{˜}{\widetilde{x}}\underset{˝}{\overset{˝}{x}}\underset{\hat{}}{\widehat{x}}\underset{̑}{\overset{̑}{x}}\underset{‾}{\bar{x}}\underset{\dddot{}}{\dddot{x}}\underset{\ddddot{}}{\ddddot{x}}\underset{\leftarrow}{\overset{\leftarrow}{x}}\underset{\rightarrow}{\overset{\rightarrow}{x}}\underset{\leftrightarrow}{\overset{\leftrightarrow}{x}}\underset{\leftharpoonup}{\overset{\leftharpoonup}{x}}\underset{\leftharpoondown}{\overset{\leftharpoondown}{x}}\underset{\rightharpoonup}{\overset{\rightharpoonup}{x}}\underset{\rightharpoondown}{\overset{\rightharpoondown}{x}}\underset{⎴}{\overset{⎴}{x}}\underset{⎵}{\overset{⎵}{x}}\underset{⏜}{\overset{⏜}{x}}\underset{⏝}{\overset{⏝}{x}}\underset{\overbrace{}}{\overbrace{x}}\underbrace{\overset{\underbrace{}}{x}}\underset{⥎}{\overset{⥎}{x}}\underset{⥐}{\overset{⥐}{x}}} \\
 \text{accent=false:} \\
-{\underset{'}{\overset{'}{x}}\underset{\hat{}}{\overset{\hat{}}{x}}\underset{\_}{\overset{\_}{x}}\underset{`}{\overset{`}{x}}\underset{\sim}{\overset{\sim}{x}}\underset{¨}{\overset{¨}{x}}\underset{¯}{\overset{¯}{x}}\underset{´}{\overset{´}{x}}\underset{¸}{\overset{¸}{x}}\underset{\hat{}}{\overset{\hat{}}{x}}\underset{ˇ}{\overset{ˇ}{x}}\underset{˘}{\overset{˘}{x}}\underset{˙}{\overset{˙}{x}}\underset{˚}{\overset{˚}{x}}\underset{˜}{\overset{˜}{x}}\underset{˝}{\overset{˝}{x}}\underset{\hat{}}{\widehat{x}}\underset{̑}{\overset{̑}{x}}\underset{‾}{\overset{‾}{x}}\underset{\dddot{}}{\dddot{x}}\underset{\ddddot{}}{\ddddot{x}}\underset{\leftarrow}{\overset{\leftarrow}{x}}\underset{\rightarrow}{\overset{\rightarrow}{x}}\underset{\leftrightarrow}{\overset{\leftrightarrow}{x}}\underset{\leftharpoonup}{\overset{\leftharpoonup}{x}}\underset{\leftharpoondown}{\overset{\leftharpoondown}{x}}\underset{\rightharpoonup}{\overset{\rightharpoonup}{x}}\underset{\rightharpoondown}{\overset{\rightharpoondown}{x}}\underset{⎴}{\overset{⎴}{x}}\underset{⎵}{\overset{⎵}{x}}\underset{⏜}{\overset{⏜}{x}}\underset{⏝}{\overset{⏝}{x}}\underset{\overbrace{}}{\overbrace{x}}\underbrace{\overset{\underbrace{}}{x}}\underset{⥎}{\overset{⥎}{x}}\underset{⥐}{\overset{⥐}{x}}} \\
+{\underset{'}{\overset{'}{x}}\underset{\hat{}}{\overset{\hat{}}{x}}\underset{\_}{\overset{\_}{x}}\underset{`}{\overset{`}{x}}\underset{\sim}{\overset{\sim}{x}}\underset{¨}{\overset{¨}{x}}\underset{¯}{\overset{¯}{x}}\underset{´}{\overset{´}{x}}\underset{¸}{\overset{¸}{x}}\underset{\hat{}}{\overset{\hat{}}{x}}\underset{ˇ}{\overset{ˇ}{x}}\underset{˘}{\overset{˘}{x}}\underset{˙}{\overset{˙}{x}}\underset{˚}{\overset{˚}{x}}\underset{˜}{\overset{˜}{x}}\underset{˝}{\overset{˝}{x}}\underset{\hat{}}{\widehat{x}}\underset{̑}{\overset{̑}{x}}\underset{‾}{\overset{‾}{x}}\underset{\dddot{}}{\dddot{x}}\underset{\ddddot{}}{\ddddot{x}}\underset{\leftarrow}{\overset{\leftarrow}{x}}\underset{\rightarrow}{\overset{\rightarrow}{x}}\underset{\leftrightarrow}{\overset{\leftrightarrow}{x}}\underset{\leftharpoonup}{\overset{\leftharpoonup}{x}}\underset{\leftharpoondown}{\overset{\leftharpoondown}{x}}\underset{\rightharpoonup}{\overset{\rightharpoonup}{x}}\underset{\rightharpoondown}{\overset{\rightharpoondown}{x}}\underset{⎴}{\overset{⎴}{x}}\underset{⎵}{\overset{⎵}{x}}\underset{⏜}{\overset{⏜}{x}}\underset{⏝}{\overset{⏝}{x}}\underset{\overbrace{}}{\overbrace{x}}\underbrace{\overset{\underbrace{}}{x}}\underset{⥎}{\overset{⥎}{x}}\underset{⥐}{\overset{⥐}{x}}}
 \end{array}
diff --git a/test/writer/tex/b.test b/test/writer/tex/b.test
--- a/test/writer/tex/b.test
+++ b/test/writer/tex/b.test
@@ -270,5 +270,5 @@
 \text{bumpe} & \bumpeq \\
 \text{bumpE} & ⪮ \\
 \text{bumpeq} & \bumpeq \\
-\text{Bumpeq} & \Bumpeq \\
+\text{Bumpeq} & \Bumpeq 
 \end{matrix}
diff --git a/test/writer/tex/c.test b/test/writer/tex/c.test
--- a/test/writer/tex/c.test
+++ b/test/writer/tex/c.test
@@ -274,5 +274,5 @@
 \text{cuwed} & \curlywedge \\
 \text{cwconint} & ∲ \\
 \text{cwint} & ∱ \\
-\text{cylcty} & ⌭ \\
+\text{cylcty} & ⌭
 \end{matrix}
diff --git a/test/writer/tex/complex1.test b/test/writer/tex/complex1.test
--- a/test/writer/tex/complex1.test
+++ b/test/writer/tex/complex1.test
@@ -602,39 +602,39 @@
 ]
 >>> tex
 \begin{matrix}
-\text{Bernoulli\ Trials} & {{P(E)} = \left( \frac{n}{k} \right)p_{}^{k}{(1 - p)}_{}^{n - k}} \\
-\text{Cauchy-Schwarz\ Inequality} & {\left( \sum\limits_{k = 1}^{n}a_{k}^{}b_{k}^{} \right)_{}^{2} \leq \left( \sum\limits_{k = 1}^{n}a_{k}^{2} \right)\left( \sum\limits_{k = 1}^{n}b_{k}^{2} \right)} \\
-\text{Cauchy\ Formula} & {f(z)\, \cdot {Ind}_{\gamma}^{}(z) = \frac{1}{2\pi i}\oint\limits_{\gamma}^{}\frac{f(\xi)}{\xi - z}\, d\xi} \\
-\text{Cross\ Product} & {V_{1}^{} \times V_{2}^{} = \left| \begin{matrix}
+\text{Bernoulli Trials} & {{P(E)} = \left( \frac{n}{k} \right)p_{}^{k}{(1 - p)}_{}^{n - k}} \\
+\text{Cauchy-Schwarz Inequality} & {\left( \sum\limits_{k = 1}^{n}a_{k}^{}b_{k}^{} \right)_{}^{2} \leq \left( \sum\limits_{k = 1}^{n}a_{k}^{2} \right)\left( \sum\limits_{k = 1}^{n}b_{k}^{2} \right)} \\
+\text{Cauchy Formula} & {f(z)\, \cdot {Ind}_{\gamma}^{}(z) = \frac{1}{2\pi i}\oint\limits_{\gamma}^{}\frac{f(\xi)}{\xi - z}\, d\xi} \\
+\text{Cross Product} & {V_{1}^{} \times V_{2}^{} = \left| \begin{matrix}
 i & j & k \\
 \frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\
-\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 \\
+\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0
 \end{matrix} \right|} \\
-\text{Vandermonde\ Determinant} & {\left| \begin{matrix}
+\text{Vandermonde Determinant} & {\left| \begin{matrix}
 1 & 1 & \cdots & 1 \\
 v_{1}^{} & v_{2}^{} & \cdots & v_{n}^{} \\
 v_{1}^{2} & v_{2}^{2} & \cdots & v_{n}^{2} \\
  \vdots & \vdots & \ddots & \vdots \\
-v_{1}^{n - 1} & v_{2}^{n - 1} & \cdots & v_{n}^{n - 1} \\
+v_{1}^{n - 1} & v_{2}^{n - 1} & \cdots & v_{n}^{n - 1}
 \end{matrix} \right| = \prod\limits_{1 \leq i < j \leq n}^{}(v_{j}^{} - v_{i}^{})} \\
-\text{Lorenz\ Equations} & \begin{matrix}
+\text{Lorenz Equations} & \begin{matrix}
 \overset{˙}{\underset{}{x}} & = & {\sigma(y - x)} \\
 \overset{˙}{\underset{}{y}} & = & {\rho x - y - xz} \\
-\overset{˙}{\underset{}{z}} & = & {- \beta z + xy} \\
+\overset{˙}{\underset{}{z}} & = & {- \beta z + xy}
 \end{matrix} \\
-\text{Maxwell's\ Equations} & \left\{ \begin{matrix}
+\text{Maxwell's Equations} & \left\{ \begin{matrix}
 {\nabla \times \overset{\leftharpoonup}{\underset{}{B}} - \,\frac{1}{c}\,\frac{\partial\overset{\leftharpoonup}{\underset{}{E}}}{\partial t}} & = & {\frac{4\pi}{c}\,\overset{\leftharpoonup}{\underset{}{j}}} \\
 {\nabla \cdot \overset{\leftharpoonup}{\underset{}{E}}} & = & {4\pi\rho} \\
 {\nabla \times \overset{\leftharpoonup}{\underset{}{E}}\, + \,\frac{1}{c}\,\frac{\partial\overset{\leftharpoonup}{\underset{}{B}}}{\partial t}} & = & \overset{\leftharpoonup}{\underset{}{0}} \\
-{\nabla \cdot \overset{\leftharpoonup}{\underset{}{B}}} & = & 0 \\
+{\nabla \cdot \overset{\leftharpoonup}{\underset{}{B}}} & = & 0
 \end{matrix} \right. \\
-\text{Einstein\ Field\ Equations} & {R_{\mu\nu}^{} - \frac{1}{2}\, g_{\mu\nu}^{}\, R = \frac{8\pi G}{c_{}^{4}}\, T_{\mu\nu}^{}} \\
-\text{Ramanujan\ Identity} & {\frac{1}{(\sqrt{\varphi\sqrt{5}} - \varphi)e_{}^{\frac{25}{\pi}}} = 1 + \frac{e_{}^{- 2\pi}}{1 + \frac{e_{}^{- 4\pi}}{1 + \frac{e_{}^{- 6\pi}}{1 + \frac{e_{}^{- 8\pi}}{1 + \ldots}}}}} \\
-\text{Another\ Ramanujan\ identity} & {\sum\limits_{k = 1}^{\infty}\frac{1}{2_{}^{\lfloor k \cdot \varphi\rfloor}} = \frac{1}{2_{}^{0} + \frac{1}{2_{}^{1} + \cdots}}} \\
-\text{Rogers-Ramanujan\ Identity} & {1 + {\sum\limits_{k = 1}^{\infty}\frac{q_{}^{k_{}^{2} + k}}{(1 - q)(1 - q_{}^{2})\cdots(1 - q_{}^{k})}} = {\prod\limits_{j = 0}^{\infty}\frac{1}{(1 - q_{}^{5j + 2})(1 - q_{}^{5j + 3})}},\text{ \,}\text{ \,}{for}\ |q| < 1.} \\
-\text{Commutative\ Diagram} & \begin{matrix}
+\text{Einstein Field Equations} & {R_{\mu\nu}^{} - \frac{1}{2}\, g_{\mu\nu}^{}\, R = \frac{8\pi G}{c_{}^{4}}\, T_{\mu\nu}^{}} \\
+\text{Ramanujan Identity} & {\frac{1}{(\sqrt{\varphi\sqrt{5}} - \varphi)e_{}^{\frac{25}{\pi}}} = 1 + \frac{e_{}^{- 2\pi}}{1 + \frac{e_{}^{- 4\pi}}{1 + \frac{e_{}^{- 6\pi}}{1 + \frac{e_{}^{- 8\pi}}{1 + \ldots}}}}} \\
+\text{Another Ramanujan identity} & {\sum\limits_{k = 1}^{\infty}\frac{1}{2_{}^{\lfloor k \cdot \varphi\rfloor}} = \frac{1}{2_{}^{0} + \frac{1}{2_{}^{1} + \cdots}}} \\
+\text{Rogers-Ramanujan Identity} & {1 + {\sum\limits_{k = 1}^{\infty}\frac{q_{}^{k_{}^{2} + k}}{(1 - q)(1 - q_{}^{2})\cdots(1 - q_{}^{k})}} = {\prod\limits_{j = 0}^{\infty}\frac{1}{(1 - q_{}^{5j + 2})(1 - q_{}^{5j + 3})}},\text{ \,}\text{ \,}{for}\ |q| < 1.} \\
+\text{Commutative Diagram} & \begin{matrix}
 H & \leftarrow & K \\
  \downarrow & & \uparrow \\
-H & \rightarrow & K \\
-\end{matrix} \\
+H & \rightarrow & K
+\end{matrix}
 \end{matrix}
diff --git a/test/writer/tex/complex2.test b/test/writer/tex/complex2.test
--- a/test/writer/tex/complex2.test
+++ b/test/writer/tex/complex2.test
@@ -392,19 +392,19 @@
 ]
 >>> tex
 \begin{matrix}
-\text{Quadratic\ Equation} & {x = \frac{- b \pm \sqrt{b_{}^{2} - 4ac}}{2a}} \\
-\text{DisplayQuadratic\ Equation} & {x = \frac{- b \pm \sqrt{b_{}^{2} - 4ac}}{2a}} \\
-\text{Rational\ Function} & {f(x) = \frac{1 - x_{}^{2}}{1 - x_{}^{3}}} \\
-\text{Rational\ Function} & {f(x) = \frac{(1 - x_{}^{2})x_{}^{3}}{1 - x_{}^{3}}} \\
-\text{Rational\ Function} & {f(x) = \frac{(1 - x_{}^{2})(x_{}^{3} - 5x)}{1 - x_{}^{3}}} \\
-\text{Parametrize\ Rational\ Function} & {f(x) = \frac{(a_{i}^{} - x_{}^{2})_{}^{5}}{1 - x_{}^{3}}} \\
-\text{Stacked\ exponents} & {g(z) = e_{}^{- x_{}^{2}}} \\
-\text{Stacked\ exponents} & {g(z) = e_{}^{- (z - a)_{}^{2}}} \\
-\text{Stacked\ exponents} & {g(z) = e_{}^{- \sum\limits_{i = 0}^{\infty}z_{i}^{2}}} \\
-\text{Stacked\ exponents} & {g(y) = e_{}^{- \sum\limits_{i = 0}^{\infty}y_{i}^{2}}} \\
-\text{Stacked\ exponents} & {g(z) = e_{}^{- \sum\limits_{i = 0}^{\infty}z_{}^{\frac{2}{a - i}}}} \\
-\text{Cross\ Product} & {\frac{x_{1}^{} - x_{2}^{}}{x_{3}^{} - x_{4}^{}}\frac{x_{1}^{} - x_{4}^{}}{x_{2}^{} - x_{3}^{}}} \\
-\text{Cross\ Product} & {(\frac{x_{1}^{} - x_{2}^{}}{x_{3}^{} - x_{4}^{}})(\frac{x_{1}^{} - x_{4}^{}}{x_{2}^{} - x_{3}^{}})} \\
-\text{Cross\ Product} & {\left( \frac{x_{1}^{} - x_{2}^{}}{x_{3}^{} - x_{4}^{}} \right)\left( \frac{x_{1}^{} - x_{4}^{}}{x_{2}^{} - x_{3}^{}} \right)} \\
-\text{Cross\ Product} & \frac{(x_{1}^{} - x_{2}^{})(x_{3}^{} - x_{4}^{})}{(x_{1}^{} - x_{4}^{})(x_{2}^{} - x_{3}^{})} \\
+\text{Quadratic Equation} & {x = \frac{- b \pm \sqrt{b_{}^{2} - 4ac}}{2a}} \\
+\text{DisplayQuadratic Equation} & {x = \frac{- b \pm \sqrt{b_{}^{2} - 4ac}}{2a}} \\
+\text{Rational Function} & {f(x) = \frac{1 - x_{}^{2}}{1 - x_{}^{3}}} \\
+\text{Rational Function} & {f(x) = \frac{(1 - x_{}^{2})x_{}^{3}}{1 - x_{}^{3}}} \\
+\text{Rational Function} & {f(x) = \frac{(1 - x_{}^{2})(x_{}^{3} - 5x)}{1 - x_{}^{3}}} \\
+\text{Parametrize Rational Function} & {f(x) = \frac{(a_{i}^{} - x_{}^{2})_{}^{5}}{1 - x_{}^{3}}} \\
+\text{Stacked exponents} & {g(z) = e_{}^{- x_{}^{2}}} \\
+\text{Stacked exponents} & {g(z) = e_{}^{- (z - a)_{}^{2}}} \\
+\text{Stacked exponents} & {g(z) = e_{}^{- \sum\limits_{i = 0}^{\infty}z_{i}^{2}}} \\
+\text{Stacked exponents} & {g(y) = e_{}^{- \sum\limits_{i = 0}^{\infty}y_{i}^{2}}} \\
+\text{Stacked exponents} & {g(z) = e_{}^{- \sum\limits_{i = 0}^{\infty}z_{}^{\frac{2}{a - i}}}} \\
+\text{Cross Product} & {\frac{x_{1}^{} - x_{2}^{}}{x_{3}^{} - x_{4}^{}}\frac{x_{1}^{} - x_{4}^{}}{x_{2}^{} - x_{3}^{}}} \\
+\text{Cross Product} & {(\frac{x_{1}^{} - x_{2}^{}}{x_{3}^{} - x_{4}^{}})(\frac{x_{1}^{} - x_{4}^{}}{x_{2}^{} - x_{3}^{}})} \\
+\text{Cross Product} & {\left( \frac{x_{1}^{} - x_{2}^{}}{x_{3}^{} - x_{4}^{}} \right)\left( \frac{x_{1}^{} - x_{4}^{}}{x_{2}^{} - x_{3}^{}} \right)} \\
+\text{Cross Product} & \frac{(x_{1}^{} - x_{2}^{})(x_{3}^{} - x_{4}^{})}{(x_{1}^{} - x_{4}^{})(x_{2}^{} - x_{3}^{})}
 \end{matrix}
diff --git a/test/writer/tex/complex3.test b/test/writer/tex/complex3.test
--- a/test/writer/tex/complex3.test
+++ b/test/writer/tex/complex3.test
@@ -7736,7 +7736,7 @@
 {{\frac{2}{5} + \frac{3}{7}} = \frac{{2 \cdot 7} + {3 \cdot 5}}{35} = \frac{29}{35}} & \\
 {|a| = \left\{ \begin{matrix}
 a & \text{if} & {a \geq 0} \\
-{- a} & \text{if} & {a < 0} \\
+{- a} & \text{if} & {a < 0}
 \end{matrix} \right.} & \\
 {a^{n} = \underset{n\text{ factors}}{\underset{︸}{a \cdot a \cdot \cdots \cdot a}}} & \\
 {\left( \frac{a}{b} \right)^{- n} = \left( \frac{b}{a} \right)^{n}} & \\
@@ -7748,7 +7748,7 @@
 {({x + y})}^{2} & \\
 {H = \left\{ {{\begin{pmatrix}
 a & b \\
-c & d \\
+c & d
 \end{pmatrix} \in G} \mid {{{ad} - {bc}} = 1}} \right\}} & \\
 {{{|x|} + {||y||} + {\{ z\}} - {\lbrack{ac}\rbrack} + {(b)}} = {\lbrack{a,b}\rbrack}} & \\
 {x = 1} & \\
@@ -7762,40 +7762,40 @@
 \Gamma_{1_{\mspace{1mu}^{\begin{matrix}
 2_{\mspace{1mu}^{\begin{matrix}
 3 \\
-4 \\
+4
 \end{matrix}}}^{} \\
 5_{\mspace{1mu}^{\begin{matrix}
 6 \\
-7 \\
-\end{matrix}}}^{} \\
+7
+\end{matrix}}}^{}
 \end{matrix}}}^{}}^{1^{\begin{matrix}
 5^{\begin{matrix}
 7 \\
-6 \\
+6
 \end{matrix}} \\
 2^{\begin{matrix}
 4 \\
-3 \\
-\end{matrix}} \\
+3
+\end{matrix}}
 \end{matrix}}} & \\
 {{y(x)} = \frac{{xe^{x}} - e^{x} + 2}{e^{x}} = {x - 1 + \frac{2}{e^{x}}}} & \\
 \begin{array}{r}
 {{{\mathbb{D}_{x\hspace{0pt}x}y} - y} = 0} \\
 {{y{(0)}} = 1} \\
-{{y^{\prime}(0)} = 0} \\
+{{y^{\prime}(0)} = 0}
 \end{array} & \\
 {{y(x)} = {{\frac{1}{3}e^{{- \sqrt[3]{({- 1})}}x}} + {\frac{2}{3}e^{\frac{1}{2}\sqrt[3]{({- 1})}x}{\cos{\frac{1}{2}\sqrt{3}\sqrt[3]{\left( {- 1} \right)}x}}}}} & \\
 {{y(t)} = {2{\tan\left( {{2t} - {\frac{1}{4}\pi}} \right)}}} & \\
 {{\mathcal{F}\left( {\begin{matrix}
 e^{2\pi ix} \\
-{2\pi{{Dirac}\left( {x - {2\pi}} \right)}} \\
+{2\pi{{Dirac}\left( {x - {2\pi}} \right)}}
 \end{matrix},x,s} \right)} = \begin{pmatrix}
 {2\pi{{Dirac}\left( {s - {2\pi}} \right)}} \\
-{2\pi e^{{- 2}i\pi s}} \\
+{2\pi e^{{- 2}i\pi s}}
 \end{pmatrix}} & \\
 \begin{matrix}
 {x = 1} \\
-{{x + 3} = 123} \\
+{{x + 3} = 123}
 \end{matrix} & \\
 \begin{matrix}
 t & x & y & z \\
@@ -7809,7 +7809,7 @@
 .7 & 2.7265 & .8542 & {- .7265} \\
 .8 & 3.1873 & .5344 & {- 1.1873} \\
 .9 & 3.7077 & .0777 & {- 1.7077} \\
-1.0 & 4.2842 & {- .5424} & {- 2.2842} \\
+1.0 & 4.2842 & {- .5424} & {- 2.2842}
 \end{matrix} & \\
 {{K_{v}{(z)}} = {{BesselK}_{v}(z)}} & \\
 {{{z^{2}\frac{\mathbb{d}^{2}w}{\mathbb{d}z^{2}}} + {z\frac{\mathbb{d}w}{\mathbb{d}z}} - {\left( {z^{2} + v^{2}} \right)w}} = 0} & \\
@@ -7817,46 +7817,46 @@
 {{y\left( {t,x} \right)} = {{F_{1}\left( {{- x} - {at}} \right)} + {F_{2}\left( {x - {at}} \right)}}} & \\
 \begin{matrix}
 1 & 2 & 3 \\
-4 & 5 & 6 \\
+4 & 5 & 6
 \end{matrix} & \\
 {{{2x} + 1} = 5} & \\
 \begin{matrix}
 {1 = 3} \\
-{9 = 7} \\
+{9 = 7}
 \end{matrix} & \\
 \begin{matrix}
 {ab} \\
 {cd} \\
-{ef} \\
+{ef}
 \end{matrix} & \\
 \begin{matrix}
 {{x + {2y} - 3} = 5} \\
-{{{4x} - y - 5} = 98} \\
+{{{4x} - y - 5} = 98}
 \end{matrix} & \\
 \begin{matrix}
 {x = z} \\
-{1 = 3} \\
+{1 = 3}
 \end{matrix} & \\
 \begin{matrix}
 {{A_{1} = {{N_{0}{({\lambda;\Omega^{\prime}})}} - {\varphi{({\lambda;\Omega^{\prime}})}}}}\text{,}} \\
 {{A_{2} = {{\varphi{({\lambda;\Omega^{\prime}})}} - {\varphi{({\lambda;\Omega})}}}}\text{,}} \\
-{{A_{3} = {\mathcal{N}{({\lambda;\omega})}}}\text{.}} \\
+{{A_{3} = {\mathcal{N}{({\lambda;\omega})}}}\text{.}}
 \end{matrix} & \\
 \begin{matrix}
 {\sin\theta} \\
-{\cos\gamma} \\
+{\cos\gamma}
 \end{matrix} & \\
 {x = \begin{cases}
 x & {\text{if }{x < 0}} \\
-{- x} & {\text{if }{x \geq 0}} \\
+{- x} & {\text{if }{x \geq 0}}
 \end{cases}} & \\
 \begin{matrix}
 {LMRM} \\
-{LMRM} \\
+{LMRM}
 \end{matrix} & \\
 \begin{matrix}
 {MATH} \\
-{MATH} \\
+{MATH}
 \end{matrix} & \\
 \text{⋮} & \\
 {{\operatorname{\nabla\times}F} = 0} & \\
@@ -7865,7 +7865,7 @@
 {{\operatorname{\nabla\times}{({{xy},{yz},{zx}})}} = \begin{bmatrix}
 {- y} \\
 {- z} \\
-{- x} \\
+{- x}
 \end{bmatrix}} & \\
 {{\operatorname{\nabla\times}{({y,z,x})}} = \left( {{- 1},{- 1},{- 1}} \right) \neq 0} & \\
 {{x + y + \alpha} = 102} & \\
@@ -7877,60 +7877,60 @@
 {{\nabla\left( {{cuv} + {v^{2}w}} \right)} = \left( {{uv},{cv},{{cu} + {2vw}},v^{2}} \right)} & \\
 \begin{matrix}
 {{D_{u}{f\left( {a,b,c} \right)}} = {{\nabla{f\left( {a,b,c} \right)}} \cdot \mathbf{u}}} \\
-{= {{{\frac{\partial f}{\partial x}\left( {a,b,c} \right)}u_{1}} + {{\frac{\partial f}{\partial y}\left( {a,b,c} \right)}u_{2}} + {{\frac{\partial f}{\partial z}\left( {a,b,c} \right)}u_{3}}}} \\
+{= {{{\frac{\partial f}{\partial x}\left( {a,b,c} \right)}u_{1}} + {{\frac{\partial f}{\partial y}\left( {a,b,c} \right)}u_{2}} + {{\frac{\partial f}{\partial z}\left( {a,b,c} \right)}u_{3}}}}
 \end{matrix} & \\
 {{\theta \in \left\{ {\pi + {2X_{3}\pi} - \left( {\arccos{\frac{1}{7}\sqrt{14}}} \right)} \middle| {X_{3} \in {\mathbb{Z}}} \right\}},{\theta \in \left\{ {{2X_{4}\pi} - \pi + \left( {\arccos{\frac{1}{7}\sqrt{14}}} \right)} \middle| {X_{4} \in {\mathbb{Z}}} \right\}}} & \\
 {P = {A\left( {A^{T}A} \right)^{- 1}A^{T}}} & \\
 {{\det\begin{pmatrix}
 x & y & 1 \\
 a & b & 1 \\
-a & d & 1 \\
+a & d & 1
 \end{pmatrix}} = {{xb} - {xd} + {ad} - {ab}} = 0} & \\
 {{{A(\theta)}{A\left( {- \theta} \right)}} = {\begin{bmatrix}
 {\cos\theta} & {- {\sin\theta}} \\
-{\sin\theta} & {\cos\theta} \\
+{\sin\theta} & {\cos\theta}
 \end{bmatrix}\begin{bmatrix}
 {\cos\theta} & {\sin\theta} \\
-{- {\sin\theta}} & {\cos\theta} \\
+{- {\sin\theta}} & {\cos\theta}
 \end{bmatrix}}} & \\
 {{J{(A)}} = \begin{bmatrix}
 {J_{n_{1}}\left( \lambda_{1} \right)} & 0 & \cdots & 0 \\
 0 & {J_{n_{2}}\left( \lambda_{2} \right)} & \cdots & 0 \\
 \text{⋮} & \text{⋮} & \text{⋱} & \text{⋮} \\
-0 & 0 & \cdots & {J_{n_{k}}\left( \lambda_{k} \right)} \\
+0 & 0 & \cdots & {J_{n_{k}}\left( \lambda_{k} \right)}
 \end{bmatrix}} & \\
 {{\det\begin{pmatrix}
 {{- 4} + X} & {- 1} & 0 \\
 0 & {{- 4} + X} & 0 \\
-0 & 0 & {{- 4} + X} \\
+0 & 0 & {{- 4} + X}
 \end{pmatrix}} = \left( {X - 4} \right)^{3}} & \\
 \left. \left\{ \begin{pmatrix}
 {{- \frac{1}{2}} - {\frac{1}{6}\sqrt{33}}} \\
-1 \\
+1
 \end{pmatrix} \right\}\leftrightarrow{\frac{5}{2} - {\frac{1}{2}\sqrt{33}}} \right. & \\
 {\left. \parallel A\parallel \right. = {\max\limits_{x \neq 0}\frac{\left. \parallel{Ax}\parallel \right.}{\left. \parallel x\parallel \right.}}} & \\
 {{\begin{pmatrix}
 a_{1\hspace{0pt}1} & a_{1\hspace{0pt}2} \\
-a_{2\hspace{0pt}1} & a_{2\hspace{0pt}2} \\
+a_{2\hspace{0pt}1} & a_{2\hspace{0pt}2}
 \end{pmatrix} + \begin{pmatrix}
 b_{1\hspace{0pt}1} & b_{1\hspace{0pt}2} \\
-b_{2\hspace{0pt}1} & b_{2\hspace{0pt}2} \\
+b_{2\hspace{0pt}1} & b_{2\hspace{0pt}2}
 \end{pmatrix}} = \begin{pmatrix}
 {a_{1\hspace{0pt}1} + b_{1\hspace{0pt}1}} & {a_{1\hspace{0pt}2} + b_{1\hspace{0pt}2}} \\
-{a_{2\hspace{0pt}1} + b_{2\hspace{0pt}1}} & {a_{2\hspace{0pt}2} + b_{2\hspace{0pt}2}} \\
+{a_{2\hspace{0pt}1} + b_{2\hspace{0pt}1}} & {a_{2\hspace{0pt}2} + b_{2\hspace{0pt}2}}
 \end{pmatrix}} & \\
 {{f\left( \begin{bmatrix}
 1 & 2 \\
-4 & 3 \\
+4 & 3
 \end{bmatrix} \right)} = {\begin{bmatrix}
 1 & 2 \\
-4 & 3 \\
+4 & 3
 \end{bmatrix}^{2} - {5\begin{bmatrix}
 1 & 2 \\
-4 & 3 \\
+4 & 3
 \end{bmatrix}} - 2} = \begin{bmatrix}
 2 & {- 2} \\
-{- 4} & 0 \\
+{- 4} & 0
 \end{bmatrix}} & \\
 {x = {\lim\limits_{x = 1}{\sum\limits_{1}^{2}a}}} & \\
 {{\int_{a}^{b}{{f{(x)}}{\mathbb{d}x}}} = {\lim\limits_{{\parallel P\parallel}\rightarrow 0}{\sum\limits_{i = 1}^{n}{{f\left( {\overline{x}}_{i} \right)}{\Delta x_{i}}}}}} & \\
@@ -7947,13 +7947,13 @@
 {{x \bigtriangledown y} = {\eta\left( {{\eta(x)} \bigtriangleup {\eta(y)}} \right)}} & \\
 {{x{\bigtriangleup_{0}y}} = \left\{ \begin{matrix}
 {x \land y} & \text{if} & {x \vee {y = 1}} \\
-0 & \text{if} & {x \vee {y < 1}} \\
+0 & \text{if} & {x \vee {y < 1}}
 \end{matrix} \right.} & \\
 {{\lim\limits_{a\rightarrow 1^{+}}{\log_{a}\left\lbrack {1 + \frac{\left( {a^{x} - 1} \right)\left( {a^{y} - 1} \right)}{a - 1}} \right\rbrack}} = {\lim\limits_{a\rightarrow 1^{-}}{\log_{a}\left\lbrack {1 + \frac{\left( {a^{x} - 1} \right)\left( {a^{y} - 1} \right)}{a - 1}} \right\rbrack}} = {xy}} & \\
 {{g{(x)}} = {\exp\left( {- \frac{1 - \left( {1 - x} \right)^{a}}{\left( {2^{a} - 1} \right)\left( {1 - x} \right)^{a}}} \right)}} & \\
 {{\operatorname{Aut}{(\mathbf{I})}} = \left\{ {f:\left. \left\lbrack {0,1} \right\rbrack\rightarrow\left\lbrack {0,1} \right\rbrack \right.}\;\left| \begin{array}{l}
-{f\text{ is\ one-to-one\ and\ onto,\ and}} \\
-{{x \leq y}\text{ implies }{{f(x)} \leq {f(y)}}} \\
+{f\text{ is one-to-one and onto, and}} \\
+{{x \leq y}\text{ implies }{{f(x)} \leq {f(y)}}}
 \end{array} \right. \right\}} & \\
 {{{x^{2} + y^{2}} = r^{2}},\text{\quad\quad}{{\tan\theta} = \frac{y}{x}}} & \\
 {\sqrt{2}\sqrt{1 - t^{2}}} & \\
@@ -7970,23 +7970,23 @@
 7 & 3 & 10 & 6 & 2 & 9 & 5 & 1 & 8 & 4 \\
 8 & 5 & 2 & 10 & 7 & 4 & 1 & 9 & 6 & 3 \\
 9 & 7 & 5 & 3 & 1 & 10 & 8 & 6 & 4 & 2 \\
-10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1 \\
-\end{matrix} \\
+10 & 9 & 8 & 7 & 6 & 5 & 4 & 3 & 2 & 1
+\end{matrix}
 \end{matrix} & \\
 \begin{matrix}
-{\text{testing }x^{2}\text{ end.}} \\
+{\text{testing }x^{2}\text{ end.}}
 \end{matrix} & \\
 \begin{matrix}
-\text{x} \\
+\text{x}
 \end{matrix} & \\
 \begin{matrix}
-x \\
+x
 \end{matrix} & \\
 \begin{matrix}
-\text{x} \\
+\text{x}
 \end{matrix} & \\
 \begin{matrix}
-x \\
+x
 \end{matrix} & \\
 {{\frac{\mathbb{d}f}{\mathbb{d}x}{(x_{1})}} = 5} & \\
 {{\int{x{\mathbb{d}x}}} = {\iint{xy{\mathbb{d}x}{\mathbb{d}y}}} = {\iiint{xyz{\mathbb{d}x}{\mathbb{d}y}{\mathbb{d}z}}} = {\iiiint{xyzt{\mathbb{d}x}{\mathbb{d}y}{\mathbb{d}z}{\mathbb{d}t}}}} & \\
@@ -7999,7 +7999,7 @@
 \begin{matrix}
  + & 0 & 1 \\
 000 & 000 & 111 \\
-1 & 1 & 0 \\
+1 & 1 & 0
 \end{matrix} & \\
 4.\, 974\, 9 & \\
 {\frac{\mathbb{d}}{\mathbb{d}x}{F{(x)}}} & \\
@@ -8014,10 +8014,10 @@
  \cdot & \cdot & \cdot & \mspace{1mu} & \mspace{1mu} & \cdot \\
  \cdot & \cdot & \mspace{1mu} & \cdot & \mspace{1mu} & \cdot \\
  \cdot & \cdot & \mspace{1mu} & \mspace{1mu} & \cdot & \cdot \\
-a_{n\hspace{0pt}1} & a_{n\hspace{0pt}2} & \cdot & \cdot & \cdot & a_{n\hspace{0pt}n} \\
+a_{n\hspace{0pt}1} & a_{n\hspace{0pt}2} & \cdot & \cdot & \cdot & a_{n\hspace{0pt}n}
 \end{matrix} \right| = {{a_{1\hspace{0pt}1}A_{1\hspace{0pt}1}} + {a_{1\hspace{0pt}2}A_{1\hspace{0pt}2}} + \cdots + {a_{1\hspace{0pt}n}A_{1\hspace{0pt}n}}}} & \\
-{{x = 1}{(\text{hl\ text }x\text{ end.})}} & \\
-{{x = 1}{(\text{hl\ to\ URI }x\text{ end})}} & \\
+{{x = 1}{(\text{hl text }x\text{ end.})}} & \\
+{{x = 1}{(\text{hl to URI }x\text{ end})}} & \\
 {{x = 1}{(\text{sex})}} & \\
 {{x = 1}{(\text{jbm})}} & \\
  & \\
@@ -8025,7 +8025,7 @@
 {\left. \frac{123}{\frac{456}{A}} \right|\left. \parallel\frac{A}{\frac{B}{A}} \right.{\left. /\frac{1}{\frac{2}{A}}/ \right.\left( \frac{3}{\frac{4}{A}} \right)}\left. \updownarrow\frac{5}{\frac{6}{A}}\updownarrow \right.\frac{7}{\frac{8}{A}}\left. \Updownarrow\frac{\frac{9}{20}}{\frac{10}{A}}\Updownarrow \right.{\left. \uparrow\frac{11}{\frac{12}{A}}\uparrow \right.\left. \Uparrow\frac{13}{\frac{14}{A}}\Uparrow \right.}\left. \downarrow\frac{15}{\frac{16}{A}}\downarrow \right.\left. \Downarrow\frac{17}{\frac{18}{A}}\Downarrow \right.} & \\
 {x\begin{matrix}
 x & x \\
-x & x \\
+x & x
 \end{matrix}x} & \\
 {{\left( {a_{1},a_{2},\ldots,a_{n}} \right) \cdot \left( {b_{1},b_{2},\ldots,b_{n}} \right)} = {{a_{1}b_{1}^{*}} + {a_{2}b_{2}^{*}} + \cdots + {a_{n}b_{n}^{*}}}} & \\
 {\left\lfloor \frac{n}{5} \right\rfloor + \left\lfloor \frac{n}{5^{2}} \right\rfloor + \left\lfloor \frac{n}{5^{3}} \right\rfloor + \left\lfloor \frac{n}{5^{4}} \right\rfloor + \cdots} & \\
@@ -8049,35 +8049,35 @@
 \begin{matrix}
 \begin{matrix}
 {x + \sqrt[2]{\frac{a^{y - 1}}{12.34}}} & {\sin\theta} \\
-\mspace{1mu} & 1 \\
-\end{matrix} \\
+\mspace{1mu} & 1
+\end{matrix}
 \end{matrix} & \\
 \begin{matrix}
 0 & 1 \\
-1 & 0 \\
+1 & 0
 \end{matrix} & \\
 \begin{pmatrix}
 0 & {- i} \\
-i & 0 \\
+i & 0
 \end{pmatrix} & \\
 \begin{bmatrix}
 1 & 0 \\
-0 & {- 1} \\
+0 & {- 1}
 \end{bmatrix} & \\
 \left| \begin{matrix}
 a & b \\
-c & d \\
+c & d
 \end{matrix} \right| & \\
 \left. \parallel\begin{matrix}
 1 & 0 & 1 \\
-0 & 11 & \mspace{1mu} \\
+0 & 11 & \mspace{1mu}
 \end{matrix}\parallel \right. & \\
 \begin{matrix}
 1 & 2 & 3 \\
-4 & 5 & \mspace{1mu} \\
+4 & 5 & \mspace{1mu}
 \end{matrix} & \\
 {\text{testing }\begin{matrix}
-{\sin\theta} \\
+{\sin\theta}
 \end{matrix}} & \\
 {\widehat{a} + \check{b} + \widetilde{c} + \acute{d} + \grave{e} + \breve{f} + \overline{g} + h + \overset{˚}{i} + \overset{˙}{j} + \overset{¨}{k} + \dddot{l} + \ddddot{m} + \overset{\rightarrow}{n}} & \\
 {{f{({g{(x)}})}} = {{\sin^{3}x^{2}} + {{\sin x^{2}}{\sin\left( {\sin x^{2}} \right)}}}} & \\
@@ -8085,51 +8085,51 @@
 \begin{matrix}
 {x = 1} & \text{not} & \text{here} \\
 x^{2} & \text{merged} & y_{1} \\
-\text{jbm} & \text{lowlife} & \text{The\ end.} \\
+\text{jbm} & \text{lowlife} & \text{The end.}
 \end{matrix} & \\
 {{x^{2} + y^{2}} = {z^{2} - 1}} & \\
 \begin{matrix}
 {{x^{2} + y^{2}} = {z^{2} - 1}} \\
-{{x + y^{3}} = z^{3}} \\
+{{x + y^{3}} = z^{3}}
 \end{matrix} & \\
 \begin{matrix}
 {{x^{2} + y^{2}} = {z^{2} - 1}} \\
-{{x + y^{3}} = z^{3}} \\
+{{x + y^{3}} = z^{3}}
 \end{matrix} & \\
 \begin{matrix}
 {{x^{2} + y^{2}} = 1} \\
-{x = \sqrt{1 - y^{2}}} \\
+{x = \sqrt{1 - y^{2}}}
 \end{matrix} & \\
 \begin{matrix}
 {{({a + b})}^{2} = {a^{2} + {2ab} + b^{2}}} \\
-{{{({a + b})} \cdot {({a - b})}} = {a^{2} - b^{2}}} \\
+{{{({a + b})} \cdot {({a - b})}} = {a^{2} - b^{2}}}
 \end{matrix} & \\
 \begin{matrix}
-\text{First\ line\ of\ equation} \\
-\text{Middle\ line\ of\ equation} \\
-\text{Other\ middle\ line\ of\ equation} \\
-\text{Last\ line\ of\ equation} \\
+\text{First line of equation} \\
+\text{Middle line of equation} \\
+\text{Other middle line of equation} \\
+\text{Last line of equation}
 \end{matrix} & \\
 \begin{matrix}
 {{L_{1} = R_{1}}\text{\quad\quad}{L_{2} = R_{2}}} \\
-{{L_{3} = R_{3}}\text{\quad\quad}{L_{4} = R_{4}}} \\
+{{L_{3} = R_{3}}\text{\quad\quad}{L_{4} = R_{4}}}
 \end{matrix} & \\
 \begin{matrix}
 {{({a + b})}^{4} = {{({a + b})}^{2}{({a + b})}^{2}}} \\
 {= {{({a^{2} + {2ab} + b^{2}})}{({a^{2} + {2ab} + b^{2}})}}} \\
-{= {a^{4} + {4a^{3}b} + {6a^{2}b^{2}} + {4ab^{3}} + b^{4}}} \\
+{= {a^{4} + {4a^{3}b} + {6a^{2}b^{2}} + {4ab^{3}} + b^{4}}}
 \end{matrix} & \\
 {\begin{matrix}
 {{x^{2} + y^{2}} = 1} \\
-{x = \sqrt{1 - y^{2}}} \\
+{x = \sqrt{1 - y^{2}}}
 \end{matrix}\text{\quad\quad}\begin{matrix}
 {{({a + b})}^{2} = {a^{2} + {2ab} + b^{2}}} \\
-{{{({a + b})} \cdot {({a - b})}} = {a^{2} - b^{2}}} \\
+{{{({a + b})} \cdot {({a - b})}} = {a^{2} - b^{2}}}
 \end{matrix}} & \\
 \begin{matrix}
 \text{Vertex} & {V{({0,0})}} \\
 \text{Focus} & {F{({0,p})}} \\
-\text{Directrix} & {y = {- p}} \\
+\text{Directrix} & {y = {- p}}
 \end{matrix} & \\
 {{\frac{\mathbb{d}}{\mathbb{d}x}\text{  }{({\csc^{- 1}x})}} = {- \frac{1}{|x|\sqrt{x^{2} - 1}}}} & \\
 {{{\tanh^{- 1}x} = {\frac{1}{2}{\ln\left( \frac{1 + x}{1 - x} \right)}}}\text{\quad\quad}{{- 1} < x < 1}} & \\
@@ -8140,10 +8140,10 @@
 \begin{matrix}
 {{{2x} + y} = 3} \\
 {{{3x} - {4y}} = 5} \\
-{{a + b} = {c + 12345}} \\
+{{a + b} = {c + 12345}}
 \end{matrix} & \\
 \begin{matrix}
-\text{Unrestricted} & \text{\quad\quad\quad} & \text{Symmetric} & \quad & \text{Antisymmetric} & \text{\quad\quad} & \text{Triangular} \\
+\text{Unrestricted} & \text{\quad\quad\quad} & \text{Symmetric} & \quad & \text{Antisymmetric} & \text{\quad\quad} & \text{Triangular}
 \end{matrix} & \\
 {a \neq b \neq x} & \\
 {c \nless d \nless y} & \\
@@ -8160,16 +8160,16 @@
 {\lim\limits_{\leftarrow}x} & \\
 \begin{matrix}
 {x = {y + z}} \\
-{= {k + m}} \\
+{= {k + m}}
 \end{matrix} & \\
 {\begin{array}{l}
-{\text{College\ Algebra }\text{Second\ Edition}} \\
-{\text{James\ Stewart }\text{McMaster\ Universitiy}} \\
-{\text{Lothar\ Redlin}\text{ Pennsylvania\ State\ University}} \\
-{\text{Saleem\ Watson}\text{ California\ State\ University,\ Long\ Beach}} \\
-\text{Copyright\ 1996,\ ISBN\ 0\ 534-33983-2} \\
-\text{Brooks/Cole\ Publishing\ Company} \\
-\text{An\ International\ Thomson\ Publishing\ Company} \\
+{\text{College Algebra }\text{Second Edition}} \\
+{\text{James Stewart }\text{McMaster Universitiy}} \\
+{\text{Lothar Redlin}\text{ Pennsylvania State University}} \\
+{\text{Saleem Watson}\text{ California State University, Long Beach}} \\
+\text{Copyright 1996, ISBN 0 534-33983-2} \\
+\text{Brooks/Cole Publishing Company} \\
+\text{An International Thomson Publishing Company}
 \end{array}\;} & \\
 \left\{ \frac{\frac{1}{2}}{\frac{1}{2}}\uparrow\sum\limits_{1}^{2} \right\} & \\
 \left\langle \frac{\frac{1}{2}}{\frac{1}{2}} \middle| \sum\limits_{1}^{2} \right\rangle & \\
@@ -8222,5 +8222,5 @@
 \frac{\sin\theta}{M} & \\
 \frac{\sin\theta}{M} & \\
 \frac{\sin\theta}{M} & \\
-\frac{\sin\theta}{M} & \\
+\frac{\sin\theta}{M} & 
 \end{matrix}
diff --git a/test/writer/tex/complex_number.test b/test/writer/tex/complex_number.test
--- a/test/writer/tex/complex_number.test
+++ b/test/writer/tex/complex_number.test
@@ -24,4 +24,4 @@
     (EText TextNormal "complex number")
 ]
 >>> tex
-c = \overset{\text{complex\ number}}{\overbrace{\underset{\text{real}}{\underbrace{a}} + \underset{\text{imaginary}}{\underbrace{b\mathrm{i}}}}}
+c = \overset{\text{complex number}}{\overbrace{\underset{\text{real}}{\underbrace{a}} + \underset{\text{imaginary}}{\underbrace{b\mathrm{i}}}}}
diff --git a/test/writer/tex/d.test b/test/writer/tex/d.test
--- a/test/writer/tex/d.test
+++ b/test/writer/tex/d.test
@@ -310,5 +310,5 @@
 \text{dwangle} & ⦦ \\
 \text{dzcy} & џ \\
 \text{DZcy} & Џ \\
-\text{dzigrarr} & ⟿ \\
+\text{dzigrarr} & ⟿
 \end{matrix}
diff --git a/test/writer/tex/differentiable_manifold.test b/test/writer/tex/differentiable_manifold.test
--- a/test/writer/tex/differentiable_manifold.test
+++ b/test/writer/tex/differentiable_manifold.test
@@ -60,6 +60,6 @@
 ]
 >>> tex
 \gamma_{1} \equiv \gamma_{2} \Leftrightarrow \left\{ \begin{array}{l}
-\gamma_{1}(0) = \gamma_{2}(0) = p,\text{\ and\ } \\
-\left. \frac{\mathrm{d}}{\mathrm{d}t}\phi \circ \gamma_{1}(t) \right|_{t = 0} = \left. \frac{\mathrm{d}}{\mathrm{d}t}\phi \circ \gamma_{2}(t) \right|_{t = 0} \\
+\gamma_{1}(0) = \gamma_{2}(0) = p,\text{ and } \\
+\left. \frac{\mathrm{d}}{\mathrm{d}t}\phi \circ \gamma_{1}(t) \right|_{t = 0} = \left. \frac{\mathrm{d}}{\mathrm{d}t}\phi \circ \gamma_{2}(t) \right|_{t = 0}
 \end{array} \right.
diff --git a/test/writer/tex/double-struck.test b/test/writer/tex/double-struck.test
--- a/test/writer/tex/double-struck.test
+++ b/test/writer/tex/double-struck.test
@@ -13,5 +13,5 @@
 \mathbb{\begin{array}{l}
 \text{0123456789} \\
 \text{ABCDEFGHIJKLMNOPQRSTUVWXYZ} \\
-\text{abcdefghijklmnopqrstuvwxyz} \\
+\text{abcdefghijklmnopqrstuvwxyz}
 \end{array}}
diff --git a/test/writer/tex/e.test b/test/writer/tex/e.test
--- a/test/writer/tex/e.test
+++ b/test/writer/tex/e.test
@@ -178,5 +178,5 @@
 \text{Exists} & \exists \\
 \text{expectation} & \mathcal{E} \\
 \text{exponentiale} & \mathbb{e} \\
-\text{ExponentialE} & \mathbb{e} \\
+\text{ExponentialE} & \mathbb{e}
 \end{matrix}
diff --git a/test/writer/tex/f.test b/test/writer/tex/f.test
--- a/test/writer/tex/f.test
+++ b/test/writer/tex/f.test
@@ -96,5 +96,5 @@
 \text{frac78} & ⅞ \\
 \text{frown} & \frown \\
 \text{fscr} & \mathcal{f} \\
-\text{Fscr} & \mathcal{F} \\
+\text{Fscr} & \mathcal{F}
 \end{matrix}
diff --git a/test/writer/tex/fraktur-bold.test b/test/writer/tex/fraktur-bold.test
--- a/test/writer/tex/fraktur-bold.test
+++ b/test/writer/tex/fraktur-bold.test
@@ -11,5 +11,5 @@
 >>> tex
 \mathfrak{\begin{array}{l}
 \text{ABCDEFGHIJKLMNOPQRSTUVWXYZ} \\
-\text{abcdefghijklmnopqrstuvwxyz} \\
+\text{abcdefghijklmnopqrstuvwxyz}
 \end{array}}
diff --git a/test/writer/tex/fraktur.test b/test/writer/tex/fraktur.test
--- a/test/writer/tex/fraktur.test
+++ b/test/writer/tex/fraktur.test
@@ -11,5 +11,5 @@
 >>> tex
 \mathfrak{\begin{array}{l}
 \text{ABCDEFGHIJKLMNOPQRSTUVWXYZ} \\
-\text{abcdefghijklmnopqrstuvwxyz} \\
+\text{abcdefghijklmnopqrstuvwxyz}
 \end{array}}
diff --git a/test/writer/tex/g.test b/test/writer/tex/g.test
--- a/test/writer/tex/g.test
+++ b/test/writer/tex/g.test
@@ -172,5 +172,5 @@
 \text{gtrless} & \gtrless \\
 \text{gtrsim} & \gtrsim \\
 \text{gvertneqq} & \operatorname{\gneqq} \\
-\text{gvnE} & \operatorname{\gneqq} \\
+\text{gvnE} & \operatorname{\gneqq}
 \end{matrix}
diff --git a/test/writer/tex/greek-bold-italic.test b/test/writer/tex/greek-bold-italic.test
--- a/test/writer/tex/greek-bold-italic.test
+++ b/test/writer/tex/greek-bold-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝜜𝜝𝜞𝜟𝜠𝜡𝜢𝜣𝜤𝜥𝜦𝜧𝜨𝜩𝜪𝜫𝜬𝜭𝜮𝜯𝜰𝜱𝜲𝜳𝜴𝜵} \\
-\text{𝜶𝜷𝜸𝜹𝜺𝜻𝜼𝜽𝜾𝜿𝝀𝝁𝝂𝝃𝝄𝝅𝝆𝝇𝝈𝝉𝝊𝝋𝝌𝝍𝝎𝝏𝝐𝝑𝝒𝝓𝝔𝝕} \\
+\text{𝜶𝜷𝜸𝜹𝜺𝜻𝜼𝜽𝜾𝜿𝝀𝝁𝝂𝝃𝝄𝝅𝝆𝝇𝝈𝝉𝝊𝝋𝝌𝝍𝝎𝝏𝝐𝝑𝝒𝝓𝝔𝝕}
 \end{array}
diff --git a/test/writer/tex/greek-bold.test b/test/writer/tex/greek-bold.test
--- a/test/writer/tex/greek-bold.test
+++ b/test/writer/tex/greek-bold.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝚨𝚩𝚪𝚫𝚬𝚭𝚮𝚯𝚰𝚱𝚲𝚳𝚴𝚵𝚶𝚷𝚸𝚹𝚺𝚻𝚼𝚽𝚾𝚿𝛀𝛁} \\
-\text{𝛂𝛃𝛄𝛅𝛆𝛇𝛈𝛉𝛊𝛋𝛌𝛍𝛎𝛏𝛐𝛑𝛒𝛓𝛔𝛕𝛖𝛗𝛘𝛙𝛚𝛛𝛜𝛝𝛞𝛟𝛠𝛡} \\
+\text{𝛂𝛃𝛄𝛅𝛆𝛇𝛈𝛉𝛊𝛋𝛌𝛍𝛎𝛏𝛐𝛑𝛒𝛓𝛔𝛕𝛖𝛗𝛘𝛙𝛚𝛛𝛜𝛝𝛞𝛟𝛠𝛡}
 \end{array}
diff --git a/test/writer/tex/greek-italic.test b/test/writer/tex/greek-italic.test
--- a/test/writer/tex/greek-italic.test
+++ b/test/writer/tex/greek-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝛢𝛣𝛤𝛥𝛦𝛧𝛨𝛩𝛪𝛫𝛬𝛭𝛮𝛯𝛰𝛱𝛲𝛳𝛴𝛵𝛶𝛷𝛸𝛹𝛺𝛻} \\
-\text{𝛼𝛽𝛾𝛿𝜀𝜁𝜂𝜃𝜄𝜅𝜆𝜇𝜈𝜉𝜊𝜋𝜌𝜍𝜎𝜏𝜐𝜑𝜒𝜓𝜔𝜕𝜖𝜗𝜘𝜙𝜚𝜛} \\
+\text{𝛼𝛽𝛾𝛿𝜀𝜁𝜂𝜃𝜄𝜅𝜆𝜇𝜈𝜉𝜊𝜋𝜌𝜍𝜎𝜏𝜐𝜑𝜒𝜓𝜔𝜕𝜖𝜗𝜘𝜙𝜚𝜛}
 \end{array}
diff --git a/test/writer/tex/greek-sans-serif-bold-italic.test b/test/writer/tex/greek-sans-serif-bold-italic.test
--- a/test/writer/tex/greek-sans-serif-bold-italic.test
+++ b/test/writer/tex/greek-sans-serif-bold-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝞐𝞑𝞒𝞓𝞔𝞕𝞖𝞗𝞘𝞙𝞚𝞛𝞜𝞝𝞞𝞟𝞠𝞡𝞢𝞣𝞤𝞥𝞦𝞧𝞨𝞩} \\
-\text{𝞪𝞫𝞬𝞭𝞮𝞯𝞰𝞱𝞲𝞳𝞴𝞵𝞶𝞷𝞸𝞹𝞺𝞻𝞼𝞽𝞾𝞿𝟀𝟁𝟂𝟃𝟄𝟅𝟆𝟇𝟈𝟉} \\
+\text{𝞪𝞫𝞬𝞭𝞮𝞯𝞰𝞱𝞲𝞳𝞴𝞵𝞶𝞷𝞸𝞹𝞺𝞻𝞼𝞽𝞾𝞿𝟀𝟁𝟂𝟃𝟄𝟅𝟆𝟇𝟈𝟉}
 \end{array}
diff --git a/test/writer/tex/greek-sans-serif-bold.test b/test/writer/tex/greek-sans-serif-bold.test
--- a/test/writer/tex/greek-sans-serif-bold.test
+++ b/test/writer/tex/greek-sans-serif-bold.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮𝝯} \\
-\text{𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺𝝻𝝼𝝽𝝾𝝿𝞀𝞁𝞂𝞃𝞄𝞅𝞆𝞇𝞈𝞉𝞊𝞋𝞌𝞍𝞎𝞏} \\
+\text{𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺𝝻𝝼𝝽𝝾𝝿𝞀𝞁𝞂𝞃𝞄𝞅𝞆𝞇𝞈𝞉𝞊𝞋𝞌𝞍𝞎𝞏}
 \end{array}
diff --git a/test/writer/tex/h.test b/test/writer/tex/h.test
--- a/test/writer/tex/h.test
+++ b/test/writer/tex/h.test
@@ -92,5 +92,5 @@
 \text{HumpDownHump} & \Bumpeq \\
 \text{HumpEqual} & \bumpeq \\
 \text{hybull} & ⁃ \\
-\text{hyphen} & ‐ \\
+\text{hyphen} & ‐
 \end{matrix}
diff --git a/test/writer/tex/i.test b/test/writer/tex/i.test
--- a/test/writer/tex/i.test
+++ b/test/writer/tex/i.test
@@ -156,5 +156,5 @@
 \text{iukcy} & і \\
 \text{Iukcy} & І \\
 \text{iuml} & ï \\
-\text{Iuml} & Ï \\
+\text{Iuml} & Ï
 \end{matrix}
diff --git a/test/writer/tex/intDispStyle.test b/test/writer/tex/intDispStyle.test
--- a/test/writer/tex/intDispStyle.test
+++ b/test/writer/tex/intDispStyle.test
@@ -100,8 +100,8 @@
 >>> tex
 \begin{matrix}
  & \text{ds=true} & \text{ds=false} \\
-\text{stretch=t,\ large=t} & {\left. \int\frac{x}{5} \right. = \left. \int x \right.} & {\left. \int\frac{x}{5} \right. = \left. \int x \right.} \\
-\text{stretch=f,\ large=t} & {{\int\frac{x}{5}} = {\int x}} & {{\int\frac{x}{5}} = {\int x}} \\
-\text{stretch=t,\ large=f} & {\left. \int\frac{x}{5} \right. = \left. \int\frac{A}{5} \right. = \left. \int x \right.} & {\left. \int\frac{x}{5} \right. = \left. \int\frac{A}{5} \right. = \left. \int x \right.} \\
-\text{stretch=f,\ large=f} & {{\int\frac{x}{5}} = {\int x}} & {{\int\frac{x}{5}} = {\int x}} \\
+\text{stretch=t, large=t} & {\left. \int\frac{x}{5} \right. = \left. \int x \right.} & {\left. \int\frac{x}{5} \right. = \left. \int x \right.} \\
+\text{stretch=f, large=t} & {{\int\frac{x}{5}} = {\int x}} & {{\int\frac{x}{5}} = {\int x}} \\
+\text{stretch=t, large=f} & {\left. \int\frac{x}{5} \right. = \left. \int\frac{A}{5} \right. = \left. \int x \right.} & {\left. \int\frac{x}{5} \right. = \left. \int\frac{A}{5} \right. = \left. \int x \right.} \\
+\text{stretch=f, large=f} & {{\int\frac{x}{5}} = {\int x}} & {{\int\frac{x}{5}} = {\int x}}
 \end{matrix}
diff --git a/test/writer/tex/intNested3.test b/test/writer/tex/intNested3.test
--- a/test/writer/tex/intNested3.test
+++ b/test/writer/tex/intNested3.test
@@ -163,7 +163,7 @@
 ]
 >>> tex
 \begin{matrix}
-\text{single\ integral} & {{\int x}{\int M}\left. \int\frac{x}{o} \right.\left. \int\frac{A}{o} \right.\left. \int\frac{x}{A} \right.\left. \int\frac{A}{M} \right.\left. \int\frac{.}{''} \right.} \\
-\text{double\ integral} & {\left. \int\left. \int x \right. \right.\left. \int\left. \int M \right. \right.\left. \int\left. \int\frac{x}{o} \right. \right.\left. \int\left. \int\frac{A}{o} \right. \right.\left. \int\left. \int\frac{x}{A} \right. \right.\left. \int\left. \int\frac{A}{M} \right. \right.\left. \int\left. \int\frac{.}{''} \right. \right.} \\
-\text{double\ nested\ integral} & {\left. \int\left. \int x \right. \right.\left. \int\left. \int M \right. \right.\left. \int\left. \int\frac{x}{o} \right. \right.\left. \int\left. \int\frac{A}{o} \right. \right.\left. \int\left. \int\frac{x}{A} \right. \right.\left. \int\left. \int\frac{A}{M} \right. \right.\left. \int\left. \int\frac{.}{''} \right. \right.} \\
+\text{single integral} & {{\int x}{\int M}\left. \int\frac{x}{o} \right.\left. \int\frac{A}{o} \right.\left. \int\frac{x}{A} \right.\left. \int\frac{A}{M} \right.\left. \int\frac{.}{''} \right.} \\
+\text{double integral} & {\left. \int\left. \int x \right. \right.\left. \int\left. \int M \right. \right.\left. \int\left. \int\frac{x}{o} \right. \right.\left. \int\left. \int\frac{A}{o} \right. \right.\left. \int\left. \int\frac{x}{A} \right. \right.\left. \int\left. \int\frac{A}{M} \right. \right.\left. \int\left. \int\frac{.}{''} \right. \right.} \\
+\text{double nested integral} & {\left. \int\left. \int x \right. \right.\left. \int\left. \int M \right. \right.\left. \int\left. \int\frac{x}{o} \right. \right.\left. \int\left. \int\frac{A}{o} \right. \right.\left. \int\left. \int\frac{x}{A} \right. \right.\left. \int\left. \int\frac{A}{M} \right. \right.\left. \int\left. \int\frac{.}{''} \right. \right.}
 \end{matrix}
diff --git a/test/writer/tex/intSize2.test b/test/writer/tex/intSize2.test
--- a/test/writer/tex/intSize2.test
+++ b/test/writer/tex/intSize2.test
@@ -77,8 +77,8 @@
 >>> tex
 \begin{matrix}
  & & \text{symm} & \text{stretch} & \text{symm/stretch} \\
-\text{small\ op} & {\int x} & {\int x} & \left. \int x \right. & \left. \int x \right. \\
-\text{large\ op} & {\int x} & {\int x} & \left. \int x \right. & \left. \int x \right. \\
-\text{small\ op} & {\int\frac{x}{y}} & {\int\frac{x}{y}} & \left. \int\frac{x}{y} \right. & \left. \int\frac{x}{y} \right. \\
-\text{large\ op} & {\int\frac{x}{y}} & {\int\frac{x}{y}} & \left. \int\frac{x}{y} \right. & \left. \int\frac{x}{y} \right. \\
+\text{small op} & {\int x} & {\int x} & \left. \int x \right. & \left. \int x \right. \\
+\text{large op} & {\int x} & {\int x} & \left. \int x \right. & \left. \int x \right. \\
+\text{small op} & {\int\frac{x}{y}} & {\int\frac{x}{y}} & \left. \int\frac{x}{y} \right. & \left. \int\frac{x}{y} \right. \\
+\text{large op} & {\int\frac{x}{y}} & {\int\frac{x}{y}} & \left. \int\frac{x}{y} \right. & \left. \int\frac{x}{y} \right.
 \end{matrix}
diff --git a/test/writer/tex/j.test b/test/writer/tex/j.test
--- a/test/writer/tex/j.test
+++ b/test/writer/tex/j.test
@@ -34,5 +34,5 @@
 \text{jsercy} & ј \\
 \text{Jsercy} & Ј \\
 \text{jukcy} & є \\
-\text{Jukcy} & Є \\
+\text{Jukcy} & Є
 \end{matrix}
diff --git a/test/writer/tex/k.test b/test/writer/tex/k.test
--- a/test/writer/tex/k.test
+++ b/test/writer/tex/k.test
@@ -38,5 +38,5 @@
 \text{kopf} & \Bbbk \\
 \text{Kopf} & \mathbb{K} \\
 \text{kscr} & \mathcal{k} \\
-\text{Kscr} & \mathcal{K} \\
+\text{Kscr} & \mathcal{K}
 \end{matrix}
diff --git a/test/writer/tex/l.test b/test/writer/tex/l.test
--- a/test/writer/tex/l.test
+++ b/test/writer/tex/l.test
@@ -516,5 +516,5 @@
 \text{lurdshar} & ⥊ \\
 \text{luruhar} & ⥦ \\
 \text{lvertneqq} & \operatorname{\lneqq} \\
-\text{lvnE} & \operatorname{\lneqq} \\
+\text{lvnE} & \operatorname{\lneqq}
 \end{matrix}
diff --git a/test/writer/tex/largeop1.test b/test/writer/tex/largeop1.test
--- a/test/writer/tex/largeop1.test
+++ b/test/writer/tex/largeop1.test
@@ -77,10 +77,10 @@
 ]
 >>> tex
 \begin{matrix}
-\text{displaystyle:\ false\ largeop:\ false} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
-\text{displaystyle:\ false\ largeop:\ true} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
-\text{displaystyle:\ true\ largeop:\ false} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
-\text{displaystyle:\ true\ largeop:\ true} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
-\text{displaystyle:\ false\ largeop:\ default} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
-\text{displaystyle:\ true\ largeop:\ default} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
+\text{displaystyle: false largeop: false} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
+\text{displaystyle: false largeop: true} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
+\text{displaystyle: true largeop: false} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
+\text{displaystyle: true largeop: true} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
+\text{displaystyle: false largeop: default} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap} \\
+\text{displaystyle: true largeop: default} & {\bigwedge\bigvee\int\sum\prod\bigcup\bigcap}
 \end{matrix}
diff --git a/test/writer/tex/latin-bold-italic.test b/test/writer/tex/latin-bold-italic.test
--- a/test/writer/tex/latin-bold-italic.test
+++ b/test/writer/tex/latin-bold-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁} \\
-\text{𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛} \\
+\text{𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛}
 \end{array}
diff --git a/test/writer/tex/latin-bold.test b/test/writer/tex/latin-bold.test
--- a/test/writer/tex/latin-bold.test
+++ b/test/writer/tex/latin-bold.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙} \\
-\text{𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳} \\
+\text{𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳}
 \end{array}
diff --git a/test/writer/tex/latin-italic.test b/test/writer/tex/latin-italic.test
--- a/test/writer/tex/latin-italic.test
+++ b/test/writer/tex/latin-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍} \\
-\text{𝑎𝑏𝑐𝑑𝑒𝑓𝑔ℎ𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧} \\
+\text{𝑎𝑏𝑐𝑑𝑒𝑓𝑔ℎ𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧}
 \end{array}
diff --git a/test/writer/tex/latin-sans-serif-bold-italic.test b/test/writer/tex/latin-sans-serif-bold-italic.test
--- a/test/writer/tex/latin-sans-serif-bold-italic.test
+++ b/test/writer/tex/latin-sans-serif-bold-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕} \\
-\text{𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯} \\
+\text{𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯}
 \end{array}
diff --git a/test/writer/tex/latin-sans-serif-bold.test b/test/writer/tex/latin-sans-serif-bold.test
--- a/test/writer/tex/latin-sans-serif-bold.test
+++ b/test/writer/tex/latin-sans-serif-bold.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭} \\
-\text{𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇} \\
+\text{𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇}
 \end{array}
diff --git a/test/writer/tex/latin-sans-serif-italic.test b/test/writer/tex/latin-sans-serif-italic.test
--- a/test/writer/tex/latin-sans-serif-italic.test
+++ b/test/writer/tex/latin-sans-serif-italic.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝘈𝘉𝘊𝘋𝘌𝘍𝘎𝘏𝘐𝘑𝘒𝘓𝘔𝘕𝘖𝘗𝘘𝘙𝘚𝘛𝘜𝘝𝘞𝘟𝘠𝘡} \\
-\text{𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻} \\
+\text{𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻}
 \end{array}
diff --git a/test/writer/tex/latin-sans-serif.test b/test/writer/tex/latin-sans-serif.test
--- a/test/writer/tex/latin-sans-serif.test
+++ b/test/writer/tex/latin-sans-serif.test
@@ -16,5 +16,5 @@
 >>> tex
 \begin{array}{l}
 \text{𝖠𝖡𝖢𝖣𝖤𝖥𝖦𝖧𝖨𝖩𝖪𝖫𝖬𝖭𝖮𝖯𝖰𝖱𝖲𝖳𝖴𝖵𝖶𝖷𝖸𝖹} \\
-\text{𝖺𝖻𝖼𝖽𝖾𝖿𝗀𝗁𝗂𝗃𝗄𝗅𝗆𝗇𝗈𝗉𝗊𝗋𝗌𝗍𝗎𝗏𝗐𝗑𝗒𝗓} \\
+\text{𝖺𝖻𝖼𝖽𝖾𝖿𝗀𝗁𝗂𝗃𝗄𝗅𝗆𝗇𝗈𝗉𝗊𝗋𝗌𝗍𝗎𝗏𝗐𝗑𝗒𝗓}
 \end{array}
diff --git a/test/writer/tex/m.test b/test/writer/tex/m.test
--- a/test/writer/tex/m.test
+++ b/test/writer/tex/m.test
@@ -98,5 +98,5 @@
 \text{mstpos} & ∾ \\
 \text{mu} & \mu \\
 \text{multimap} & \multimap \\
-\text{mumap} & \multimap \\
+\text{mumap} & \multimap 
 \end{matrix}
diff --git a/test/writer/tex/m10.test b/test/writer/tex/m10.test
--- a/test/writer/tex/m10.test
+++ b/test/writer/tex/m10.test
@@ -135,14 +135,14 @@
 ]
 >>> tex
 \begin{array}{l}
-{\text{Consider\ the\ equation~}{x^{0} + 0 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{1} + 1 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{2} + 2 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{3} + 3 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{4} + 4 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{5} + 5 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{6} + 6 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{7} + 7 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{8} + 8 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{9} + 9 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{0} + 0 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{1} + 1 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{2} + 2 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{3} + 3 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{4} + 4 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{5} + 5 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{6} + 6 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{7} + 7 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{8} + 8 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{9} + 9 = \beta}\text{.}}
 \end{array}
diff --git a/test/writer/tex/m100.test b/test/writer/tex/m100.test
--- a/test/writer/tex/m100.test
+++ b/test/writer/tex/m100.test
@@ -1305,104 +1305,104 @@
 ]
 >>> tex
 \begin{array}{l}
-{\text{Consider\ the\ equation~}{x^{0} + 0 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{1} + 1 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{2} + 2 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{3} + 3 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{4} + 4 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{5} + 5 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{6} + 6 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{7} + 7 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{8} + 8 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{9} + 9 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{10} + 10 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{11} + 11 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{12} + 12 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{13} + 13 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{14} + 14 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{15} + 15 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{16} + 16 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{17} + 17 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{18} + 18 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{19} + 19 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{20} + 20 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{21} + 21 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{22} + 22 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{23} + 23 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{24} + 24 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{25} + 25 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{26} + 26 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{27} + 27 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{28} + 28 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{29} + 29 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{30} + 30 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{31} + 31 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{32} + 32 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{33} + 33 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{34} + 34 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{35} + 35 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{36} + 36 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{37} + 37 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{38} + 38 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{39} + 39 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{40} + 40 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{41} + 41 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{42} + 42 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{43} + 43 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{44} + 44 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{45} + 45 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{46} + 46 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{47} + 47 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{48} + 48 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{49} + 49 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{50} + 50 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{51} + 51 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{52} + 52 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{53} + 53 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{54} + 54 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{55} + 55 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{56} + 56 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{57} + 57 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{58} + 58 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{59} + 59 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{60} + 60 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{61} + 61 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{62} + 62 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{63} + 63 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{64} + 64 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{65} + 65 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{66} + 66 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{67} + 67 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{68} + 68 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{69} + 69 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{70} + 70 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{71} + 71 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{72} + 72 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{73} + 73 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{74} + 74 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{75} + 75 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{76} + 76 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{77} + 77 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{78} + 78 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{79} + 79 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{80} + 80 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{81} + 81 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{82} + 82 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{83} + 83 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{84} + 84 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{85} + 85 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{86} + 86 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{87} + 87 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{88} + 88 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{89} + 89 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{90} + 90 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{91} + 91 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{92} + 92 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{93} + 93 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{94} + 94 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{95} + 95 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{96} + 96 = \alpha}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{97} + 97 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{98} + 98 = \gamma}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{99} + 99 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{0} + 0 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{1} + 1 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{2} + 2 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{3} + 3 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{4} + 4 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{5} + 5 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{6} + 6 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{7} + 7 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{8} + 8 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{9} + 9 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{10} + 10 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{11} + 11 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{12} + 12 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{13} + 13 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{14} + 14 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{15} + 15 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{16} + 16 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{17} + 17 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{18} + 18 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{19} + 19 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{20} + 20 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{21} + 21 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{22} + 22 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{23} + 23 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{24} + 24 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{25} + 25 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{26} + 26 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{27} + 27 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{28} + 28 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{29} + 29 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{30} + 30 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{31} + 31 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{32} + 32 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{33} + 33 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{34} + 34 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{35} + 35 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{36} + 36 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{37} + 37 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{38} + 38 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{39} + 39 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{40} + 40 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{41} + 41 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{42} + 42 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{43} + 43 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{44} + 44 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{45} + 45 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{46} + 46 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{47} + 47 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{48} + 48 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{49} + 49 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{50} + 50 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{51} + 51 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{52} + 52 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{53} + 53 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{54} + 54 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{55} + 55 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{56} + 56 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{57} + 57 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{58} + 58 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{59} + 59 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{60} + 60 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{61} + 61 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{62} + 62 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{63} + 63 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{64} + 64 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{65} + 65 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{66} + 66 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{67} + 67 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{68} + 68 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{69} + 69 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{70} + 70 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{71} + 71 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{72} + 72 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{73} + 73 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{74} + 74 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{75} + 75 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{76} + 76 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{77} + 77 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{78} + 78 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{79} + 79 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{80} + 80 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{81} + 81 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{82} + 82 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{83} + 83 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{84} + 84 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{85} + 85 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{86} + 86 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{87} + 87 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{88} + 88 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{89} + 89 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{90} + 90 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{91} + 91 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{92} + 92 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{93} + 93 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{94} + 94 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{95} + 95 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{96} + 96 = \alpha}\text{.}} \\
+{\text{Consider the equation~}{x^{97} + 97 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{98} + 98 = \gamma}\text{.}} \\
+{\text{Consider the equation~}{x^{99} + 99 = \delta}\text{.}}
 \end{array}
diff --git a/test/writer/tex/m1000.test b/test/writer/tex/m1000.test
--- a/test/writer/tex/m1000.test
+++ b/test/writer/tex/m1000.test
@@ -12115,104 +12115,104 @@
 ]
 >>> tex
 \begin{array}{llllllllll}
-{\text{Consider\ the\ equation~}{x^{0} + 0 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{1} + 1 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{2} + 2 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{3} + 3 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{4} + 4 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{5} + 5 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{6} + 6 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{7} + 7 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{8} + 8 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{9} + 9 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{10} + 10 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{11} + 11 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{12} + 12 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{13} + 13 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{14} + 14 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{15} + 15 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{16} + 16 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{17} + 17 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{18} + 18 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{19} + 19 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{20} + 20 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{21} + 21 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{22} + 22 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{23} + 23 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{24} + 24 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{25} + 25 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{26} + 26 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{27} + 27 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{28} + 28 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{29} + 29 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{30} + 30 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{31} + 31 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{32} + 32 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{33} + 33 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{34} + 34 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{35} + 35 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{36} + 36 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{37} + 37 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{38} + 38 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{39} + 39 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{40} + 40 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{41} + 41 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{42} + 42 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{43} + 43 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{44} + 44 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{45} + 45 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{46} + 46 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{47} + 47 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{48} + 48 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{49} + 49 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{50} + 50 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{51} + 51 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{52} + 52 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{53} + 53 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{54} + 54 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{55} + 55 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{56} + 56 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{57} + 57 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{58} + 58 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{59} + 59 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{60} + 60 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{61} + 61 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{62} + 62 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{63} + 63 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{64} + 64 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{65} + 65 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{66} + 66 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{67} + 67 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{68} + 68 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{69} + 69 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{70} + 70 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{71} + 71 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{72} + 72 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{73} + 73 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{74} + 74 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{75} + 75 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{76} + 76 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{77} + 77 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{78} + 78 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{79} + 79 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{80} + 80 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{81} + 81 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{82} + 82 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{83} + 83 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{84} + 84 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{85} + 85 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{86} + 86 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{87} + 87 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{88} + 88 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{89} + 89 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{90} + 90 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{91} + 91 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{92} + 92 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{93} + 93 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{94} + 94 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{95} + 95 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{96} + 96 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{97} + 97 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{98} + 98 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{99} + 99 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{100} + 100 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{101} + 101 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{102} + 102 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{103} + 103 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{104} + 104 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{105} + 105 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{106} + 106 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{107} + 107 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{108} + 108 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{109} + 109 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{110} + 110 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{111} + 111 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{112} + 112 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{113} + 113 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{114} + 114 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{115} + 115 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{116} + 116 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{117} + 117 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{118} + 118 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{119} + 119 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{120} + 120 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{121} + 121 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{122} + 122 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{123} + 123 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{124} + 124 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{125} + 125 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{126} + 126 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{127} + 127 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{128} + 128 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{129} + 129 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{130} + 130 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{131} + 131 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{132} + 132 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{133} + 133 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{134} + 134 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{135} + 135 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{136} + 136 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{137} + 137 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{138} + 138 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{139} + 139 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{140} + 140 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{141} + 141 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{142} + 142 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{143} + 143 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{144} + 144 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{145} + 145 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{146} + 146 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{147} + 147 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{148} + 148 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{149} + 149 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{150} + 150 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{151} + 151 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{152} + 152 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{153} + 153 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{154} + 154 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{155} + 155 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{156} + 156 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{157} + 157 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{158} + 158 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{159} + 159 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{160} + 160 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{161} + 161 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{162} + 162 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{163} + 163 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{164} + 164 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{165} + 165 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{166} + 166 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{167} + 167 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{168} + 168 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{169} + 169 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{170} + 170 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{171} + 171 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{172} + 172 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{173} + 173 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{174} + 174 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{175} + 175 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{176} + 176 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{177} + 177 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{178} + 178 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{179} + 179 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{180} + 180 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{181} + 181 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{182} + 182 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{183} + 183 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{184} + 184 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{185} + 185 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{186} + 186 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{187} + 187 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{188} + 188 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{189} + 189 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{190} + 190 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{191} + 191 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{192} + 192 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{193} + 193 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{194} + 194 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{195} + 195 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{196} + 196 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{197} + 197 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{198} + 198 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{199} + 199 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{200} + 200 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{201} + 201 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{202} + 202 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{203} + 203 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{204} + 204 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{205} + 205 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{206} + 206 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{207} + 207 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{208} + 208 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{209} + 209 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{210} + 210 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{211} + 211 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{212} + 212 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{213} + 213 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{214} + 214 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{215} + 215 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{216} + 216 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{217} + 217 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{218} + 218 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{219} + 219 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{220} + 220 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{221} + 221 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{222} + 222 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{223} + 223 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{224} + 224 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{225} + 225 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{226} + 226 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{227} + 227 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{228} + 228 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{229} + 229 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{230} + 230 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{231} + 231 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{232} + 232 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{233} + 233 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{234} + 234 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{235} + 235 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{236} + 236 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{237} + 237 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{238} + 238 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{239} + 239 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{240} + 240 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{241} + 241 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{242} + 242 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{243} + 243 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{244} + 244 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{245} + 245 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{246} + 246 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{247} + 247 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{248} + 248 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{249} + 249 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{250} + 250 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{251} + 251 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{252} + 252 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{253} + 253 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{254} + 254 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{255} + 255 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{256} + 256 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{257} + 257 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{258} + 258 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{259} + 259 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{260} + 260 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{261} + 261 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{262} + 262 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{263} + 263 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{264} + 264 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{265} + 265 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{266} + 266 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{267} + 267 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{268} + 268 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{269} + 269 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{270} + 270 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{271} + 271 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{272} + 272 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{273} + 273 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{274} + 274 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{275} + 275 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{276} + 276 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{277} + 277 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{278} + 278 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{279} + 279 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{280} + 280 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{281} + 281 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{282} + 282 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{283} + 283 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{284} + 284 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{285} + 285 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{286} + 286 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{287} + 287 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{288} + 288 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{289} + 289 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{290} + 290 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{291} + 291 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{292} + 292 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{293} + 293 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{294} + 294 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{295} + 295 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{296} + 296 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{297} + 297 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{298} + 298 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{299} + 299 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{300} + 300 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{301} + 301 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{302} + 302 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{303} + 303 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{304} + 304 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{305} + 305 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{306} + 306 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{307} + 307 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{308} + 308 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{309} + 309 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{310} + 310 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{311} + 311 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{312} + 312 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{313} + 313 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{314} + 314 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{315} + 315 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{316} + 316 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{317} + 317 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{318} + 318 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{319} + 319 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{320} + 320 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{321} + 321 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{322} + 322 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{323} + 323 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{324} + 324 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{325} + 325 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{326} + 326 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{327} + 327 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{328} + 328 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{329} + 329 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{330} + 330 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{331} + 331 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{332} + 332 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{333} + 333 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{334} + 334 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{335} + 335 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{336} + 336 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{337} + 337 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{338} + 338 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{339} + 339 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{340} + 340 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{341} + 341 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{342} + 342 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{343} + 343 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{344} + 344 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{345} + 345 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{346} + 346 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{347} + 347 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{348} + 348 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{349} + 349 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{350} + 350 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{351} + 351 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{352} + 352 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{353} + 353 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{354} + 354 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{355} + 355 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{356} + 356 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{357} + 357 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{358} + 358 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{359} + 359 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{360} + 360 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{361} + 361 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{362} + 362 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{363} + 363 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{364} + 364 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{365} + 365 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{366} + 366 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{367} + 367 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{368} + 368 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{369} + 369 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{370} + 370 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{371} + 371 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{372} + 372 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{373} + 373 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{374} + 374 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{375} + 375 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{376} + 376 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{377} + 377 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{378} + 378 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{379} + 379 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{380} + 380 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{381} + 381 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{382} + 382 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{383} + 383 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{384} + 384 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{385} + 385 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{386} + 386 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{387} + 387 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{388} + 388 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{389} + 389 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{390} + 390 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{391} + 391 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{392} + 392 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{393} + 393 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{394} + 394 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{395} + 395 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{396} + 396 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{397} + 397 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{398} + 398 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{399} + 399 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{400} + 400 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{401} + 401 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{402} + 402 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{403} + 403 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{404} + 404 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{405} + 405 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{406} + 406 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{407} + 407 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{408} + 408 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{409} + 409 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{410} + 410 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{411} + 411 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{412} + 412 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{413} + 413 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{414} + 414 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{415} + 415 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{416} + 416 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{417} + 417 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{418} + 418 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{419} + 419 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{420} + 420 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{421} + 421 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{422} + 422 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{423} + 423 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{424} + 424 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{425} + 425 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{426} + 426 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{427} + 427 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{428} + 428 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{429} + 429 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{430} + 430 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{431} + 431 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{432} + 432 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{433} + 433 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{434} + 434 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{435} + 435 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{436} + 436 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{437} + 437 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{438} + 438 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{439} + 439 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{440} + 440 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{441} + 441 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{442} + 442 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{443} + 443 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{444} + 444 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{445} + 445 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{446} + 446 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{447} + 447 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{448} + 448 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{449} + 449 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{450} + 450 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{451} + 451 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{452} + 452 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{453} + 453 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{454} + 454 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{455} + 455 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{456} + 456 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{457} + 457 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{458} + 458 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{459} + 459 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{460} + 460 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{461} + 461 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{462} + 462 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{463} + 463 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{464} + 464 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{465} + 465 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{466} + 466 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{467} + 467 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{468} + 468 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{469} + 469 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{470} + 470 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{471} + 471 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{472} + 472 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{473} + 473 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{474} + 474 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{475} + 475 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{476} + 476 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{477} + 477 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{478} + 478 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{479} + 479 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{480} + 480 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{481} + 481 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{482} + 482 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{483} + 483 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{484} + 484 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{485} + 485 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{486} + 486 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{487} + 487 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{488} + 488 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{489} + 489 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{490} + 490 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{491} + 491 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{492} + 492 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{493} + 493 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{494} + 494 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{495} + 495 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{496} + 496 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{497} + 497 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{498} + 498 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{499} + 499 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{500} + 500 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{501} + 501 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{502} + 502 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{503} + 503 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{504} + 504 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{505} + 505 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{506} + 506 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{507} + 507 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{508} + 508 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{509} + 509 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{510} + 510 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{511} + 511 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{512} + 512 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{513} + 513 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{514} + 514 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{515} + 515 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{516} + 516 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{517} + 517 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{518} + 518 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{519} + 519 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{520} + 520 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{521} + 521 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{522} + 522 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{523} + 523 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{524} + 524 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{525} + 525 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{526} + 526 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{527} + 527 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{528} + 528 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{529} + 529 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{530} + 530 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{531} + 531 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{532} + 532 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{533} + 533 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{534} + 534 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{535} + 535 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{536} + 536 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{537} + 537 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{538} + 538 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{539} + 539 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{540} + 540 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{541} + 541 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{542} + 542 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{543} + 543 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{544} + 544 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{545} + 545 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{546} + 546 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{547} + 547 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{548} + 548 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{549} + 549 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{550} + 550 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{551} + 551 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{552} + 552 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{553} + 553 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{554} + 554 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{555} + 555 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{556} + 556 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{557} + 557 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{558} + 558 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{559} + 559 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{560} + 560 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{561} + 561 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{562} + 562 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{563} + 563 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{564} + 564 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{565} + 565 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{566} + 566 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{567} + 567 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{568} + 568 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{569} + 569 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{570} + 570 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{571} + 571 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{572} + 572 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{573} + 573 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{574} + 574 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{575} + 575 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{576} + 576 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{577} + 577 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{578} + 578 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{579} + 579 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{580} + 580 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{581} + 581 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{582} + 582 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{583} + 583 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{584} + 584 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{585} + 585 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{586} + 586 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{587} + 587 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{588} + 588 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{589} + 589 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{590} + 590 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{591} + 591 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{592} + 592 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{593} + 593 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{594} + 594 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{595} + 595 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{596} + 596 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{597} + 597 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{598} + 598 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{599} + 599 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{600} + 600 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{601} + 601 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{602} + 602 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{603} + 603 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{604} + 604 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{605} + 605 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{606} + 606 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{607} + 607 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{608} + 608 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{609} + 609 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{610} + 610 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{611} + 611 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{612} + 612 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{613} + 613 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{614} + 614 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{615} + 615 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{616} + 616 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{617} + 617 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{618} + 618 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{619} + 619 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{620} + 620 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{621} + 621 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{622} + 622 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{623} + 623 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{624} + 624 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{625} + 625 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{626} + 626 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{627} + 627 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{628} + 628 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{629} + 629 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{630} + 630 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{631} + 631 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{632} + 632 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{633} + 633 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{634} + 634 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{635} + 635 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{636} + 636 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{637} + 637 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{638} + 638 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{639} + 639 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{640} + 640 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{641} + 641 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{642} + 642 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{643} + 643 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{644} + 644 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{645} + 645 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{646} + 646 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{647} + 647 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{648} + 648 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{649} + 649 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{650} + 650 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{651} + 651 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{652} + 652 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{653} + 653 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{654} + 654 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{655} + 655 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{656} + 656 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{657} + 657 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{658} + 658 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{659} + 659 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{660} + 660 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{661} + 661 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{662} + 662 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{663} + 663 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{664} + 664 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{665} + 665 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{666} + 666 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{667} + 667 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{668} + 668 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{669} + 669 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{670} + 670 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{671} + 671 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{672} + 672 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{673} + 673 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{674} + 674 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{675} + 675 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{676} + 676 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{677} + 677 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{678} + 678 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{679} + 679 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{680} + 680 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{681} + 681 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{682} + 682 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{683} + 683 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{684} + 684 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{685} + 685 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{686} + 686 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{687} + 687 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{688} + 688 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{689} + 689 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{690} + 690 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{691} + 691 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{692} + 692 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{693} + 693 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{694} + 694 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{695} + 695 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{696} + 696 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{697} + 697 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{698} + 698 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{699} + 699 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{700} + 700 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{701} + 701 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{702} + 702 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{703} + 703 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{704} + 704 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{705} + 705 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{706} + 706 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{707} + 707 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{708} + 708 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{709} + 709 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{710} + 710 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{711} + 711 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{712} + 712 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{713} + 713 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{714} + 714 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{715} + 715 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{716} + 716 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{717} + 717 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{718} + 718 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{719} + 719 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{720} + 720 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{721} + 721 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{722} + 722 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{723} + 723 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{724} + 724 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{725} + 725 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{726} + 726 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{727} + 727 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{728} + 728 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{729} + 729 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{730} + 730 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{731} + 731 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{732} + 732 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{733} + 733 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{734} + 734 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{735} + 735 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{736} + 736 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{737} + 737 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{738} + 738 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{739} + 739 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{740} + 740 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{741} + 741 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{742} + 742 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{743} + 743 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{744} + 744 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{745} + 745 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{746} + 746 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{747} + 747 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{748} + 748 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{749} + 749 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{750} + 750 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{751} + 751 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{752} + 752 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{753} + 753 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{754} + 754 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{755} + 755 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{756} + 756 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{757} + 757 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{758} + 758 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{759} + 759 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{760} + 760 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{761} + 761 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{762} + 762 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{763} + 763 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{764} + 764 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{765} + 765 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{766} + 766 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{767} + 767 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{768} + 768 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{769} + 769 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{770} + 770 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{771} + 771 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{772} + 772 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{773} + 773 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{774} + 774 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{775} + 775 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{776} + 776 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{777} + 777 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{778} + 778 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{779} + 779 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{780} + 780 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{781} + 781 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{782} + 782 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{783} + 783 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{784} + 784 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{785} + 785 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{786} + 786 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{787} + 787 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{788} + 788 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{789} + 789 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{790} + 790 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{791} + 791 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{792} + 792 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{793} + 793 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{794} + 794 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{795} + 795 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{796} + 796 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{797} + 797 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{798} + 798 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{799} + 799 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{800} + 800 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{801} + 801 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{802} + 802 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{803} + 803 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{804} + 804 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{805} + 805 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{806} + 806 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{807} + 807 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{808} + 808 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{809} + 809 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{810} + 810 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{811} + 811 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{812} + 812 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{813} + 813 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{814} + 814 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{815} + 815 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{816} + 816 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{817} + 817 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{818} + 818 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{819} + 819 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{820} + 820 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{821} + 821 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{822} + 822 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{823} + 823 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{824} + 824 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{825} + 825 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{826} + 826 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{827} + 827 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{828} + 828 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{829} + 829 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{830} + 830 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{831} + 831 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{832} + 832 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{833} + 833 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{834} + 834 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{835} + 835 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{836} + 836 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{837} + 837 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{838} + 838 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{839} + 839 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{840} + 840 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{841} + 841 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{842} + 842 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{843} + 843 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{844} + 844 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{845} + 845 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{846} + 846 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{847} + 847 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{848} + 848 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{849} + 849 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{850} + 850 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{851} + 851 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{852} + 852 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{853} + 853 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{854} + 854 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{855} + 855 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{856} + 856 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{857} + 857 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{858} + 858 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{859} + 859 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{860} + 860 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{861} + 861 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{862} + 862 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{863} + 863 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{864} + 864 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{865} + 865 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{866} + 866 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{867} + 867 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{868} + 868 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{869} + 869 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{870} + 870 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{871} + 871 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{872} + 872 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{873} + 873 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{874} + 874 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{875} + 875 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{876} + 876 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{877} + 877 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{878} + 878 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{879} + 879 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{880} + 880 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{881} + 881 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{882} + 882 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{883} + 883 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{884} + 884 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{885} + 885 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{886} + 886 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{887} + 887 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{888} + 888 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{889} + 889 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{890} + 890 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{891} + 891 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{892} + 892 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{893} + 893 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{894} + 894 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{895} + 895 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{896} + 896 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{897} + 897 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{898} + 898 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{899} + 899 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{900} + 900 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{901} + 901 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{902} + 902 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{903} + 903 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{904} + 904 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{905} + 905 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{906} + 906 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{907} + 907 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{908} + 908 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{909} + 909 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{910} + 910 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{911} + 911 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{912} + 912 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{913} + 913 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{914} + 914 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{915} + 915 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{916} + 916 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{917} + 917 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{918} + 918 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{919} + 919 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{920} + 920 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{921} + 921 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{922} + 922 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{923} + 923 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{924} + 924 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{925} + 925 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{926} + 926 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{927} + 927 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{928} + 928 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{929} + 929 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{930} + 930 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{931} + 931 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{932} + 932 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{933} + 933 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{934} + 934 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{935} + 935 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{936} + 936 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{937} + 937 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{938} + 938 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{939} + 939 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{940} + 940 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{941} + 941 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{942} + 942 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{943} + 943 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{944} + 944 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{945} + 945 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{946} + 946 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{947} + 947 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{948} + 948 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{949} + 949 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{950} + 950 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{951} + 951 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{952} + 952 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{953} + 953 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{954} + 954 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{955} + 955 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{956} + 956 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{957} + 957 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{958} + 958 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{959} + 959 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{960} + 960 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{961} + 961 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{962} + 962 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{963} + 963 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{964} + 964 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{965} + 965 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{966} + 966 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{967} + 967 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{968} + 968 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{969} + 969 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{970} + 970 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{971} + 971 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{972} + 972 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{973} + 973 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{974} + 974 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{975} + 975 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{976} + 976 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{977} + 977 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{978} + 978 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{979} + 979 = \delta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{980} + 980 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{981} + 981 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{982} + 982 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{983} + 983 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{984} + 984 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{985} + 985 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{986} + 986 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{987} + 987 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{988} + 988 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{989} + 989 = \beta}\text{.}} \\
-{\text{Consider\ the\ equation~}{x^{990} + 990 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{991} + 991 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{992} + 992 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{993} + 993 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{994} + 994 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{995} + 995 = \delta}\text{.}} & {\text{Consider\ the\ equation~}{x^{996} + 996 = \alpha}\text{.}} & {\text{Consider\ the\ equation~}{x^{997} + 997 = \beta}\text{.}} & {\text{Consider\ the\ equation~}{x^{998} + 998 = \gamma}\text{.}} & {\text{Consider\ the\ equation~}{x^{999} + 999 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{0} + 0 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{1} + 1 = \beta}\text{.}} & {\text{Consider the equation~}{x^{2} + 2 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{3} + 3 = \delta}\text{.}} & {\text{Consider the equation~}{x^{4} + 4 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{5} + 5 = \beta}\text{.}} & {\text{Consider the equation~}{x^{6} + 6 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{7} + 7 = \delta}\text{.}} & {\text{Consider the equation~}{x^{8} + 8 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{9} + 9 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{10} + 10 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{11} + 11 = \delta}\text{.}} & {\text{Consider the equation~}{x^{12} + 12 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{13} + 13 = \beta}\text{.}} & {\text{Consider the equation~}{x^{14} + 14 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{15} + 15 = \delta}\text{.}} & {\text{Consider the equation~}{x^{16} + 16 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{17} + 17 = \beta}\text{.}} & {\text{Consider the equation~}{x^{18} + 18 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{19} + 19 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{20} + 20 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{21} + 21 = \beta}\text{.}} & {\text{Consider the equation~}{x^{22} + 22 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{23} + 23 = \delta}\text{.}} & {\text{Consider the equation~}{x^{24} + 24 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{25} + 25 = \beta}\text{.}} & {\text{Consider the equation~}{x^{26} + 26 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{27} + 27 = \delta}\text{.}} & {\text{Consider the equation~}{x^{28} + 28 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{29} + 29 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{30} + 30 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{31} + 31 = \delta}\text{.}} & {\text{Consider the equation~}{x^{32} + 32 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{33} + 33 = \beta}\text{.}} & {\text{Consider the equation~}{x^{34} + 34 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{35} + 35 = \delta}\text{.}} & {\text{Consider the equation~}{x^{36} + 36 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{37} + 37 = \beta}\text{.}} & {\text{Consider the equation~}{x^{38} + 38 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{39} + 39 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{40} + 40 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{41} + 41 = \beta}\text{.}} & {\text{Consider the equation~}{x^{42} + 42 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{43} + 43 = \delta}\text{.}} & {\text{Consider the equation~}{x^{44} + 44 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{45} + 45 = \beta}\text{.}} & {\text{Consider the equation~}{x^{46} + 46 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{47} + 47 = \delta}\text{.}} & {\text{Consider the equation~}{x^{48} + 48 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{49} + 49 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{50} + 50 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{51} + 51 = \delta}\text{.}} & {\text{Consider the equation~}{x^{52} + 52 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{53} + 53 = \beta}\text{.}} & {\text{Consider the equation~}{x^{54} + 54 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{55} + 55 = \delta}\text{.}} & {\text{Consider the equation~}{x^{56} + 56 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{57} + 57 = \beta}\text{.}} & {\text{Consider the equation~}{x^{58} + 58 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{59} + 59 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{60} + 60 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{61} + 61 = \beta}\text{.}} & {\text{Consider the equation~}{x^{62} + 62 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{63} + 63 = \delta}\text{.}} & {\text{Consider the equation~}{x^{64} + 64 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{65} + 65 = \beta}\text{.}} & {\text{Consider the equation~}{x^{66} + 66 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{67} + 67 = \delta}\text{.}} & {\text{Consider the equation~}{x^{68} + 68 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{69} + 69 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{70} + 70 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{71} + 71 = \delta}\text{.}} & {\text{Consider the equation~}{x^{72} + 72 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{73} + 73 = \beta}\text{.}} & {\text{Consider the equation~}{x^{74} + 74 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{75} + 75 = \delta}\text{.}} & {\text{Consider the equation~}{x^{76} + 76 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{77} + 77 = \beta}\text{.}} & {\text{Consider the equation~}{x^{78} + 78 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{79} + 79 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{80} + 80 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{81} + 81 = \beta}\text{.}} & {\text{Consider the equation~}{x^{82} + 82 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{83} + 83 = \delta}\text{.}} & {\text{Consider the equation~}{x^{84} + 84 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{85} + 85 = \beta}\text{.}} & {\text{Consider the equation~}{x^{86} + 86 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{87} + 87 = \delta}\text{.}} & {\text{Consider the equation~}{x^{88} + 88 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{89} + 89 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{90} + 90 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{91} + 91 = \delta}\text{.}} & {\text{Consider the equation~}{x^{92} + 92 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{93} + 93 = \beta}\text{.}} & {\text{Consider the equation~}{x^{94} + 94 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{95} + 95 = \delta}\text{.}} & {\text{Consider the equation~}{x^{96} + 96 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{97} + 97 = \beta}\text{.}} & {\text{Consider the equation~}{x^{98} + 98 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{99} + 99 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{100} + 100 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{101} + 101 = \beta}\text{.}} & {\text{Consider the equation~}{x^{102} + 102 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{103} + 103 = \delta}\text{.}} & {\text{Consider the equation~}{x^{104} + 104 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{105} + 105 = \beta}\text{.}} & {\text{Consider the equation~}{x^{106} + 106 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{107} + 107 = \delta}\text{.}} & {\text{Consider the equation~}{x^{108} + 108 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{109} + 109 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{110} + 110 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{111} + 111 = \delta}\text{.}} & {\text{Consider the equation~}{x^{112} + 112 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{113} + 113 = \beta}\text{.}} & {\text{Consider the equation~}{x^{114} + 114 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{115} + 115 = \delta}\text{.}} & {\text{Consider the equation~}{x^{116} + 116 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{117} + 117 = \beta}\text{.}} & {\text{Consider the equation~}{x^{118} + 118 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{119} + 119 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{120} + 120 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{121} + 121 = \beta}\text{.}} & {\text{Consider the equation~}{x^{122} + 122 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{123} + 123 = \delta}\text{.}} & {\text{Consider the equation~}{x^{124} + 124 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{125} + 125 = \beta}\text{.}} & {\text{Consider the equation~}{x^{126} + 126 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{127} + 127 = \delta}\text{.}} & {\text{Consider the equation~}{x^{128} + 128 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{129} + 129 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{130} + 130 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{131} + 131 = \delta}\text{.}} & {\text{Consider the equation~}{x^{132} + 132 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{133} + 133 = \beta}\text{.}} & {\text{Consider the equation~}{x^{134} + 134 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{135} + 135 = \delta}\text{.}} & {\text{Consider the equation~}{x^{136} + 136 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{137} + 137 = \beta}\text{.}} & {\text{Consider the equation~}{x^{138} + 138 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{139} + 139 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{140} + 140 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{141} + 141 = \beta}\text{.}} & {\text{Consider the equation~}{x^{142} + 142 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{143} + 143 = \delta}\text{.}} & {\text{Consider the equation~}{x^{144} + 144 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{145} + 145 = \beta}\text{.}} & {\text{Consider the equation~}{x^{146} + 146 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{147} + 147 = \delta}\text{.}} & {\text{Consider the equation~}{x^{148} + 148 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{149} + 149 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{150} + 150 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{151} + 151 = \delta}\text{.}} & {\text{Consider the equation~}{x^{152} + 152 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{153} + 153 = \beta}\text{.}} & {\text{Consider the equation~}{x^{154} + 154 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{155} + 155 = \delta}\text{.}} & {\text{Consider the equation~}{x^{156} + 156 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{157} + 157 = \beta}\text{.}} & {\text{Consider the equation~}{x^{158} + 158 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{159} + 159 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{160} + 160 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{161} + 161 = \beta}\text{.}} & {\text{Consider the equation~}{x^{162} + 162 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{163} + 163 = \delta}\text{.}} & {\text{Consider the equation~}{x^{164} + 164 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{165} + 165 = \beta}\text{.}} & {\text{Consider the equation~}{x^{166} + 166 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{167} + 167 = \delta}\text{.}} & {\text{Consider the equation~}{x^{168} + 168 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{169} + 169 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{170} + 170 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{171} + 171 = \delta}\text{.}} & {\text{Consider the equation~}{x^{172} + 172 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{173} + 173 = \beta}\text{.}} & {\text{Consider the equation~}{x^{174} + 174 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{175} + 175 = \delta}\text{.}} & {\text{Consider the equation~}{x^{176} + 176 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{177} + 177 = \beta}\text{.}} & {\text{Consider the equation~}{x^{178} + 178 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{179} + 179 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{180} + 180 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{181} + 181 = \beta}\text{.}} & {\text{Consider the equation~}{x^{182} + 182 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{183} + 183 = \delta}\text{.}} & {\text{Consider the equation~}{x^{184} + 184 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{185} + 185 = \beta}\text{.}} & {\text{Consider the equation~}{x^{186} + 186 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{187} + 187 = \delta}\text{.}} & {\text{Consider the equation~}{x^{188} + 188 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{189} + 189 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{190} + 190 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{191} + 191 = \delta}\text{.}} & {\text{Consider the equation~}{x^{192} + 192 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{193} + 193 = \beta}\text{.}} & {\text{Consider the equation~}{x^{194} + 194 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{195} + 195 = \delta}\text{.}} & {\text{Consider the equation~}{x^{196} + 196 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{197} + 197 = \beta}\text{.}} & {\text{Consider the equation~}{x^{198} + 198 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{199} + 199 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{200} + 200 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{201} + 201 = \beta}\text{.}} & {\text{Consider the equation~}{x^{202} + 202 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{203} + 203 = \delta}\text{.}} & {\text{Consider the equation~}{x^{204} + 204 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{205} + 205 = \beta}\text{.}} & {\text{Consider the equation~}{x^{206} + 206 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{207} + 207 = \delta}\text{.}} & {\text{Consider the equation~}{x^{208} + 208 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{209} + 209 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{210} + 210 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{211} + 211 = \delta}\text{.}} & {\text{Consider the equation~}{x^{212} + 212 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{213} + 213 = \beta}\text{.}} & {\text{Consider the equation~}{x^{214} + 214 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{215} + 215 = \delta}\text{.}} & {\text{Consider the equation~}{x^{216} + 216 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{217} + 217 = \beta}\text{.}} & {\text{Consider the equation~}{x^{218} + 218 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{219} + 219 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{220} + 220 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{221} + 221 = \beta}\text{.}} & {\text{Consider the equation~}{x^{222} + 222 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{223} + 223 = \delta}\text{.}} & {\text{Consider the equation~}{x^{224} + 224 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{225} + 225 = \beta}\text{.}} & {\text{Consider the equation~}{x^{226} + 226 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{227} + 227 = \delta}\text{.}} & {\text{Consider the equation~}{x^{228} + 228 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{229} + 229 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{230} + 230 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{231} + 231 = \delta}\text{.}} & {\text{Consider the equation~}{x^{232} + 232 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{233} + 233 = \beta}\text{.}} & {\text{Consider the equation~}{x^{234} + 234 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{235} + 235 = \delta}\text{.}} & {\text{Consider the equation~}{x^{236} + 236 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{237} + 237 = \beta}\text{.}} & {\text{Consider the equation~}{x^{238} + 238 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{239} + 239 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{240} + 240 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{241} + 241 = \beta}\text{.}} & {\text{Consider the equation~}{x^{242} + 242 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{243} + 243 = \delta}\text{.}} & {\text{Consider the equation~}{x^{244} + 244 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{245} + 245 = \beta}\text{.}} & {\text{Consider the equation~}{x^{246} + 246 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{247} + 247 = \delta}\text{.}} & {\text{Consider the equation~}{x^{248} + 248 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{249} + 249 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{250} + 250 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{251} + 251 = \delta}\text{.}} & {\text{Consider the equation~}{x^{252} + 252 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{253} + 253 = \beta}\text{.}} & {\text{Consider the equation~}{x^{254} + 254 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{255} + 255 = \delta}\text{.}} & {\text{Consider the equation~}{x^{256} + 256 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{257} + 257 = \beta}\text{.}} & {\text{Consider the equation~}{x^{258} + 258 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{259} + 259 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{260} + 260 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{261} + 261 = \beta}\text{.}} & {\text{Consider the equation~}{x^{262} + 262 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{263} + 263 = \delta}\text{.}} & {\text{Consider the equation~}{x^{264} + 264 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{265} + 265 = \beta}\text{.}} & {\text{Consider the equation~}{x^{266} + 266 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{267} + 267 = \delta}\text{.}} & {\text{Consider the equation~}{x^{268} + 268 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{269} + 269 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{270} + 270 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{271} + 271 = \delta}\text{.}} & {\text{Consider the equation~}{x^{272} + 272 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{273} + 273 = \beta}\text{.}} & {\text{Consider the equation~}{x^{274} + 274 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{275} + 275 = \delta}\text{.}} & {\text{Consider the equation~}{x^{276} + 276 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{277} + 277 = \beta}\text{.}} & {\text{Consider the equation~}{x^{278} + 278 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{279} + 279 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{280} + 280 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{281} + 281 = \beta}\text{.}} & {\text{Consider the equation~}{x^{282} + 282 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{283} + 283 = \delta}\text{.}} & {\text{Consider the equation~}{x^{284} + 284 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{285} + 285 = \beta}\text{.}} & {\text{Consider the equation~}{x^{286} + 286 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{287} + 287 = \delta}\text{.}} & {\text{Consider the equation~}{x^{288} + 288 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{289} + 289 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{290} + 290 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{291} + 291 = \delta}\text{.}} & {\text{Consider the equation~}{x^{292} + 292 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{293} + 293 = \beta}\text{.}} & {\text{Consider the equation~}{x^{294} + 294 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{295} + 295 = \delta}\text{.}} & {\text{Consider the equation~}{x^{296} + 296 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{297} + 297 = \beta}\text{.}} & {\text{Consider the equation~}{x^{298} + 298 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{299} + 299 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{300} + 300 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{301} + 301 = \beta}\text{.}} & {\text{Consider the equation~}{x^{302} + 302 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{303} + 303 = \delta}\text{.}} & {\text{Consider the equation~}{x^{304} + 304 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{305} + 305 = \beta}\text{.}} & {\text{Consider the equation~}{x^{306} + 306 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{307} + 307 = \delta}\text{.}} & {\text{Consider the equation~}{x^{308} + 308 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{309} + 309 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{310} + 310 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{311} + 311 = \delta}\text{.}} & {\text{Consider the equation~}{x^{312} + 312 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{313} + 313 = \beta}\text{.}} & {\text{Consider the equation~}{x^{314} + 314 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{315} + 315 = \delta}\text{.}} & {\text{Consider the equation~}{x^{316} + 316 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{317} + 317 = \beta}\text{.}} & {\text{Consider the equation~}{x^{318} + 318 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{319} + 319 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{320} + 320 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{321} + 321 = \beta}\text{.}} & {\text{Consider the equation~}{x^{322} + 322 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{323} + 323 = \delta}\text{.}} & {\text{Consider the equation~}{x^{324} + 324 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{325} + 325 = \beta}\text{.}} & {\text{Consider the equation~}{x^{326} + 326 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{327} + 327 = \delta}\text{.}} & {\text{Consider the equation~}{x^{328} + 328 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{329} + 329 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{330} + 330 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{331} + 331 = \delta}\text{.}} & {\text{Consider the equation~}{x^{332} + 332 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{333} + 333 = \beta}\text{.}} & {\text{Consider the equation~}{x^{334} + 334 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{335} + 335 = \delta}\text{.}} & {\text{Consider the equation~}{x^{336} + 336 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{337} + 337 = \beta}\text{.}} & {\text{Consider the equation~}{x^{338} + 338 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{339} + 339 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{340} + 340 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{341} + 341 = \beta}\text{.}} & {\text{Consider the equation~}{x^{342} + 342 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{343} + 343 = \delta}\text{.}} & {\text{Consider the equation~}{x^{344} + 344 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{345} + 345 = \beta}\text{.}} & {\text{Consider the equation~}{x^{346} + 346 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{347} + 347 = \delta}\text{.}} & {\text{Consider the equation~}{x^{348} + 348 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{349} + 349 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{350} + 350 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{351} + 351 = \delta}\text{.}} & {\text{Consider the equation~}{x^{352} + 352 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{353} + 353 = \beta}\text{.}} & {\text{Consider the equation~}{x^{354} + 354 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{355} + 355 = \delta}\text{.}} & {\text{Consider the equation~}{x^{356} + 356 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{357} + 357 = \beta}\text{.}} & {\text{Consider the equation~}{x^{358} + 358 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{359} + 359 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{360} + 360 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{361} + 361 = \beta}\text{.}} & {\text{Consider the equation~}{x^{362} + 362 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{363} + 363 = \delta}\text{.}} & {\text{Consider the equation~}{x^{364} + 364 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{365} + 365 = \beta}\text{.}} & {\text{Consider the equation~}{x^{366} + 366 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{367} + 367 = \delta}\text{.}} & {\text{Consider the equation~}{x^{368} + 368 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{369} + 369 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{370} + 370 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{371} + 371 = \delta}\text{.}} & {\text{Consider the equation~}{x^{372} + 372 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{373} + 373 = \beta}\text{.}} & {\text{Consider the equation~}{x^{374} + 374 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{375} + 375 = \delta}\text{.}} & {\text{Consider the equation~}{x^{376} + 376 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{377} + 377 = \beta}\text{.}} & {\text{Consider the equation~}{x^{378} + 378 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{379} + 379 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{380} + 380 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{381} + 381 = \beta}\text{.}} & {\text{Consider the equation~}{x^{382} + 382 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{383} + 383 = \delta}\text{.}} & {\text{Consider the equation~}{x^{384} + 384 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{385} + 385 = \beta}\text{.}} & {\text{Consider the equation~}{x^{386} + 386 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{387} + 387 = \delta}\text{.}} & {\text{Consider the equation~}{x^{388} + 388 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{389} + 389 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{390} + 390 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{391} + 391 = \delta}\text{.}} & {\text{Consider the equation~}{x^{392} + 392 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{393} + 393 = \beta}\text{.}} & {\text{Consider the equation~}{x^{394} + 394 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{395} + 395 = \delta}\text{.}} & {\text{Consider the equation~}{x^{396} + 396 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{397} + 397 = \beta}\text{.}} & {\text{Consider the equation~}{x^{398} + 398 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{399} + 399 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{400} + 400 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{401} + 401 = \beta}\text{.}} & {\text{Consider the equation~}{x^{402} + 402 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{403} + 403 = \delta}\text{.}} & {\text{Consider the equation~}{x^{404} + 404 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{405} + 405 = \beta}\text{.}} & {\text{Consider the equation~}{x^{406} + 406 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{407} + 407 = \delta}\text{.}} & {\text{Consider the equation~}{x^{408} + 408 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{409} + 409 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{410} + 410 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{411} + 411 = \delta}\text{.}} & {\text{Consider the equation~}{x^{412} + 412 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{413} + 413 = \beta}\text{.}} & {\text{Consider the equation~}{x^{414} + 414 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{415} + 415 = \delta}\text{.}} & {\text{Consider the equation~}{x^{416} + 416 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{417} + 417 = \beta}\text{.}} & {\text{Consider the equation~}{x^{418} + 418 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{419} + 419 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{420} + 420 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{421} + 421 = \beta}\text{.}} & {\text{Consider the equation~}{x^{422} + 422 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{423} + 423 = \delta}\text{.}} & {\text{Consider the equation~}{x^{424} + 424 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{425} + 425 = \beta}\text{.}} & {\text{Consider the equation~}{x^{426} + 426 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{427} + 427 = \delta}\text{.}} & {\text{Consider the equation~}{x^{428} + 428 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{429} + 429 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{430} + 430 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{431} + 431 = \delta}\text{.}} & {\text{Consider the equation~}{x^{432} + 432 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{433} + 433 = \beta}\text{.}} & {\text{Consider the equation~}{x^{434} + 434 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{435} + 435 = \delta}\text{.}} & {\text{Consider the equation~}{x^{436} + 436 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{437} + 437 = \beta}\text{.}} & {\text{Consider the equation~}{x^{438} + 438 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{439} + 439 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{440} + 440 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{441} + 441 = \beta}\text{.}} & {\text{Consider the equation~}{x^{442} + 442 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{443} + 443 = \delta}\text{.}} & {\text{Consider the equation~}{x^{444} + 444 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{445} + 445 = \beta}\text{.}} & {\text{Consider the equation~}{x^{446} + 446 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{447} + 447 = \delta}\text{.}} & {\text{Consider the equation~}{x^{448} + 448 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{449} + 449 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{450} + 450 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{451} + 451 = \delta}\text{.}} & {\text{Consider the equation~}{x^{452} + 452 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{453} + 453 = \beta}\text{.}} & {\text{Consider the equation~}{x^{454} + 454 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{455} + 455 = \delta}\text{.}} & {\text{Consider the equation~}{x^{456} + 456 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{457} + 457 = \beta}\text{.}} & {\text{Consider the equation~}{x^{458} + 458 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{459} + 459 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{460} + 460 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{461} + 461 = \beta}\text{.}} & {\text{Consider the equation~}{x^{462} + 462 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{463} + 463 = \delta}\text{.}} & {\text{Consider the equation~}{x^{464} + 464 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{465} + 465 = \beta}\text{.}} & {\text{Consider the equation~}{x^{466} + 466 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{467} + 467 = \delta}\text{.}} & {\text{Consider the equation~}{x^{468} + 468 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{469} + 469 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{470} + 470 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{471} + 471 = \delta}\text{.}} & {\text{Consider the equation~}{x^{472} + 472 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{473} + 473 = \beta}\text{.}} & {\text{Consider the equation~}{x^{474} + 474 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{475} + 475 = \delta}\text{.}} & {\text{Consider the equation~}{x^{476} + 476 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{477} + 477 = \beta}\text{.}} & {\text{Consider the equation~}{x^{478} + 478 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{479} + 479 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{480} + 480 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{481} + 481 = \beta}\text{.}} & {\text{Consider the equation~}{x^{482} + 482 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{483} + 483 = \delta}\text{.}} & {\text{Consider the equation~}{x^{484} + 484 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{485} + 485 = \beta}\text{.}} & {\text{Consider the equation~}{x^{486} + 486 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{487} + 487 = \delta}\text{.}} & {\text{Consider the equation~}{x^{488} + 488 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{489} + 489 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{490} + 490 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{491} + 491 = \delta}\text{.}} & {\text{Consider the equation~}{x^{492} + 492 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{493} + 493 = \beta}\text{.}} & {\text{Consider the equation~}{x^{494} + 494 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{495} + 495 = \delta}\text{.}} & {\text{Consider the equation~}{x^{496} + 496 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{497} + 497 = \beta}\text{.}} & {\text{Consider the equation~}{x^{498} + 498 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{499} + 499 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{500} + 500 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{501} + 501 = \beta}\text{.}} & {\text{Consider the equation~}{x^{502} + 502 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{503} + 503 = \delta}\text{.}} & {\text{Consider the equation~}{x^{504} + 504 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{505} + 505 = \beta}\text{.}} & {\text{Consider the equation~}{x^{506} + 506 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{507} + 507 = \delta}\text{.}} & {\text{Consider the equation~}{x^{508} + 508 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{509} + 509 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{510} + 510 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{511} + 511 = \delta}\text{.}} & {\text{Consider the equation~}{x^{512} + 512 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{513} + 513 = \beta}\text{.}} & {\text{Consider the equation~}{x^{514} + 514 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{515} + 515 = \delta}\text{.}} & {\text{Consider the equation~}{x^{516} + 516 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{517} + 517 = \beta}\text{.}} & {\text{Consider the equation~}{x^{518} + 518 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{519} + 519 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{520} + 520 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{521} + 521 = \beta}\text{.}} & {\text{Consider the equation~}{x^{522} + 522 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{523} + 523 = \delta}\text{.}} & {\text{Consider the equation~}{x^{524} + 524 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{525} + 525 = \beta}\text{.}} & {\text{Consider the equation~}{x^{526} + 526 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{527} + 527 = \delta}\text{.}} & {\text{Consider the equation~}{x^{528} + 528 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{529} + 529 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{530} + 530 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{531} + 531 = \delta}\text{.}} & {\text{Consider the equation~}{x^{532} + 532 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{533} + 533 = \beta}\text{.}} & {\text{Consider the equation~}{x^{534} + 534 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{535} + 535 = \delta}\text{.}} & {\text{Consider the equation~}{x^{536} + 536 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{537} + 537 = \beta}\text{.}} & {\text{Consider the equation~}{x^{538} + 538 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{539} + 539 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{540} + 540 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{541} + 541 = \beta}\text{.}} & {\text{Consider the equation~}{x^{542} + 542 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{543} + 543 = \delta}\text{.}} & {\text{Consider the equation~}{x^{544} + 544 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{545} + 545 = \beta}\text{.}} & {\text{Consider the equation~}{x^{546} + 546 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{547} + 547 = \delta}\text{.}} & {\text{Consider the equation~}{x^{548} + 548 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{549} + 549 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{550} + 550 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{551} + 551 = \delta}\text{.}} & {\text{Consider the equation~}{x^{552} + 552 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{553} + 553 = \beta}\text{.}} & {\text{Consider the equation~}{x^{554} + 554 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{555} + 555 = \delta}\text{.}} & {\text{Consider the equation~}{x^{556} + 556 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{557} + 557 = \beta}\text{.}} & {\text{Consider the equation~}{x^{558} + 558 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{559} + 559 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{560} + 560 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{561} + 561 = \beta}\text{.}} & {\text{Consider the equation~}{x^{562} + 562 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{563} + 563 = \delta}\text{.}} & {\text{Consider the equation~}{x^{564} + 564 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{565} + 565 = \beta}\text{.}} & {\text{Consider the equation~}{x^{566} + 566 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{567} + 567 = \delta}\text{.}} & {\text{Consider the equation~}{x^{568} + 568 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{569} + 569 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{570} + 570 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{571} + 571 = \delta}\text{.}} & {\text{Consider the equation~}{x^{572} + 572 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{573} + 573 = \beta}\text{.}} & {\text{Consider the equation~}{x^{574} + 574 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{575} + 575 = \delta}\text{.}} & {\text{Consider the equation~}{x^{576} + 576 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{577} + 577 = \beta}\text{.}} & {\text{Consider the equation~}{x^{578} + 578 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{579} + 579 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{580} + 580 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{581} + 581 = \beta}\text{.}} & {\text{Consider the equation~}{x^{582} + 582 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{583} + 583 = \delta}\text{.}} & {\text{Consider the equation~}{x^{584} + 584 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{585} + 585 = \beta}\text{.}} & {\text{Consider the equation~}{x^{586} + 586 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{587} + 587 = \delta}\text{.}} & {\text{Consider the equation~}{x^{588} + 588 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{589} + 589 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{590} + 590 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{591} + 591 = \delta}\text{.}} & {\text{Consider the equation~}{x^{592} + 592 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{593} + 593 = \beta}\text{.}} & {\text{Consider the equation~}{x^{594} + 594 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{595} + 595 = \delta}\text{.}} & {\text{Consider the equation~}{x^{596} + 596 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{597} + 597 = \beta}\text{.}} & {\text{Consider the equation~}{x^{598} + 598 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{599} + 599 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{600} + 600 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{601} + 601 = \beta}\text{.}} & {\text{Consider the equation~}{x^{602} + 602 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{603} + 603 = \delta}\text{.}} & {\text{Consider the equation~}{x^{604} + 604 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{605} + 605 = \beta}\text{.}} & {\text{Consider the equation~}{x^{606} + 606 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{607} + 607 = \delta}\text{.}} & {\text{Consider the equation~}{x^{608} + 608 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{609} + 609 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{610} + 610 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{611} + 611 = \delta}\text{.}} & {\text{Consider the equation~}{x^{612} + 612 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{613} + 613 = \beta}\text{.}} & {\text{Consider the equation~}{x^{614} + 614 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{615} + 615 = \delta}\text{.}} & {\text{Consider the equation~}{x^{616} + 616 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{617} + 617 = \beta}\text{.}} & {\text{Consider the equation~}{x^{618} + 618 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{619} + 619 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{620} + 620 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{621} + 621 = \beta}\text{.}} & {\text{Consider the equation~}{x^{622} + 622 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{623} + 623 = \delta}\text{.}} & {\text{Consider the equation~}{x^{624} + 624 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{625} + 625 = \beta}\text{.}} & {\text{Consider the equation~}{x^{626} + 626 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{627} + 627 = \delta}\text{.}} & {\text{Consider the equation~}{x^{628} + 628 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{629} + 629 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{630} + 630 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{631} + 631 = \delta}\text{.}} & {\text{Consider the equation~}{x^{632} + 632 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{633} + 633 = \beta}\text{.}} & {\text{Consider the equation~}{x^{634} + 634 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{635} + 635 = \delta}\text{.}} & {\text{Consider the equation~}{x^{636} + 636 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{637} + 637 = \beta}\text{.}} & {\text{Consider the equation~}{x^{638} + 638 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{639} + 639 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{640} + 640 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{641} + 641 = \beta}\text{.}} & {\text{Consider the equation~}{x^{642} + 642 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{643} + 643 = \delta}\text{.}} & {\text{Consider the equation~}{x^{644} + 644 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{645} + 645 = \beta}\text{.}} & {\text{Consider the equation~}{x^{646} + 646 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{647} + 647 = \delta}\text{.}} & {\text{Consider the equation~}{x^{648} + 648 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{649} + 649 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{650} + 650 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{651} + 651 = \delta}\text{.}} & {\text{Consider the equation~}{x^{652} + 652 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{653} + 653 = \beta}\text{.}} & {\text{Consider the equation~}{x^{654} + 654 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{655} + 655 = \delta}\text{.}} & {\text{Consider the equation~}{x^{656} + 656 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{657} + 657 = \beta}\text{.}} & {\text{Consider the equation~}{x^{658} + 658 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{659} + 659 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{660} + 660 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{661} + 661 = \beta}\text{.}} & {\text{Consider the equation~}{x^{662} + 662 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{663} + 663 = \delta}\text{.}} & {\text{Consider the equation~}{x^{664} + 664 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{665} + 665 = \beta}\text{.}} & {\text{Consider the equation~}{x^{666} + 666 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{667} + 667 = \delta}\text{.}} & {\text{Consider the equation~}{x^{668} + 668 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{669} + 669 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{670} + 670 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{671} + 671 = \delta}\text{.}} & {\text{Consider the equation~}{x^{672} + 672 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{673} + 673 = \beta}\text{.}} & {\text{Consider the equation~}{x^{674} + 674 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{675} + 675 = \delta}\text{.}} & {\text{Consider the equation~}{x^{676} + 676 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{677} + 677 = \beta}\text{.}} & {\text{Consider the equation~}{x^{678} + 678 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{679} + 679 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{680} + 680 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{681} + 681 = \beta}\text{.}} & {\text{Consider the equation~}{x^{682} + 682 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{683} + 683 = \delta}\text{.}} & {\text{Consider the equation~}{x^{684} + 684 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{685} + 685 = \beta}\text{.}} & {\text{Consider the equation~}{x^{686} + 686 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{687} + 687 = \delta}\text{.}} & {\text{Consider the equation~}{x^{688} + 688 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{689} + 689 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{690} + 690 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{691} + 691 = \delta}\text{.}} & {\text{Consider the equation~}{x^{692} + 692 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{693} + 693 = \beta}\text{.}} & {\text{Consider the equation~}{x^{694} + 694 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{695} + 695 = \delta}\text{.}} & {\text{Consider the equation~}{x^{696} + 696 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{697} + 697 = \beta}\text{.}} & {\text{Consider the equation~}{x^{698} + 698 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{699} + 699 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{700} + 700 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{701} + 701 = \beta}\text{.}} & {\text{Consider the equation~}{x^{702} + 702 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{703} + 703 = \delta}\text{.}} & {\text{Consider the equation~}{x^{704} + 704 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{705} + 705 = \beta}\text{.}} & {\text{Consider the equation~}{x^{706} + 706 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{707} + 707 = \delta}\text{.}} & {\text{Consider the equation~}{x^{708} + 708 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{709} + 709 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{710} + 710 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{711} + 711 = \delta}\text{.}} & {\text{Consider the equation~}{x^{712} + 712 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{713} + 713 = \beta}\text{.}} & {\text{Consider the equation~}{x^{714} + 714 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{715} + 715 = \delta}\text{.}} & {\text{Consider the equation~}{x^{716} + 716 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{717} + 717 = \beta}\text{.}} & {\text{Consider the equation~}{x^{718} + 718 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{719} + 719 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{720} + 720 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{721} + 721 = \beta}\text{.}} & {\text{Consider the equation~}{x^{722} + 722 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{723} + 723 = \delta}\text{.}} & {\text{Consider the equation~}{x^{724} + 724 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{725} + 725 = \beta}\text{.}} & {\text{Consider the equation~}{x^{726} + 726 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{727} + 727 = \delta}\text{.}} & {\text{Consider the equation~}{x^{728} + 728 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{729} + 729 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{730} + 730 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{731} + 731 = \delta}\text{.}} & {\text{Consider the equation~}{x^{732} + 732 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{733} + 733 = \beta}\text{.}} & {\text{Consider the equation~}{x^{734} + 734 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{735} + 735 = \delta}\text{.}} & {\text{Consider the equation~}{x^{736} + 736 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{737} + 737 = \beta}\text{.}} & {\text{Consider the equation~}{x^{738} + 738 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{739} + 739 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{740} + 740 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{741} + 741 = \beta}\text{.}} & {\text{Consider the equation~}{x^{742} + 742 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{743} + 743 = \delta}\text{.}} & {\text{Consider the equation~}{x^{744} + 744 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{745} + 745 = \beta}\text{.}} & {\text{Consider the equation~}{x^{746} + 746 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{747} + 747 = \delta}\text{.}} & {\text{Consider the equation~}{x^{748} + 748 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{749} + 749 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{750} + 750 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{751} + 751 = \delta}\text{.}} & {\text{Consider the equation~}{x^{752} + 752 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{753} + 753 = \beta}\text{.}} & {\text{Consider the equation~}{x^{754} + 754 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{755} + 755 = \delta}\text{.}} & {\text{Consider the equation~}{x^{756} + 756 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{757} + 757 = \beta}\text{.}} & {\text{Consider the equation~}{x^{758} + 758 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{759} + 759 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{760} + 760 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{761} + 761 = \beta}\text{.}} & {\text{Consider the equation~}{x^{762} + 762 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{763} + 763 = \delta}\text{.}} & {\text{Consider the equation~}{x^{764} + 764 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{765} + 765 = \beta}\text{.}} & {\text{Consider the equation~}{x^{766} + 766 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{767} + 767 = \delta}\text{.}} & {\text{Consider the equation~}{x^{768} + 768 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{769} + 769 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{770} + 770 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{771} + 771 = \delta}\text{.}} & {\text{Consider the equation~}{x^{772} + 772 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{773} + 773 = \beta}\text{.}} & {\text{Consider the equation~}{x^{774} + 774 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{775} + 775 = \delta}\text{.}} & {\text{Consider the equation~}{x^{776} + 776 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{777} + 777 = \beta}\text{.}} & {\text{Consider the equation~}{x^{778} + 778 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{779} + 779 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{780} + 780 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{781} + 781 = \beta}\text{.}} & {\text{Consider the equation~}{x^{782} + 782 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{783} + 783 = \delta}\text{.}} & {\text{Consider the equation~}{x^{784} + 784 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{785} + 785 = \beta}\text{.}} & {\text{Consider the equation~}{x^{786} + 786 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{787} + 787 = \delta}\text{.}} & {\text{Consider the equation~}{x^{788} + 788 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{789} + 789 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{790} + 790 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{791} + 791 = \delta}\text{.}} & {\text{Consider the equation~}{x^{792} + 792 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{793} + 793 = \beta}\text{.}} & {\text{Consider the equation~}{x^{794} + 794 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{795} + 795 = \delta}\text{.}} & {\text{Consider the equation~}{x^{796} + 796 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{797} + 797 = \beta}\text{.}} & {\text{Consider the equation~}{x^{798} + 798 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{799} + 799 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{800} + 800 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{801} + 801 = \beta}\text{.}} & {\text{Consider the equation~}{x^{802} + 802 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{803} + 803 = \delta}\text{.}} & {\text{Consider the equation~}{x^{804} + 804 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{805} + 805 = \beta}\text{.}} & {\text{Consider the equation~}{x^{806} + 806 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{807} + 807 = \delta}\text{.}} & {\text{Consider the equation~}{x^{808} + 808 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{809} + 809 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{810} + 810 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{811} + 811 = \delta}\text{.}} & {\text{Consider the equation~}{x^{812} + 812 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{813} + 813 = \beta}\text{.}} & {\text{Consider the equation~}{x^{814} + 814 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{815} + 815 = \delta}\text{.}} & {\text{Consider the equation~}{x^{816} + 816 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{817} + 817 = \beta}\text{.}} & {\text{Consider the equation~}{x^{818} + 818 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{819} + 819 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{820} + 820 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{821} + 821 = \beta}\text{.}} & {\text{Consider the equation~}{x^{822} + 822 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{823} + 823 = \delta}\text{.}} & {\text{Consider the equation~}{x^{824} + 824 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{825} + 825 = \beta}\text{.}} & {\text{Consider the equation~}{x^{826} + 826 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{827} + 827 = \delta}\text{.}} & {\text{Consider the equation~}{x^{828} + 828 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{829} + 829 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{830} + 830 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{831} + 831 = \delta}\text{.}} & {\text{Consider the equation~}{x^{832} + 832 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{833} + 833 = \beta}\text{.}} & {\text{Consider the equation~}{x^{834} + 834 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{835} + 835 = \delta}\text{.}} & {\text{Consider the equation~}{x^{836} + 836 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{837} + 837 = \beta}\text{.}} & {\text{Consider the equation~}{x^{838} + 838 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{839} + 839 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{840} + 840 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{841} + 841 = \beta}\text{.}} & {\text{Consider the equation~}{x^{842} + 842 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{843} + 843 = \delta}\text{.}} & {\text{Consider the equation~}{x^{844} + 844 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{845} + 845 = \beta}\text{.}} & {\text{Consider the equation~}{x^{846} + 846 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{847} + 847 = \delta}\text{.}} & {\text{Consider the equation~}{x^{848} + 848 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{849} + 849 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{850} + 850 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{851} + 851 = \delta}\text{.}} & {\text{Consider the equation~}{x^{852} + 852 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{853} + 853 = \beta}\text{.}} & {\text{Consider the equation~}{x^{854} + 854 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{855} + 855 = \delta}\text{.}} & {\text{Consider the equation~}{x^{856} + 856 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{857} + 857 = \beta}\text{.}} & {\text{Consider the equation~}{x^{858} + 858 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{859} + 859 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{860} + 860 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{861} + 861 = \beta}\text{.}} & {\text{Consider the equation~}{x^{862} + 862 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{863} + 863 = \delta}\text{.}} & {\text{Consider the equation~}{x^{864} + 864 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{865} + 865 = \beta}\text{.}} & {\text{Consider the equation~}{x^{866} + 866 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{867} + 867 = \delta}\text{.}} & {\text{Consider the equation~}{x^{868} + 868 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{869} + 869 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{870} + 870 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{871} + 871 = \delta}\text{.}} & {\text{Consider the equation~}{x^{872} + 872 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{873} + 873 = \beta}\text{.}} & {\text{Consider the equation~}{x^{874} + 874 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{875} + 875 = \delta}\text{.}} & {\text{Consider the equation~}{x^{876} + 876 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{877} + 877 = \beta}\text{.}} & {\text{Consider the equation~}{x^{878} + 878 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{879} + 879 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{880} + 880 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{881} + 881 = \beta}\text{.}} & {\text{Consider the equation~}{x^{882} + 882 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{883} + 883 = \delta}\text{.}} & {\text{Consider the equation~}{x^{884} + 884 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{885} + 885 = \beta}\text{.}} & {\text{Consider the equation~}{x^{886} + 886 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{887} + 887 = \delta}\text{.}} & {\text{Consider the equation~}{x^{888} + 888 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{889} + 889 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{890} + 890 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{891} + 891 = \delta}\text{.}} & {\text{Consider the equation~}{x^{892} + 892 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{893} + 893 = \beta}\text{.}} & {\text{Consider the equation~}{x^{894} + 894 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{895} + 895 = \delta}\text{.}} & {\text{Consider the equation~}{x^{896} + 896 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{897} + 897 = \beta}\text{.}} & {\text{Consider the equation~}{x^{898} + 898 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{899} + 899 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{900} + 900 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{901} + 901 = \beta}\text{.}} & {\text{Consider the equation~}{x^{902} + 902 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{903} + 903 = \delta}\text{.}} & {\text{Consider the equation~}{x^{904} + 904 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{905} + 905 = \beta}\text{.}} & {\text{Consider the equation~}{x^{906} + 906 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{907} + 907 = \delta}\text{.}} & {\text{Consider the equation~}{x^{908} + 908 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{909} + 909 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{910} + 910 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{911} + 911 = \delta}\text{.}} & {\text{Consider the equation~}{x^{912} + 912 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{913} + 913 = \beta}\text{.}} & {\text{Consider the equation~}{x^{914} + 914 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{915} + 915 = \delta}\text{.}} & {\text{Consider the equation~}{x^{916} + 916 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{917} + 917 = \beta}\text{.}} & {\text{Consider the equation~}{x^{918} + 918 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{919} + 919 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{920} + 920 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{921} + 921 = \beta}\text{.}} & {\text{Consider the equation~}{x^{922} + 922 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{923} + 923 = \delta}\text{.}} & {\text{Consider the equation~}{x^{924} + 924 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{925} + 925 = \beta}\text{.}} & {\text{Consider the equation~}{x^{926} + 926 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{927} + 927 = \delta}\text{.}} & {\text{Consider the equation~}{x^{928} + 928 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{929} + 929 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{930} + 930 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{931} + 931 = \delta}\text{.}} & {\text{Consider the equation~}{x^{932} + 932 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{933} + 933 = \beta}\text{.}} & {\text{Consider the equation~}{x^{934} + 934 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{935} + 935 = \delta}\text{.}} & {\text{Consider the equation~}{x^{936} + 936 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{937} + 937 = \beta}\text{.}} & {\text{Consider the equation~}{x^{938} + 938 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{939} + 939 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{940} + 940 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{941} + 941 = \beta}\text{.}} & {\text{Consider the equation~}{x^{942} + 942 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{943} + 943 = \delta}\text{.}} & {\text{Consider the equation~}{x^{944} + 944 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{945} + 945 = \beta}\text{.}} & {\text{Consider the equation~}{x^{946} + 946 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{947} + 947 = \delta}\text{.}} & {\text{Consider the equation~}{x^{948} + 948 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{949} + 949 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{950} + 950 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{951} + 951 = \delta}\text{.}} & {\text{Consider the equation~}{x^{952} + 952 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{953} + 953 = \beta}\text{.}} & {\text{Consider the equation~}{x^{954} + 954 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{955} + 955 = \delta}\text{.}} & {\text{Consider the equation~}{x^{956} + 956 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{957} + 957 = \beta}\text{.}} & {\text{Consider the equation~}{x^{958} + 958 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{959} + 959 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{960} + 960 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{961} + 961 = \beta}\text{.}} & {\text{Consider the equation~}{x^{962} + 962 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{963} + 963 = \delta}\text{.}} & {\text{Consider the equation~}{x^{964} + 964 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{965} + 965 = \beta}\text{.}} & {\text{Consider the equation~}{x^{966} + 966 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{967} + 967 = \delta}\text{.}} & {\text{Consider the equation~}{x^{968} + 968 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{969} + 969 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{970} + 970 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{971} + 971 = \delta}\text{.}} & {\text{Consider the equation~}{x^{972} + 972 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{973} + 973 = \beta}\text{.}} & {\text{Consider the equation~}{x^{974} + 974 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{975} + 975 = \delta}\text{.}} & {\text{Consider the equation~}{x^{976} + 976 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{977} + 977 = \beta}\text{.}} & {\text{Consider the equation~}{x^{978} + 978 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{979} + 979 = \delta}\text{.}} \\
+{\text{Consider the equation~}{x^{980} + 980 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{981} + 981 = \beta}\text{.}} & {\text{Consider the equation~}{x^{982} + 982 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{983} + 983 = \delta}\text{.}} & {\text{Consider the equation~}{x^{984} + 984 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{985} + 985 = \beta}\text{.}} & {\text{Consider the equation~}{x^{986} + 986 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{987} + 987 = \delta}\text{.}} & {\text{Consider the equation~}{x^{988} + 988 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{989} + 989 = \beta}\text{.}} \\
+{\text{Consider the equation~}{x^{990} + 990 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{991} + 991 = \delta}\text{.}} & {\text{Consider the equation~}{x^{992} + 992 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{993} + 993 = \beta}\text{.}} & {\text{Consider the equation~}{x^{994} + 994 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{995} + 995 = \delta}\text{.}} & {\text{Consider the equation~}{x^{996} + 996 = \alpha}\text{.}} & {\text{Consider the equation~}{x^{997} + 997 = \beta}\text{.}} & {\text{Consider the equation~}{x^{998} + 998 = \gamma}\text{.}} & {\text{Consider the equation~}{x^{999} + 999 = \delta}\text{.}}
 \end{array}
diff --git a/test/writer/tex/macros.test b/test/writer/tex/macros.test
--- a/test/writer/tex/macros.test
+++ b/test/writer/tex/macros.test
@@ -14,5 +14,5 @@
 >>> tex
 25{y + 3}{x + 3}{x + \alpha}\begin{matrix}
 2 & 3 \\
-4 & 5 \\
+4 & 5
 \end{matrix}
diff --git a/test/writer/tex/maction-01.test b/test/writer/tex/maction-01.test
--- a/test/writer/tex/maction-01.test
+++ b/test/writer/tex/maction-01.test
@@ -1,4 +1,4 @@
 <<< native
 [ EBoxed (EText TextNormal "Place mouse pointer over this box") ]
 >>> tex
-\boxed{\text{Place\ mouse\ pointer\ over\ this\ box}}
+\boxed{\text{Place mouse pointer over this box}}
diff --git a/test/writer/tex/maction-02.test b/test/writer/tex/maction-02.test
--- a/test/writer/tex/maction-02.test
+++ b/test/writer/tex/maction-02.test
@@ -11,5 +11,5 @@
 >>> tex
 \begin{pmatrix}
 n \\
-k \\
+k
 \end{pmatrix}
diff --git a/test/writer/tex/maction-03.test b/test/writer/tex/maction-03.test
--- a/test/writer/tex/maction-03.test
+++ b/test/writer/tex/maction-03.test
@@ -15,5 +15,5 @@
 >>> tex
 \begin{pmatrix}
 0 & 1 \\
-2 & 3 \\
+2 & 3
 \end{pmatrix}^{T}
diff --git a/test/writer/tex/maction-08.test b/test/writer/tex/maction-08.test
--- a/test/writer/tex/maction-08.test
+++ b/test/writer/tex/maction-08.test
@@ -15,5 +15,5 @@
 >>> tex
 \begin{pmatrix}
 {12x} & 0 \\
-0 & 117 \\
+0 & 117
 \end{pmatrix}
diff --git a/test/writer/tex/maligngroup1.test b/test/writer/tex/maligngroup1.test
--- a/test/writer/tex/maligngroup1.test
+++ b/test/writer/tex/maligngroup1.test
@@ -31,5 +31,5 @@
 >>> tex
 \begin{matrix}
 {{{8.44x} + {55y}} = 0} \\
-{{{3.1x} - {0.7y}} = {- 1.1}} \\
+{{{3.1x} - {0.7y}} = {- 1.1}}
 \end{matrix}
diff --git a/test/writer/tex/math-in-text.test b/test/writer/tex/math-in-text.test
--- a/test/writer/tex/math-in-text.test
+++ b/test/writer/tex/math-in-text.test
@@ -17,4 +17,4 @@
     ]
 ]
 >>> tex
-X^{2} = y{\text{\ under\ }H_{0}\text{\ except\ when\ }{x{\textbf{\ is\ less\ than\ }z\textbf{.}}}}
+X^{2} = y{\text{ under }H_{0}\text{ except when }{x{\textbf{ is less than }z\textbf{.}}}}
diff --git a/test/writer/tex/mathTable1.test b/test/writer/tex/mathTable1.test
--- a/test/writer/tex/mathTable1.test
+++ b/test/writer/tex/mathTable1.test
@@ -19,5 +19,5 @@
 \begin{matrix}
 \frac{xxx}{y} & {bbbb} & c \\
 \frac{x}{y} & y & z \\
-\frac{x}{y} & 2 & 333333 \\
+\frac{x}{y} & 2 & 333333
 \end{matrix}
diff --git a/test/writer/tex/mfenced-01.test b/test/writer/tex/mfenced-01.test
--- a/test/writer/tex/mfenced-01.test
+++ b/test/writer/tex/mfenced-01.test
@@ -24,5 +24,5 @@
 \begin{bmatrix}
 A & B & C \\
 D & E & F \\
-G & H & I \\
+G & H & I
 \end{bmatrix}
diff --git a/test/writer/tex/mfenced-02.test b/test/writer/tex/mfenced-02.test
--- a/test/writer/tex/mfenced-02.test
+++ b/test/writer/tex/mfenced-02.test
@@ -24,5 +24,5 @@
 \begin{Bmatrix}
 A & B & C \\
 D & E & F \\
-G & H & I \\
+G & H & I
 \end{Bmatrix}
diff --git a/test/writer/tex/mfenced-03.test b/test/writer/tex/mfenced-03.test
--- a/test/writer/tex/mfenced-03.test
+++ b/test/writer/tex/mfenced-03.test
@@ -24,5 +24,5 @@
 \begin{pmatrix}
 A & B & C \\
 D & E & F \\
-G & H & I \\
+G & H & I
 \end{pmatrix}
diff --git a/test/writer/tex/mfenced-04.test b/test/writer/tex/mfenced-04.test
--- a/test/writer/tex/mfenced-04.test
+++ b/test/writer/tex/mfenced-04.test
@@ -20,8 +20,8 @@
 >>> tex
 \left\lceil \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right\rfloor = \left\lfloor \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right\rceil
diff --git a/test/writer/tex/mfenced-05.test b/test/writer/tex/mfenced-05.test
--- a/test/writer/tex/mfenced-05.test
+++ b/test/writer/tex/mfenced-05.test
@@ -20,8 +20,8 @@
 >>> tex
 \left\{ \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right| = \left| \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right\}
diff --git a/test/writer/tex/mfenced-06.test b/test/writer/tex/mfenced-06.test
--- a/test/writer/tex/mfenced-06.test
+++ b/test/writer/tex/mfenced-06.test
@@ -20,8 +20,8 @@
 >>> tex
 \left\lbrack \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right| = \left| \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right\rbrack
diff --git a/test/writer/tex/mfenced-07.test b/test/writer/tex/mfenced-07.test
--- a/test/writer/tex/mfenced-07.test
+++ b/test/writer/tex/mfenced-07.test
@@ -20,8 +20,8 @@
 >>> tex
 \begin{pmatrix}
 U \\
-V \\
+V
 \end{pmatrix} = \begin{pmatrix}
 U \\
-V \\
+V
 \end{pmatrix}
diff --git a/test/writer/tex/mfenced-08.test b/test/writer/tex/mfenced-08.test
--- a/test/writer/tex/mfenced-08.test
+++ b/test/writer/tex/mfenced-08.test
@@ -20,8 +20,8 @@
 >>> tex
 \left| \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right| = \left\| \begin{matrix}
 U \\
-V \\
+V
 \end{matrix} \right\|
diff --git a/test/writer/tex/mfracBalign16.test b/test/writer/tex/mfracBalign16.test
--- a/test/writer/tex/mfracBalign16.test
+++ b/test/writer/tex/mfracBalign16.test
@@ -51,5 +51,5 @@
 {x - \frac{1}{b}x} \\
 {x - \frac{1}{2}x} \\
 {x - \frac{1^{2}}{z}x} \\
-{x - \frac{z}{1^{2}}x} \\
+{x - \frac{z}{1^{2}}x}
 \end{matrix}
diff --git a/test/writer/tex/mfracBheight17.test b/test/writer/tex/mfracBheight17.test
--- a/test/writer/tex/mfracBheight17.test
+++ b/test/writer/tex/mfracBheight17.test
@@ -41,6 +41,6 @@
 ]
 >>> tex
 \begin{matrix}
-\text{taller\ num} & {x^{2} + \frac{h}{x}^{2} + \left( \frac{h}{x} \right)^{2}} \\
-\text{taller\ denom} & {x^{2} + \frac{x}{y}^{2} + \left( \frac{x}{y} \right)^{2}} \\
+\text{taller num} & {x^{2} + \frac{h}{x}^{2} + \left( \frac{h}{x} \right)^{2}} \\
+\text{taller denom} & {x^{2} + \frac{x}{y}^{2} + \left( \frac{x}{y} \right)^{2}}
 \end{matrix}
diff --git a/test/writer/tex/mfracZcomp-01.test b/test/writer/tex/mfracZcomp-01.test
--- a/test/writer/tex/mfracZcomp-01.test
+++ b/test/writer/tex/mfracZcomp-01.test
@@ -9,4 +9,4 @@
     TextNormal ", numerator and denominator should render script size."
 ]
 >>> tex
-\text{Inline,\ auto,\ normal\ line~}\frac{\sin\theta}{\pi}\text{,\ numerator\ and\ denominator\ should\ render\ script\ size.}
+\text{Inline, auto, normal line~}\frac{\sin\theta}{\pi}\text{, numerator and denominator should render script size.}
diff --git a/test/writer/tex/mfracZcomp-02.test b/test/writer/tex/mfracZcomp-02.test
--- a/test/writer/tex/mfracZcomp-02.test
+++ b/test/writer/tex/mfracZcomp-02.test
@@ -9,4 +9,4 @@
     TextNormal ", numerator and denominator should render normal size."
 ]
 >>> tex
-\text{Inline,\ display\ style,\ normal\ line~}\frac{\ln x}{y}\text{,\ numerator\ and\ denominator\ should\ render\ normal\ size.}
+\text{Inline, display style, normal line~}\frac{\ln x}{y}\text{, numerator and denominator should render normal size.}
diff --git a/test/writer/tex/mfracZcomp-03.test b/test/writer/tex/mfracZcomp-03.test
--- a/test/writer/tex/mfracZcomp-03.test
+++ b/test/writer/tex/mfracZcomp-03.test
@@ -9,4 +9,4 @@
     TextNormal ", numerator and denominator should render script size."
 ]
 >>> tex
-\text{Inline,\ text\ style,\ normal\ line~}\frac{\tan\theta}{67}\text{,\ numerator\ and\ denominator\ should\ render\ script\ size.}
+\text{Inline, text style, normal line~}\frac{\tan\theta}{67}\text{, numerator and denominator should render script size.}
diff --git a/test/writer/tex/mfracZcomp-04.test b/test/writer/tex/mfracZcomp-04.test
--- a/test/writer/tex/mfracZcomp-04.test
+++ b/test/writer/tex/mfracZcomp-04.test
@@ -12,4 +12,4 @@
     TextNormal ", the superscripted 2 should be script-script size."
 ]
 >>> tex
-\text{Inline,\ auto,\ thick\ line~}\frac{x^{2} + 1}{x}\text{,\ the\ superscripted\ 2\ should\ be\ script-script\ size.}
+\text{Inline, auto, thick line~}\frac{x^{2} + 1}{x}\text{, the superscripted 2 should be script-script size.}
diff --git a/test/writer/tex/mfracZcomp-05.test b/test/writer/tex/mfracZcomp-05.test
--- a/test/writer/tex/mfracZcomp-05.test
+++ b/test/writer/tex/mfracZcomp-05.test
@@ -15,4 +15,4 @@
 , EText TextNormal ", the superscripted 2 should be script size."
 ]
 >>> tex
-\text{Inline,\ display\ style,\ thick\ line~}\frac{x - 1}{{0.98 \times 10^{2}} + y}\text{,\ the\ superscripted\ 2\ should\ be\ script\ size.}
+\text{Inline, display style, thick line~}\frac{x - 1}{{0.98 \times 10^{2}} + y}\text{, the superscripted 2 should be script size.}
diff --git a/test/writer/tex/mfracZcomp-06.test b/test/writer/tex/mfracZcomp-06.test
--- a/test/writer/tex/mfracZcomp-06.test
+++ b/test/writer/tex/mfracZcomp-06.test
@@ -21,4 +21,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline,\ text\ style,\ thick\ line~}{\frac{x^{2} + 1}{x}\frac{x^{2} + 1}{x}}\text{~the\ end.}
+\text{Inline, text style, thick line~}{\frac{x^{2} + 1}{x}\frac{x^{2} + 1}{x}}\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-07.test b/test/writer/tex/mfracZcomp-07.test
--- a/test/writer/tex/mfracZcomp-07.test
+++ b/test/writer/tex/mfracZcomp-07.test
@@ -11,4 +11,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline,\ auto,\ no\ line~}\frac{x^{2} + 1}{x}\text{~the\ end.}
+\text{Inline, auto, no line~}\frac{x^{2} + 1}{x}\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-08.test b/test/writer/tex/mfracZcomp-08.test
--- a/test/writer/tex/mfracZcomp-08.test
+++ b/test/writer/tex/mfracZcomp-08.test
@@ -7,4 +7,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline,\ display\ style,\ no\ line~}\frac{1.234567}{89 + x}\text{~the\ end.}
+\text{Inline, display style, no line~}\frac{1.234567}{89 + x}\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-09.test b/test/writer/tex/mfracZcomp-09.test
--- a/test/writer/tex/mfracZcomp-09.test
+++ b/test/writer/tex/mfracZcomp-09.test
@@ -11,4 +11,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline,\ text\ style,\ no\ line~}\frac{x^{2} + 1}{x}\text{~the\ end.}
+\text{Inline, text style, no line~}\frac{x^{2} + 1}{x}\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-10.test b/test/writer/tex/mfracZcomp-10.test
--- a/test/writer/tex/mfracZcomp-10.test
+++ b/test/writer/tex/mfracZcomp-10.test
@@ -7,4 +7,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ binomial,\ auto,\ no\ line~}\left( \frac{5}{8} \right)\text{~the\ end.}
+\text{Inline binomial, auto, no line~}\left( \frac{5}{8} \right)\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-11.test b/test/writer/tex/mfracZcomp-11.test
--- a/test/writer/tex/mfracZcomp-11.test
+++ b/test/writer/tex/mfracZcomp-11.test
@@ -12,4 +12,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ binomial,\ display\ style,\ no\ line~}\left( \frac{n - k}{n} \right)\text{~the\ end.}
+\text{Inline binomial, display style, no line~}\left( \frac{n - k}{n} \right)\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-12.test b/test/writer/tex/mfracZcomp-12.test
--- a/test/writer/tex/mfracZcomp-12.test
+++ b/test/writer/tex/mfracZcomp-12.test
@@ -13,4 +13,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ binomial,\ text\ style,\ no\ line~}\left( \frac{\log x}{y} \right)\text{~the\ end.}
+\text{Inline binomial, text style, no line~}\left( \frac{\log x}{y} \right)\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-13.test b/test/writer/tex/mfracZcomp-13.test
--- a/test/writer/tex/mfracZcomp-13.test
+++ b/test/writer/tex/mfracZcomp-13.test
@@ -13,4 +13,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ built-in\ verts,\ auto,\ no\ line~}\left| \frac{\sin\theta}{M} \right|\text{~the\ end.}
+\text{Inline built-in verts, auto, no line~}\left| \frac{\sin\theta}{M} \right|\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-14.test b/test/writer/tex/mfracZcomp-14.test
--- a/test/writer/tex/mfracZcomp-14.test
+++ b/test/writer/tex/mfracZcomp-14.test
@@ -15,4 +15,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ up\ arrows,\ display\ style,\ no\ line~}\left. \uparrow\frac{\sin\theta}{M}\uparrow \right.\text{~the\ end.}
+\text{Inline up arrows, display style, no line~}\left. \uparrow\frac{\sin\theta}{M}\uparrow \right.\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-15.test b/test/writer/tex/mfracZcomp-15.test
--- a/test/writer/tex/mfracZcomp-15.test
+++ b/test/writer/tex/mfracZcomp-15.test
@@ -15,4 +15,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ down\ arrows,\ text\ style,\ no\ line~}\left. \downarrow\frac{\sin\theta}{M}\downarrow \right.\text{~the\ end.}
+\text{Inline down arrows, text style, no line~}\left. \downarrow\frac{\sin\theta}{M}\downarrow \right.\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-16.test b/test/writer/tex/mfracZcomp-16.test
--- a/test/writer/tex/mfracZcomp-16.test
+++ b/test/writer/tex/mfracZcomp-16.test
@@ -13,4 +13,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ floor,\ auto,\ normal\ line~}\left\lfloor \frac{\sin\theta}{M} \right\rfloor\text{~the\ end.}
+\text{Inline floor, auto, normal line~}\left\lfloor \frac{\sin\theta}{M} \right\rfloor\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-17.test b/test/writer/tex/mfracZcomp-17.test
--- a/test/writer/tex/mfracZcomp-17.test
+++ b/test/writer/tex/mfracZcomp-17.test
@@ -13,4 +13,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ ceiling,\ display\ style,\ normal\ line~}\left\lceil \frac{\sin\theta}{M} \right\rceil\text{~the\ end.}
+\text{Inline ceiling, display style, normal line~}\left\lceil \frac{\sin\theta}{M} \right\rceil\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-18.test b/test/writer/tex/mfracZcomp-18.test
--- a/test/writer/tex/mfracZcomp-18.test
+++ b/test/writer/tex/mfracZcomp-18.test
@@ -16,4 +16,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ updown\ arrows,\ text\ style,\ normal\ line~}\left. \updownarrow\frac{\sin\theta}{M}\updownarrow \right.\text{~the\ end.}
+\text{Inline updown arrows, text style, normal line~}\left. \updownarrow\frac{\sin\theta}{M}\updownarrow \right.\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-19.test b/test/writer/tex/mfracZcomp-19.test
--- a/test/writer/tex/mfracZcomp-19.test
+++ b/test/writer/tex/mfracZcomp-19.test
@@ -15,4 +15,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ double\ up\ arrows,\ auto,\ thick\ line~}\left. \Uparrow\frac{\sin\theta}{M}\Uparrow \right.\text{~the\ end.}
+\text{Inline double up arrows, auto, thick line~}\left. \Uparrow\frac{\sin\theta}{M}\Uparrow \right.\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-20.test b/test/writer/tex/mfracZcomp-20.test
--- a/test/writer/tex/mfracZcomp-20.test
+++ b/test/writer/tex/mfracZcomp-20.test
@@ -17,4 +17,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ double\ down\ arrows,\ display\ style,\ thick\ line~}\left. \Downarrow\frac{\sin\theta}{M}\Downarrow \right.\text{~the\ end.}
+\text{Inline double down arrows, display style, thick line~}\left. \Downarrow\frac{\sin\theta}{M}\Downarrow \right.\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-21.test b/test/writer/tex/mfracZcomp-21.test
--- a/test/writer/tex/mfracZcomp-21.test
+++ b/test/writer/tex/mfracZcomp-21.test
@@ -17,4 +17,4 @@
 , EText TextNormal "\160the end."
 ]
 >>> tex
-\text{Inline\ double\ up\ down\ arrows,\ text\ style,\ thick\ line~}\left. \Updownarrow\frac{\sin\theta}{M}\Updownarrow \right.\text{~the\ end.}
+\text{Inline double up down arrows, text style, thick line~}\left. \Updownarrow\frac{\sin\theta}{M}\Updownarrow \right.\text{~the end.}
diff --git a/test/writer/tex/mfracZcomp-22.test b/test/writer/tex/mfracZcomp-22.test
--- a/test/writer/tex/mfracZcomp-22.test
+++ b/test/writer/tex/mfracZcomp-22.test
@@ -12,4 +12,4 @@
     ", the rendering should be script-size, normal-size and script-size in this example. Fraction lines should align vertically with the math axis."
 ]
 >>> tex
-\text{Inline,\ styles\ auto,\ display\ and\ text~}{\frac{1}{2} - \frac{1}{2} + \frac{1.23456}{7890}}\text{,\ the\ rendering\ should\ be\ script-size,\ normal-size\ and\ script-size\ in\ this\ example.\ Fraction\ lines\ should\ align\ vertically\ with\ the\ math\ axis.}
+\text{Inline, styles auto, display and text~}{\frac{1}{2} - \frac{1}{2} + \frac{1.23456}{7890}}\text{, the rendering should be script-size, normal-size and script-size in this example. Fraction lines should align vertically with the math axis.}
diff --git a/test/writer/tex/mfracZcomp-23.test b/test/writer/tex/mfracZcomp-23.test
--- a/test/writer/tex/mfracZcomp-23.test
+++ b/test/writer/tex/mfracZcomp-23.test
@@ -10,4 +10,4 @@
 , EText TextNormal "\160in a display."
 ]
 >>> tex
-\text{The\ same\ expression~}{\frac{1}{2} - \frac{1}{2} + \frac{1.23456}{7890}}\text{~in\ a\ display.}
+\text{The same expression~}{\frac{1}{2} - \frac{1}{2} + \frac{1.23456}{7890}}\text{~in a display.}
diff --git a/test/writer/tex/mfracZcomp-24.test b/test/writer/tex/mfracZcomp-24.test
--- a/test/writer/tex/mfracZcomp-24.test
+++ b/test/writer/tex/mfracZcomp-24.test
@@ -41,4 +41,4 @@
 , EText TextNormal "\160etc."
 ]
 >>> tex
-\text{Inline\ fenced\ nested\ fractions~}{\left\lbrack \frac{\left. \parallel\frac{{\sin\theta} + 1}{11}\parallel \right. - x}{\frac{x^{2}}{a_{1}}} \right\rbrack + {\lbrack 1.0\rbrack}}\text{~etc.}
+\text{Inline fenced nested fractions~}{\left\lbrack \frac{\left. \parallel\frac{{\sin\theta} + 1}{11}\parallel \right. - x}{\frac{x^{2}}{a_{1}}} \right\rbrack + {\lbrack 1.0\rbrack}}\text{~etc.}
diff --git a/test/writer/tex/mfracZcomp-25.test b/test/writer/tex/mfracZcomp-25.test
--- a/test/writer/tex/mfracZcomp-25.test
+++ b/test/writer/tex/mfracZcomp-25.test
@@ -41,4 +41,4 @@
 , EText TextNormal "\160in a display."
 ]
 >>> tex
-\text{The\ same\ expression~}{\left\lbrack \frac{\left. \parallel\frac{{\sin\theta} + 1}{11}\parallel \right. - x}{\frac{x^{2}}{a_{1}}} \right\rbrack + {\lbrack 1.0\rbrack}}\text{~in\ a\ display.}
+\text{The same expression~}{\left\lbrack \frac{\left. \parallel\frac{{\sin\theta} + 1}{11}\parallel \right. - x}{\frac{x^{2}}{a_{1}}} \right\rbrack + {\lbrack 1.0\rbrack}}\text{~in a display.}
diff --git a/test/writer/tex/mfracZcomp-26.test b/test/writer/tex/mfracZcomp-26.test
--- a/test/writer/tex/mfracZcomp-26.test
+++ b/test/writer/tex/mfracZcomp-26.test
@@ -36,4 +36,4 @@
 , EText TextNormal "\160normal size at all levels in all contexts"
 ]
 >>> tex
-\text{LaTeX\ renders\ continued\ fractions~}\frac{1}{\sqrt{2} + \frac{1}{\sqrt{3} + \frac{1}{\sqrt{4} + \frac{1}{\sqrt{5} + \frac{1}{\sqrt{6} + \ldots}}}}}\text{~normal\ size\ at\ all\ levels\ in\ all\ contexts}
+\text{LaTeX renders continued fractions~}\frac{1}{\sqrt{2} + \frac{1}{\sqrt{3} + \frac{1}{\sqrt{4} + \frac{1}{\sqrt{5} + \frac{1}{\sqrt{6} + \ldots}}}}}\text{~normal size at all levels in all contexts}
diff --git a/test/writer/tex/mfracZcomp-28.test b/test/writer/tex/mfracZcomp-28.test
--- a/test/writer/tex/mfracZcomp-28.test
+++ b/test/writer/tex/mfracZcomp-28.test
@@ -38,4 +38,4 @@
     "\160are script size at the first level and decrease to script script size for all more nested levels."
 ]
 >>> tex
-\text{Inline\ nested\ fracs~}\frac{1^{\sqrt{6}}}{\sqrt{2} + \frac{1}{\sqrt{3} + \frac{1}{\sqrt{4} + \frac{1}{\sqrt{5} + \frac{1}{\sqrt{6} + \ldots}}}}}\text{~are\ script\ size\ at\ the\ first\ level\ and\ decrease\ to\ script\ script\ size\ for\ all\ more\ nested\ levels.}
+\text{Inline nested fracs~}\frac{1^{\sqrt{6}}}{\sqrt{2} + \frac{1}{\sqrt{3} + \frac{1}{\sqrt{4} + \frac{1}{\sqrt{5} + \frac{1}{\sqrt{6} + \ldots}}}}}\text{~are script size at the first level and decrease to script script size for all more nested levels.}
diff --git a/test/writer/tex/mfracZcomp-29.test b/test/writer/tex/mfracZcomp-29.test
--- a/test/writer/tex/mfracZcomp-29.test
+++ b/test/writer/tex/mfracZcomp-29.test
@@ -40,4 +40,4 @@
     "\160script size at second level, and script-script size at all more nested levels."
 ]
 >>> tex
-\text{Displayed\ nested\ fractions\ are\ normal\ size\ at\ the\ first\ level,~}\frac{1^{\sqrt{6}}}{\sqrt{2} + \frac{1}{\sqrt{3} + \frac{1}{\sqrt{4} + \frac{1}{\sqrt{5} + \frac{1}{\sqrt{6} + \ldots}}}}}\text{~script\ size\ at\ second\ level,\ and\ script-script\ size\ at\ all\ more\ nested\ levels.}
+\text{Displayed nested fractions are normal size at the first level,~}\frac{1^{\sqrt{6}}}{\sqrt{2} + \frac{1}{\sqrt{3} + \frac{1}{\sqrt{4} + \frac{1}{\sqrt{5} + \frac{1}{\sqrt{6} + \ldots}}}}}\text{~script size at second level, and script-script size at all more nested levels.}
diff --git a/test/writer/tex/mfracZcomp-31.test b/test/writer/tex/mfracZcomp-31.test
--- a/test/writer/tex/mfracZcomp-31.test
+++ b/test/writer/tex/mfracZcomp-31.test
@@ -51,4 +51,4 @@
 , EText TextNormal "\160with some real math in it."
 ]
 >>> tex
-\text{Here's\ a\ display~}{{F\left( {t,y} \right)} = \frac{\left( {1,\frac{\mathbb{d}y}{\mathbb{d}t}} \right)}{\left. \parallel\left( {1,\frac{\mathbb{d}y}{\mathbb{d}t}} \right)\parallel \right.}}\text{~with\ some\ real\ math\ in\ it.}
+\text{Here's a display~}{{F\left( {t,y} \right)} = \frac{\left( {1,\frac{\mathbb{d}y}{\mathbb{d}t}} \right)}{\left. \parallel\left( {1,\frac{\mathbb{d}y}{\mathbb{d}t}} \right)\parallel \right.}}\text{~with some real math in it.}
diff --git a/test/writer/tex/mfracZcomp-32.test b/test/writer/tex/mfracZcomp-32.test
--- a/test/writer/tex/mfracZcomp-32.test
+++ b/test/writer/tex/mfracZcomp-32.test
@@ -34,4 +34,4 @@
              ])))
 ]
 >>> tex
-\text{And\ this\ is\ an\ example\ where\ the\ bevelled\ attribute\ is\ set\ inside\ the\ radical~}\frac{y^{2} - t^{2}}{\sqrt{\frac{1}{\left( 1 + \left| {y^{2} - t^{2}} \right|^{2} \right)}}}
+\text{And this is an example where the bevelled attribute is set inside the radical~}\frac{y^{2} - t^{2}}{\sqrt{\frac{1}{\left( 1 + \left| {y^{2} - t^{2}} \right|^{2} \right)}}}
diff --git a/test/writer/tex/mfracZcomp-33.test b/test/writer/tex/mfracZcomp-33.test
--- a/test/writer/tex/mfracZcomp-33.test
+++ b/test/writer/tex/mfracZcomp-33.test
@@ -52,4 +52,4 @@
     ]
 ]
 >>> tex
-\text{And\ this\ shows\ a\ combination\ with\ a\ background\ image\ at\ a\ desired\ opacity~}{Z_{\alpha}(f) = \frac{1}{2i\,\cos\left( \frac{\alpha\pi}{2} \right)}{\int_{C}\frac{f(iz)( - z)^{\alpha}}{e^{2\pi z} - 1}}\mathbb{d}z}
+\text{And this shows a combination with a background image at a desired opacity~}{Z_{\alpha}(f) = \frac{1}{2i\,\cos\left( \frac{\alpha\pi}{2} \right)}{\int_{C}\frac{f(iz)( - z)^{\alpha}}{e^{2\pi z} - 1}}\mathbb{d}z}
diff --git a/test/writer/tex/mi3.test b/test/writer/tex/mi3.test
--- a/test/writer/tex/mi3.test
+++ b/test/writer/tex/mi3.test
@@ -4,4 +4,4 @@
 , EIdentifier "y"
 ]
 >>> tex
-x\overset{\text{maps\ to}}{\rightarrow}y
+x\overset{\text{maps to}}{\rightarrow}y
diff --git a/test/writer/tex/miAtoken5.test b/test/writer/tex/miAtoken5.test
--- a/test/writer/tex/miAtoken5.test
+++ b/test/writer/tex/miAtoken5.test
@@ -44,5 +44,5 @@
 \begin{matrix}
 {A + A + A + A + A + A} \\
 {\mathcal{A} + A + A + A} \\
-{\mathcal{A} + A + A + A} \\
+{\mathcal{A} + A + A + A}
 \end{matrix}
diff --git a/test/writer/tex/miSfontsize9.test b/test/writer/tex/miSfontsize9.test
--- a/test/writer/tex/miSfontsize9.test
+++ b/test/writer/tex/miSfontsize9.test
@@ -46,5 +46,5 @@
 >>> tex
 \begin{matrix}
 {A + A + {A + A + A} + A} \\
-{A + {A + A + A} + A + {A + A + A}} \\
+{A + {A + A + A} + A + {A + A + A}}
 \end{matrix}
diff --git a/test/writer/tex/miequivalents11.test b/test/writer/tex/miequivalents11.test
--- a/test/writer/tex/miequivalents11.test
+++ b/test/writer/tex/miequivalents11.test
@@ -119,5 +119,5 @@
 {{\mathbf{A}} = \mathbf{A}} \\
 {{\mathsf{A}} = \mathsf{A}} \\
 {{\mathbf{A}} = \mathbf{A}} \\
-{\mathtt{A} = \mathtt{A}} \\
+{\mathtt{A} = \mathtt{A}}
 \end{matrix}
diff --git a/test/writer/tex/mimathvariant13.test b/test/writer/tex/mimathvariant13.test
--- a/test/writer/tex/mimathvariant13.test
+++ b/test/writer/tex/mimathvariant13.test
@@ -56,5 +56,5 @@
 >>> tex
 \begin{matrix}
 a & a & \mathbf{a} & \mathit{a} & \mathbf{a} & \mathbb{a} & \mathfrak{a} & \mathcal{a} & \mathcal{a} & \mathfrak{a} & \mathsf{a} & \mathbf{a} & \mathsf{a} & \mathbf{a} & \mathtt{a} & \mathbf{ab} \\
-A & A & \mathbf{A} & \mathit{A} & \mathbf{A} & \mathbb{A} & \mathfrak{A} & \mathcal{A} & \mathcal{A} & \mathfrak{A} & \mathsf{A} & \mathbf{A} & \mathsf{A} & \mathbf{A} & \mathtt{A} & \mathbf{\alpha} \\
+A & A & \mathbf{A} & \mathit{A} & \mathbf{A} & \mathbb{A} & \mathfrak{A} & \mathcal{A} & \mathcal{A} & \mathfrak{A} & \mathsf{A} & \mathbf{A} & \mathsf{A} & \mathbf{A} & \mathtt{A} & \mathbf{\alpha}
 \end{matrix}
diff --git a/test/writer/tex/mimathvariant14.test b/test/writer/tex/mimathvariant14.test
--- a/test/writer/tex/mimathvariant14.test
+++ b/test/writer/tex/mimathvariant14.test
@@ -45,5 +45,5 @@
 {\mathfrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\mathfrak{abcdefghijklmnopqrstuvwxyz}} \\
 {\mathbb{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\mathbb{abcdefghijklmnopqrstuvwxyz}} \\
 {\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\mathcal{abcdefghijklmnopqrstuvwxyz}} \\
-{\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\mathcal{abcdefghijklmnopqrstuvwxyz}} \\
+{\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}\mathcal{abcdefghijklmnopqrstuvwxyz}}
 \end{array}
diff --git a/test/writer/tex/mlabeledtrAside2.test b/test/writer/tex/mlabeledtrAside2.test
--- a/test/writer/tex/mlabeledtrAside2.test
+++ b/test/writer/tex/mlabeledtrAside2.test
@@ -40,5 +40,5 @@
 \begin{matrix}
 \frac{a + 1}{2} & b & c & d & e \\
 x & {\frac{2}{3}y + 5} & z & d & e \\
-1 & 2 & 5 & d & e \\
+1 & 2 & 5 & d & e
 \end{matrix}
diff --git a/test/writer/tex/moAstretchy18.test b/test/writer/tex/moAstretchy18.test
--- a/test/writer/tex/moAstretchy18.test
+++ b/test/writer/tex/moAstretchy18.test
@@ -42,17 +42,17 @@
 0 \\
 0 \\
 0 \\
-0 \\
+0
 \end{pmatrix}(\begin{matrix}
 0 \\
 0 \\
 0 \\
 0 \\
-0 \\
+0
 \end{matrix})\begin{pmatrix}
 0 \\
 0 \\
 0 \\
 0 \\
-0 \\
+0
 \end{pmatrix}
diff --git a/test/writer/tex/moAsymmetric19.test b/test/writer/tex/moAsymmetric19.test
--- a/test/writer/tex/moAsymmetric19.test
+++ b/test/writer/tex/moAsymmetric19.test
@@ -28,11 +28,11 @@
 >>> tex
 x = {\begin{pmatrix}
 0 \\
-0 \\
+0
 \end{pmatrix}\begin{pmatrix}
 0 \\
-0 \\
+0
 \end{pmatrix}\begin{pmatrix}
 0 \\
-0 \\
+0
 \end{pmatrix}}
diff --git a/test/writer/tex/monospace.test b/test/writer/tex/monospace.test
--- a/test/writer/tex/monospace.test
+++ b/test/writer/tex/monospace.test
@@ -13,5 +13,5 @@
 \mathtt{\begin{array}{l}
 \text{0123456789} \\
 \text{ABCDEFGHIJKLMNOPQRSTUVWXYZ} \\
-\text{abcdefghijklmnopqrstuvwxyz} \\
+\text{abcdefghijklmnopqrstuvwxyz}
 \end{array}}
diff --git a/test/writer/tex/moore_determinant.test b/test/writer/tex/moore_determinant.test
--- a/test/writer/tex/moore_determinant.test
+++ b/test/writer/tex/moore_determinant.test
@@ -55,5 +55,5 @@
 \alpha_{1} & \alpha_{1}^{q} & \cdots & \alpha_{1}^{q^{n - 1}} \\
 \alpha_{2} & \alpha_{2}^{q} & \cdots & \alpha_{2}^{q^{n - 1}} \\
 \vdots & \vdots & \ddots & \vdots \\
-\alpha_{m} & \alpha_{m}^{q} & \cdots & \alpha_{m}^{q^{n - 1}} \\
+\alpha_{m} & \alpha_{m}^{q} & \cdots & \alpha_{m}^{q^{n - 1}}
 \end{bmatrix}
diff --git a/test/writer/tex/msAquotes3.test b/test/writer/tex/msAquotes3.test
--- a/test/writer/tex/msAquotes3.test
+++ b/test/writer/tex/msAquotes3.test
@@ -1,4 +1,4 @@
 <<< native
 [ EText TextNormal "(St. Paul|)" ]
 >>> tex
-\text{(St.\ Paul|)}
+\text{(St. Paul|)}
diff --git a/test/writer/tex/mspace-01.test b/test/writer/tex/mspace-01.test
--- a/test/writer/tex/mspace-01.test
+++ b/test/writer/tex/mspace-01.test
@@ -4,4 +4,4 @@
 , EText TextNormal "Second line"
 ]
 >>> tex
-\text{First\ line}\text{Second\ line}
+\text{First line}\text{Second line}
diff --git a/test/writer/tex/msqrt-01.test b/test/writer/tex/msqrt-01.test
--- a/test/writer/tex/msqrt-01.test
+++ b/test/writer/tex/msqrt-01.test
@@ -13,5 +13,5 @@
 >>> tex
 \sqrt{\begin{matrix}
 \phantom{A} & \phantom{A} \\
-\phantom{A} & \phantom{A} \\
+\phantom{A} & \phantom{A}
 \end{matrix}}
diff --git a/test/writer/tex/msqrt-02.test b/test/writer/tex/msqrt-02.test
--- a/test/writer/tex/msqrt-02.test
+++ b/test/writer/tex/msqrt-02.test
@@ -15,5 +15,5 @@
 >>> tex
 \sqrt{\begin{matrix}
 \phantom{A} & \phantom{A} & \phantom{A} \\
-\phantom{A} & \phantom{A} & \phantom{A} \\
+\phantom{A} & \phantom{A} & \phantom{A}
 \end{matrix}}
diff --git a/test/writer/tex/msqrt-03.test b/test/writer/tex/msqrt-03.test
--- a/test/writer/tex/msqrt-03.test
+++ b/test/writer/tex/msqrt-03.test
@@ -27,5 +27,5 @@
 >>> tex
 \sqrt{\begin{matrix}
 \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} \\
-\phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} \\
+\phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A} & \phantom{A}
 \end{matrix}}
diff --git a/test/writer/tex/msqrt-04.test b/test/writer/tex/msqrt-04.test
--- a/test/writer/tex/msqrt-04.test
+++ b/test/writer/tex/msqrt-04.test
@@ -11,5 +11,5 @@
 \sqrt{\begin{matrix}
 \phantom{A} \\
 \phantom{A} \\
-\phantom{A} \\
+\phantom{A}
 \end{matrix}}
diff --git a/test/writer/tex/msqrt-05.test b/test/writer/tex/msqrt-05.test
--- a/test/writer/tex/msqrt-05.test
+++ b/test/writer/tex/msqrt-05.test
@@ -11,5 +11,5 @@
 \sqrt{\begin{matrix}
 \phantom{ABCD} \\
 \phantom{ABCD} \\
-\phantom{ABCD} \\
+\phantom{ABCD}
 \end{matrix}}
diff --git a/test/writer/tex/mtable-01.test b/test/writer/tex/mtable-01.test
--- a/test/writer/tex/mtable-01.test
+++ b/test/writer/tex/mtable-01.test
@@ -17,9 +17,9 @@
 \begin{matrix}
 H \\
 T \\
-U \\
+U
 \end{matrix} = \begin{matrix}
 H \\
 T \\
-U \\
+U
 \end{matrix}
diff --git a/test/writer/tex/mtable-05.test b/test/writer/tex/mtable-05.test
--- a/test/writer/tex/mtable-05.test
+++ b/test/writer/tex/mtable-05.test
@@ -17,9 +17,9 @@
 \begin{matrix}
 H & A \\
 T & I \\
-U & Y \\
+U & Y
 \end{matrix} = \begin{matrix}
 A & H \\
 I & T \\
-Y & U \\
+Y & U
 \end{matrix}
diff --git a/test/writer/tex/mtable-07.test b/test/writer/tex/mtable-07.test
--- a/test/writer/tex/mtable-07.test
+++ b/test/writer/tex/mtable-07.test
@@ -41,9 +41,9 @@
 \begin{array}{rr}
 {\phantom{\text{fail}}H} & A \\
 {\phantom{\text{fail}}T} & I \\
-{\phantom{\text{fail}}U} & Y \\
+{\phantom{\text{fail}}U} & Y
 \end{array} = \begin{array}{ll}
 A & {H\phantom{\text{fail}}} \\
 I & {T\phantom{\text{fail}}} \\
-Y & {U\phantom{\text{fail}}} \\
+Y & {U\phantom{\text{fail}}}
 \end{array}
diff --git a/test/writer/tex/mtable-08.test b/test/writer/tex/mtable-08.test
--- a/test/writer/tex/mtable-08.test
+++ b/test/writer/tex/mtable-08.test
@@ -29,9 +29,9 @@
 \begin{matrix}
 {\phantom{\text{fail}}H\phantom{\text{fail}}} \\
 T \\
-U \\
+U
 \end{matrix} = \begin{matrix}
 H \\
 T \\
-{\phantom{\text{fail}}U\phantom{\text{fail}}} \\
+{\phantom{\text{fail}}U\phantom{\text{fail}}}
 \end{matrix}
diff --git a/test/writer/tex/mtable-09.test b/test/writer/tex/mtable-09.test
--- a/test/writer/tex/mtable-09.test
+++ b/test/writer/tex/mtable-09.test
@@ -19,5 +19,5 @@
 ]
 >>> tex
 \begin{matrix}
-{\phantom{\text{fail}}\underset{\phantom{\text{fail}}}{HT}} & = & {\overset{\phantom{\text{fail}}}{TH}\phantom{\text{fail}}} \\
+{\phantom{\text{fail}}\underset{\phantom{\text{fail}}}{HT}} & = & {\overset{\phantom{\text{fail}}}{TH}\phantom{\text{fail}}}
 \end{matrix}
diff --git a/test/writer/tex/mtable-10.test b/test/writer/tex/mtable-10.test
--- a/test/writer/tex/mtable-10.test
+++ b/test/writer/tex/mtable-10.test
@@ -11,5 +11,5 @@
 ]
 >>> tex
 \begin{matrix}
-\underset{\phantom{\text{fail}}}{HT} & = & {TH} \\
+\underset{\phantom{\text{fail}}}{HT} & = & {TH}
 \end{matrix}
diff --git a/test/writer/tex/mtable-11.test b/test/writer/tex/mtable-11.test
--- a/test/writer/tex/mtable-11.test
+++ b/test/writer/tex/mtable-11.test
@@ -11,5 +11,5 @@
 ]
 >>> tex
 \begin{matrix}
-\overset{\phantom{\text{fail}}}{HT} & = & {TH} \\
+\overset{\phantom{\text{fail}}}{HT} & = & {TH}
 \end{matrix}
diff --git a/test/writer/tex/mtable-16.test b/test/writer/tex/mtable-16.test
--- a/test/writer/tex/mtable-16.test
+++ b/test/writer/tex/mtable-16.test
@@ -16,5 +16,5 @@
 ]
 >>> tex
 \begin{matrix}
-{\phantom{\text{F}}{HT}\phantom{\text{F}}} & = & {TH} \\
+{\phantom{\text{F}}{HT}\phantom{\text{F}}} & = & {TH}
 \end{matrix}
diff --git a/test/writer/tex/mtable2.test b/test/writer/tex/mtable2.test
--- a/test/writer/tex/mtable2.test
+++ b/test/writer/tex/mtable2.test
@@ -225,5 +225,5 @@
 1 & {x + y} & {x^{2} + {2yx} + y^{2}} \\
 {x + y} & {x^{2} + {2yx} + y^{2}} & {x^{3} + {3yx^{2}} + {3y^{2}x} + y^{3}} \\
 {x^{2} + {2yx} + y^{2}} & {x^{3} + {3yx^{2}} + {3y^{2}x} + y^{3}} & {x^{4} + {4yx^{3}} + {6y^{2}x^{2}} + {4y^{3}x} + y^{4}} \\
-{x^{3} + {3yx^{2}} + {3y^{2}x} + y^{3}} & {x^{4} + {4yx^{3}} + {6y^{2}x^{2}} + {4y^{3}x} + y^{4}} & {x^{5} + {5yx^{4}} + {10y^{2}x^{3}} + {10y^{3}x^{2}} + {5y^{4}x} + y^{5}} \\
+{x^{3} + {3yx^{2}} + {3y^{2}x} + y^{3}} & {x^{4} + {4yx^{3}} + {6y^{2}x^{2}} + {4y^{3}x} + y^{4}} & {x^{5} + {5yx^{4}} + {10y^{2}x^{3}} + {10y^{3}x^{2}} + {5y^{4}x} + y^{5}}
 \end{array}
diff --git a/test/writer/tex/mtableAalign2.test b/test/writer/tex/mtableAalign2.test
--- a/test/writer/tex/mtableAalign2.test
+++ b/test/writer/tex/mtableAalign2.test
@@ -72,5 +72,5 @@
 \text{Top} & 3 & \frac{a + 1}{2} & \overset{\frac{a + 1}{2}}{y} \\
 \text{Bottom} & 3 & \frac{a + 1}{2} & \overset{\frac{a + 1}{2}}{y} \\
 \text{Center} & 3 & \frac{a + 1}{2} & \overset{\frac{a + 1}{2}}{y} \\
-\text{Baseline} & 3 & \frac{a + 1}{2} & \overset{\frac{a + 1}{2}}{y} \\
+\text{Baseline} & 3 & \frac{a + 1}{2} & \overset{\frac{a + 1}{2}}{y}
 \end{matrix}
diff --git a/test/writer/tex/mtableAalign3.test b/test/writer/tex/mtableAalign3.test
--- a/test/writer/tex/mtableAalign3.test
+++ b/test/writer/tex/mtableAalign3.test
@@ -33,5 +33,5 @@
 \begin{matrix}
 \frac{a + 1}{2} & b & c \\
 x & {\frac{2}{3}y + 5} & z \\
-1 & 2 & \frac{a + 5}{3} \\
+1 & 2 & \frac{a + 5}{3}
 \end{matrix}
diff --git a/test/writer/tex/mtableAgroupalign.test b/test/writer/tex/mtableAgroupalign.test
--- a/test/writer/tex/mtableAgroupalign.test
+++ b/test/writer/tex/mtableAgroupalign.test
@@ -2,5 +2,5 @@
 [ EArray [ AlignCenter ] [ [ [ EIdentifier "x" ] ] ] ]
 >>> tex
 \begin{matrix}
-x \\
+x
 \end{matrix}
diff --git a/test/writer/tex/mtableAlines2.test b/test/writer/tex/mtableAlines2.test
--- a/test/writer/tex/mtableAlines2.test
+++ b/test/writer/tex/mtableAlines2.test
@@ -16,5 +16,5 @@
 \begin{matrix}
 a & b & c \\
 x & y & z \\
-1 & 2 & 3 \\
+1 & 2 & 3
 \end{matrix}
diff --git a/test/writer/tex/mtableAspacing4.test b/test/writer/tex/mtableAspacing4.test
--- a/test/writer/tex/mtableAspacing4.test
+++ b/test/writer/tex/mtableAspacing4.test
@@ -26,5 +26,5 @@
 \begin{matrix}
 \frac{a + 1}{2} & b & c \\
 x & {\frac{2}{3}y + 5} & z \\
-1 & 2 & 5 \\
+1 & 2 & 5
 \end{matrix}
diff --git a/test/writer/tex/mtableAwidth2.test b/test/writer/tex/mtableAwidth2.test
--- a/test/writer/tex/mtableAwidth2.test
+++ b/test/writer/tex/mtableAwidth2.test
@@ -8,5 +8,5 @@
 >>> tex
 \begin{matrix}
 a & b \\
-x & y \\
+x & y
 \end{matrix}
diff --git a/test/writer/tex/mtableAwidth3.test b/test/writer/tex/mtableAwidth3.test
--- a/test/writer/tex/mtableAwidth3.test
+++ b/test/writer/tex/mtableAwidth3.test
@@ -8,5 +8,5 @@
 >>> tex
 \begin{matrix}
 1 & 2 \\
-x & y \\
+x & y
 \end{matrix}
diff --git a/test/writer/tex/mtableBgap1.test b/test/writer/tex/mtableBgap1.test
--- a/test/writer/tex/mtableBgap1.test
+++ b/test/writer/tex/mtableBgap1.test
@@ -14,5 +14,5 @@
 \begin{matrix}
 B & C & & \\
  & & & \\
-1 & 2 & 3 & 4 \\
+1 & 2 & 3 & 4
 \end{matrix}
diff --git a/test/writer/tex/mtableBsize2.test b/test/writer/tex/mtableBsize2.test
--- a/test/writer/tex/mtableBsize2.test
+++ b/test/writer/tex/mtableBsize2.test
@@ -19,5 +19,5 @@
 \begin{matrix}
 H & \rightarrow & G \\
  \downarrow & \mspace{54mu} & \downarrow \\
-K & \rightarrow & L \\
+K & \rightarrow & L
 \end{matrix}
diff --git a/test/writer/tex/mtableBspan3.test b/test/writer/tex/mtableBspan3.test
--- a/test/writer/tex/mtableBspan3.test
+++ b/test/writer/tex/mtableBspan3.test
@@ -31,15 +31,15 @@
 \begin{matrix}
 2 \\
 2 \\
-2 \\
+2
 \end{matrix} & 3 & 0 \\
-0 & 3 & \\
+0 & 3 & 
 \end{matrix}\begin{matrix}
 3 & 0 & 0 \\
 \begin{matrix}
 2 \\
 2 \\
-2 \\
+2
 \end{matrix} & 3 & 0 \\
-0 & 3 & \\
+0 & 3 & 
 \end{matrix}
diff --git a/test/writer/tex/mtext2.test b/test/writer/tex/mtext2.test
--- a/test/writer/tex/mtext2.test
+++ b/test/writer/tex/mtext2.test
@@ -8,4 +8,4 @@
 , EText TextNormal "/* a comment */"
 ]
 >>> tex
-\text{Theorem\ 1:},\,,\text{ \,},\text{/*\ a\ comment\ */}
+\text{Theorem 1:},\,,\text{ \,},\text{/* a comment */}
diff --git a/test/writer/tex/mtextAtoken3.test b/test/writer/tex/mtextAtoken3.test
--- a/test/writer/tex/mtextAtoken3.test
+++ b/test/writer/tex/mtextAtoken3.test
@@ -6,4 +6,4 @@
 , EText TextNormal "MathML"
 ]
 >>> tex
-\text{Theorem\ 1:}\text{Now\ is}\text{the\ time}\text{for}\text{MathML}
+\text{Theorem 1:}\text{Now is}\text{the time}\text{for}\text{MathML}
diff --git a/test/writer/tex/mtextStoken6.test b/test/writer/tex/mtextStoken6.test
--- a/test/writer/tex/mtextStoken6.test
+++ b/test/writer/tex/mtextStoken6.test
@@ -1,4 +1,4 @@
 <<< native
 [ EText TextNormal "Theorem 1:" ]
 >>> tex
-\text{Theorem\ 1:}
+\text{Theorem 1:}
diff --git a/test/writer/tex/mtextspaces7.test b/test/writer/tex/mtextspaces7.test
--- a/test/writer/tex/mtextspaces7.test
+++ b/test/writer/tex/mtextspaces7.test
@@ -1,4 +1,4 @@
 <<< native
 [ EText TextNormal "This is \8201some \8287text with spaces." ]
 >>> tex
-\text{This\ is\  some\  text\ with\ spaces.}
+\text{This is  some  text with spaces.}
diff --git a/test/writer/tex/n.test b/test/writer/tex/n.test
--- a/test/writer/tex/n.test
+++ b/test/writer/tex/n.test
@@ -608,5 +608,5 @@
 \text{nwarr} & \nwarrow \\
 \text{nwArr} & ⇖ \\
 \text{nwarrow} & \nwarrow \\
-\text{nwnear} & ⤧ \\
+\text{nwnear} & ⤧ 
 \end{matrix}
diff --git a/test/writer/tex/nestTable1.test b/test/writer/tex/nestTable1.test
--- a/test/writer/tex/nestTable1.test
+++ b/test/writer/tex/nestTable1.test
@@ -6,6 +6,6 @@
 >>> tex
 \begin{matrix}
 \begin{matrix}
-x \\
-\end{matrix} \\
+x
+\end{matrix}
 \end{matrix}
diff --git a/test/writer/tex/nestedAwidth1.test b/test/writer/tex/nestedAwidth1.test
--- a/test/writer/tex/nestedAwidth1.test
+++ b/test/writer/tex/nestedAwidth1.test
@@ -28,14 +28,14 @@
 \begin{matrix}
 \begin{matrix}
 1 & 2 \\
-x & y \\
+x & y
 \end{matrix} \\
 \begin{matrix}
 1 & 2 \\
-x & y \\
+x & y
 \end{matrix} \\
 \begin{matrix}
 1 & 2 \\
-x & y \\
-\end{matrix} \\
+x & y
+\end{matrix}
 \end{matrix}
diff --git a/test/writer/tex/o.test b/test/writer/tex/o.test
--- a/test/writer/tex/o.test
+++ b/test/writer/tex/o.test
@@ -158,5 +158,5 @@
 \text{OverBar} & ‾ \\
 \text{OverBrace} & \overbrace{} \\
 \text{OverBracket} & ⎴ \\
-\text{OverParenthesis} & ⏜ \\
+\text{OverParenthesis} & ⏜
 \end{matrix}
diff --git a/test/writer/tex/operatorname.test b/test/writer/tex/operatorname.test
--- a/test/writer/tex/operatorname.test
+++ b/test/writer/tex/operatorname.test
@@ -72,5 +72,5 @@
 \operatorname{div}_{x}u\operatorname{div}^{x}u\operatorname{div}_{x}^{y}u\operatorname{div}_{x}^{y}u & \text{operatorname} \\
 \operatorname*{\star-lim'sup}_{x \rightarrow 0}u\operatorname*{\star-lim'sup}^{w}u\operatorname*{\star-lim'sup}_{x \rightarrow 0}^{w}u\operatorname*{\star-lim'sup}_{x \rightarrow 0}^{w}u & \text{operatorname*} \\
 \operatorname{\star-lim'sup}_{x \rightarrow 0}u\operatorname{\star-lim'sup}^{w}u\operatorname{\star-lim'sup}_{x \rightarrow 0}^{w}u\operatorname{\star-lim'sup}_{x \rightarrow 0}^{w}u & \text{operatorname*:nolimits} \\
-\operatorname{curl}_{x}v\operatorname*{argmax}_{K}u & \text{DeclareMathOperator} \\
+\operatorname{curl}_{x}v\operatorname*{argmax}_{K}u & \text{DeclareMathOperator}
 \end{cases}
diff --git a/test/writer/tex/p.test b/test/writer/tex/p.test
--- a/test/writer/tex/p.test
+++ b/test/writer/tex/p.test
@@ -182,5 +182,5 @@
 \text{Pscr} & \mathcal{P} \\
 \text{psi} & \psi \\
 \text{Psi} & \Psi \\
-\text{puncsp} &   \\
+\text{puncsp} &  
 \end{matrix}
diff --git a/test/writer/tex/q.test b/test/writer/tex/q.test
--- a/test/writer/tex/q.test
+++ b/test/writer/tex/q.test
@@ -32,5 +32,5 @@
 \text{quatint} & ⨖ \\
 \text{quest} & ? \\
 \text{questeq} & ≟ \\
-\text{quot} & " \\
+\text{quot} & "
 \end{matrix}
diff --git a/test/writer/tex/r.test b/test/writer/tex/r.test
--- a/test/writer/tex/r.test
+++ b/test/writer/tex/r.test
@@ -358,5 +358,5 @@
 \text{rtriltri} & ⧎ \\
 \text{RuleDelayed} & ⧴ \\
 \text{ruluhar} & ⥨ \\
-\text{rx} & ℞ \\
+\text{rx} & ℞
 \end{matrix}
diff --git a/test/writer/tex/rec-mlabeledtr.test b/test/writer/tex/rec-mlabeledtr.test
--- a/test/writer/tex/rec-mlabeledtr.test
+++ b/test/writer/tex/rec-mlabeledtr.test
@@ -16,5 +16,5 @@
 ]
 >>> tex
 \begin{matrix}
-{E = {mc^{2}}} \\
+{E = {mc^{2}}}
 \end{matrix}
diff --git a/test/writer/tex/rec-mtable1.test b/test/writer/tex/rec-mtable1.test
--- a/test/writer/tex/rec-mtable1.test
+++ b/test/writer/tex/rec-mtable1.test
@@ -15,5 +15,5 @@
 \begin{pmatrix}
 1 & 0 & 0 \\
 0 & 1 & 0 \\
-0 & 0 & 1 \\
+0 & 0 & 1
 \end{pmatrix}
diff --git a/test/writer/tex/s.test b/test/writer/tex/s.test
--- a/test/writer/tex/s.test
+++ b/test/writer/tex/s.test
@@ -418,5 +418,5 @@
 \text{swArr} & ⇙ \\
 \text{swarrow} & \swarrow \\
 \text{swnwar} & ⤪ \\
-\text{szlig} & ß \\
+\text{szlig} & ß
 \end{matrix}
diff --git a/test/writer/tex/sans-serif-bold-italic.test b/test/writer/tex/sans-serif-bold-italic.test
--- a/test/writer/tex/sans-serif-bold-italic.test
+++ b/test/writer/tex/sans-serif-bold-italic.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/sans-serif-bold.test b/test/writer/tex/sans-serif-bold.test
--- a/test/writer/tex/sans-serif-bold.test
+++ b/test/writer/tex/sans-serif-bold.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/sans-serif-italic.test b/test/writer/tex/sans-serif-italic.test
--- a/test/writer/tex/sans-serif-italic.test
+++ b/test/writer/tex/sans-serif-italic.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/sans-serif.test b/test/writer/tex/sans-serif.test
--- a/test/writer/tex/sans-serif.test
+++ b/test/writer/tex/sans-serif.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/script-bold.test b/test/writer/tex/script-bold.test
--- a/test/writer/tex/script-bold.test
+++ b/test/writer/tex/script-bold.test
@@ -11,5 +11,5 @@
 >>> tex
 \mathcal{\begin{array}{l}
 \text{ABCDEFGHIJKLMNOPQRSTUVWXYZ} \\
-\text{abcdefghijklmnopqrstuvwxyz} \\
+\text{abcdefghijklmnopqrstuvwxyz}
 \end{array}}
diff --git a/test/writer/tex/script.test b/test/writer/tex/script.test
--- a/test/writer/tex/script.test
+++ b/test/writer/tex/script.test
@@ -11,5 +11,5 @@
 >>> tex
 \mathcal{\begin{array}{l}
 \text{ABCDEFGHIJKLMNOPQRSTUVWXYZ} \\
-\text{abcdefghijklmnopqrstuvwxyz} \\
+\text{abcdefghijklmnopqrstuvwxyz}
 \end{array}}
diff --git a/test/writer/tex/serif-bold-italic.test b/test/writer/tex/serif-bold-italic.test
--- a/test/writer/tex/serif-bold-italic.test
+++ b/test/writer/tex/serif-bold-italic.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/serif-bold.test b/test/writer/tex/serif-bold.test
--- a/test/writer/tex/serif-bold.test
+++ b/test/writer/tex/serif-bold.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/serif-italic.test b/test/writer/tex/serif-italic.test
--- a/test/writer/tex/serif-italic.test
+++ b/test/writer/tex/serif-italic.test
@@ -35,5 +35,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}}
diff --git a/test/writer/tex/serif.test b/test/writer/tex/serif.test
--- a/test/writer/tex/serif.test
+++ b/test/writer/tex/serif.test
@@ -32,5 +32,5 @@
 \text{ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡϴΣΤΥΦΧΨΩ∇} \\
 \text{αβγδεζηθικλμνξοπρςστυφχψω∂} \\
 \text{ϵϑϰϕϱϖϜϝ} \\
-\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅} \\
+\text{±·×÷‘’“”•−∓∕∗∙≠≤≥⋅}
 \end{array}
diff --git a/test/writer/tex/simplePres.test b/test/writer/tex/simplePres.test
--- a/test/writer/tex/simplePres.test
+++ b/test/writer/tex/simplePres.test
@@ -35,4 +35,4 @@
 , EText TextNormal "#This is my string!'"
 ]
 >>> tex
-\left\{ {\frac{1}{78},{\sin x}.y} \right) \times {\mathfrak{a}}^{2x} + 2_{j}x + \frac{45}{\frac{1}{78}}*x_{2}^{3} = \sqrt[3]{\frac{1}{23 + \beta}}\text{\#This\ is\ my\ string!'}
+\left\{ {\frac{1}{78},{\sin x}.y} \right) \times {\mathfrak{a}}^{2x} + 2_{j}x + \frac{45}{\frac{1}{78}}*x_{2}^{3} = \sqrt[3]{\frac{1}{23 + \beta}}\text{\#This is my string!'}
diff --git a/test/writer/tex/sphere_volume.test b/test/writer/tex/sphere_volume.test
--- a/test/writer/tex/sphere_volume.test
+++ b/test/writer/tex/sphere_volume.test
@@ -131,5 +131,5 @@
  & = \int_{0}^{2\pi}\!\mathrm{d}\phi\,\int_{0}^{\pi}\!\sin\theta\,\mathrm{d}\theta\,\int_{0}^{R}\!\rho^{2}\mathrm{d}\rho \\
  & = \phi\Big|_{0}^{2\pi}\ \left( -\cos\theta \right)\Big|_{0}^{\pi}\ \tfrac{1}{3}\rho^{3}\Big|_{0}^{R} \\
  & = 2\pi \times 2 \times \tfrac{1}{3}R^{3} \\
- & = \tfrac{4}{3}\pi R^{3} \\
+ & = \tfrac{4}{3}\pi R^{3}
 \end{aligned}
diff --git a/test/writer/tex/stretchHoriz1.test b/test/writer/tex/stretchHoriz1.test
--- a/test/writer/tex/stretchHoriz1.test
+++ b/test/writer/tex/stretchHoriz1.test
@@ -41,9 +41,9 @@
 ]
 >>> tex
 \begin{matrix}
- & \text{Stetching\ in\ base} & \text{Stretching\ in\ script} \\
-\text{no\ mrows} & \overset{\text{maps\ to}}{\rightarrow} & \overset{\rightarrow}{\text{maps\ to}} \\
-\text{all\ in\ row} & \overset{\text{maps\ to}}{\rightarrow} & \overset{\rightarrow}{\text{maps\ to}} \\
-\text{op\ in\ row} & \overset{\text{maps\ to}}{\rightarrow} & \overset{\rightarrow}{\text{maps\ to}} \\
-\text{text\ in\ row} & \overset{\text{maps\ to}}{\rightarrow} & \overset{\rightarrow}{\text{maps\ to}} \\
+ & \text{Stetching in base} & \text{Stretching in script} \\
+\text{no mrows} & \overset{\text{maps to}}{\rightarrow} & \overset{\rightarrow}{\text{maps to}} \\
+\text{all in row} & \overset{\text{maps to}}{\rightarrow} & \overset{\rightarrow}{\text{maps to}} \\
+\text{op in row} & \overset{\text{maps to}}{\rightarrow} & \overset{\rightarrow}{\text{maps to}} \\
+\text{text in row} & \overset{\text{maps to}}{\rightarrow} & \overset{\rightarrow}{\text{maps to}}
 \end{matrix}
diff --git a/test/writer/tex/stretchHoriz3.test b/test/writer/tex/stretchHoriz3.test
--- a/test/writer/tex/stretchHoriz3.test
+++ b/test/writer/tex/stretchHoriz3.test
@@ -7,4 +7,4 @@
 , EIdentifier "H"
 ]
 >>> tex
-H\overset{\text{This\ is\ a\ long\ stretched\ arrow}}{\rightarrow}H
+H\overset{\text{This is a long stretched arrow}}{\rightarrow}H
diff --git a/test/writer/tex/stretchTable1.test b/test/writer/tex/stretchTable1.test
--- a/test/writer/tex/stretchTable1.test
+++ b/test/writer/tex/stretchTable1.test
@@ -25,5 +25,5 @@
 \begin{matrix}
 1 & \rightarrow & 2 \\
  \downarrow & {x + \frac{2}{y^{3}}} & \downarrow \\
-3 & \rightarrow & 4 \\
+3 & \rightarrow & 4
 \end{matrix}
diff --git a/test/writer/tex/stretchTable2.test b/test/writer/tex/stretchTable2.test
--- a/test/writer/tex/stretchTable2.test
+++ b/test/writer/tex/stretchTable2.test
@@ -8,5 +8,5 @@
 >>> tex
 \begin{matrix}
 \leftarrow & 1 \\
-\text{a\ long\ cell} & 1 \\
+\text{a long cell} & 1
 \end{matrix}
diff --git a/test/writer/tex/stretchVert1.test b/test/writer/tex/stretchVert1.test
--- a/test/writer/tex/stretchVert1.test
+++ b/test/writer/tex/stretchVert1.test
@@ -26,5 +26,5 @@
 >>> tex
 \begin{matrix}
 {x + \left( \frac{2}{3} \right)} \\
-\left. x + \overset{-}{(}\frac{2}{3} \right) \\
+\left. x + \overset{-}{(}\frac{2}{3} \right)
 \end{matrix}
diff --git a/test/writer/tex/t.test b/test/writer/tex/t.test
--- a/test/writer/tex/t.test
+++ b/test/writer/tex/t.test
@@ -168,5 +168,5 @@
 \text{Tstrok} & Ŧ \\
 \text{twixt} & \between \\
 \text{twoheadleftarrow} & \twoheadleftarrow \\
-\text{twoheadrightarrow} & \twoheadrightarrow \\
+\text{twoheadrightarrow} & \twoheadrightarrow
 \end{matrix}
diff --git a/test/writer/tex/text.test b/test/writer/tex/text.test
--- a/test/writer/tex/text.test
+++ b/test/writer/tex/text.test
@@ -5,4 +5,4 @@
     "\8230\8211\8220double quotes\8221\8212\8216single quotes\8217"
 ]
 >>> tex
-\text{(Łukasiewicz,\ Gödel,\ and\ Gödel)}\textit{…–“double\ quotes”—‘single\ quotes’}
+\text{(Łukasiewicz, Gödel, and Gödel)}\textit{…–“double quotes”—‘single quotes’}
diff --git a/test/writer/tex/u.test b/test/writer/tex/u.test
--- a/test/writer/tex/u.test
+++ b/test/writer/tex/u.test
@@ -186,5 +186,5 @@
 \text{uuarr} & \upuparrows \\
 \text{uuml} & ü \\
 \text{Uuml} & Ü \\
-\text{uwangle} & ⦧ \\
+\text{uwangle} & ⦧
 \end{matrix}
diff --git a/test/writer/tex/v.test b/test/writer/tex/v.test
--- a/test/writer/tex/v.test
+++ b/test/writer/tex/v.test
@@ -148,5 +148,5 @@
 \text{vsupne} & \operatorname{\supsetneq} \\
 \text{vsupnE} & \operatorname{\supsetneqq} \\
 \text{Vvdash} & \Vvdash \\
-\text{vzigzag} & ⦚ \\
+\text{vzigzag} & ⦚
 \end{matrix}
diff --git a/test/writer/tex/w.test b/test/writer/tex/w.test
--- a/test/writer/tex/w.test
+++ b/test/writer/tex/w.test
@@ -36,5 +36,5 @@
 \text{wr} & \wr \\
 \text{wreath} & \wr \\
 \text{wscr} & \mathcal{w} \\
-\text{Wscr} & \mathcal{W} \\
+\text{Wscr} & \mathcal{W}
 \end{matrix}
diff --git a/test/writer/tex/x.test b/test/writer/tex/x.test
--- a/test/writer/tex/x.test
+++ b/test/writer/tex/x.test
@@ -60,5 +60,5 @@
 \text{xuplus} & \biguplus \\
 \text{xutri} & \bigtriangleup \\
 \text{xvee} & \bigvee \\
-\text{xwedge} & \bigwedge \\
+\text{xwedge} & \bigwedge
 \end{matrix}
diff --git a/test/writer/tex/y.test b/test/writer/tex/y.test
--- a/test/writer/tex/y.test
+++ b/test/writer/tex/y.test
@@ -46,5 +46,5 @@
 \text{yucy} & ю \\
 \text{YUcy} & Ю \\
 \text{yuml} & ÿ \\
-\text{Yuml} & Ÿ \\
+\text{Yuml} & Ÿ
 \end{matrix}
diff --git a/test/writer/tex/z.test b/test/writer/tex/z.test
--- a/test/writer/tex/z.test
+++ b/test/writer/tex/z.test
@@ -46,5 +46,5 @@
 \text{zopf} & \mathbb{z} \\
 \text{Zopf} & \mathbb{Z} \\
 \text{zscr} & \mathcal{z} \\
-\text{Zscr} & \mathcal{Z} \\
+\text{Zscr} & \mathcal{Z}
 \end{matrix}
diff --git a/test/writer/typst/05.test b/test/writer/typst/05.test
--- a/test/writer/typst/05.test
+++ b/test/writer/typst/05.test
@@ -28,4 +28,4 @@
 , EIdentifier "y"
 ]
 >>> typst
-integral_a^x #h(-1em) #h(-1em) #h(-1em) integral_a^space f lr((y)) thin d y thin d space eq integral_a^x f lr((y)) lr((x minus y)) thin d y
+integral_a^x #h(-1em) #h(-1em) #h(-1em) integral_a^s f lr((y)) thin d y thin d s eq integral_a^x f lr((y)) lr((x minus y)) thin d y
diff --git a/test/writer/typst/17.test b/test/writer/typst/17.test
--- a/test/writer/typst/17.test
+++ b/test/writer/typst/17.test
@@ -8,4 +8,4 @@
 , EIdentifier "x"
 ]
 >>> typst
-x ast 4 eq 4 ast x
+x ast.basic 4 eq 4 ast.basic x
diff --git a/test/writer/typst/20.test b/test/writer/typst/20.test
--- a/test/writer/typst/20.test
+++ b/test/writer/typst/20.test
@@ -116,4 +116,4 @@
 , EStyled TextDoubleStruck [ ENumber "0" ]
 ]
 >>> typst
-cal(A) cal(B) cal(C) cal(D) cal(E) cal(F) cal(G) cal(H) cal(I) cal(J) cal(K) cal(L) cal(M) cal(N) cal(O) cal(P) cal(Q) cal(R) cal(S) cal(T) cal(U) cal(V) cal(W) cal(X) cal(Y) cal(Z) cal(a) cal(b) cal(c) cal(d) cal(e) cal(f) cal(g) cal(h) cal(i) cal(j) cal(k) cal(l) cal(m) cal(n) cal(o) cal(p) cal(q) cal(r) cal(space) cal(t) cal(u) cal(v) cal(w) cal(x) cal(y) cal(z) bb(A) bb(B) bb(C) bb(D) bb(E) bb(F) bb(G) bb(H) bb(I) bb(J) bb(K) bb(L) bb(M) bb(N) bb(O) bb(P) bb(Q) bb(R) bb(S) bb(T) bb(U) bb(V) bb(W) bb(X) bb(Y) bb(Z) bb(a) bb(b) bb(c) bb(d) bb(e) bb(f) bb(g) bb(h) bb(i) bb(j) bb(k) bb(l) bb(m) bb(n) bb(o) bb(p) bb(q) bb(r) bb(space) bb(t) bb(u) bb(v) bb(w) bb(x) bb(y) bb(z) bb(0) bb(1) bb(2) bb(3) bb(4) bb(5) bb(6) bb(7) bb(8) bb(9) bb(0)
+cal(A) cal(B) cal(C) cal(D) cal(E) cal(F) cal(G) cal(H) cal(I) cal(J) cal(K) cal(L) cal(M) cal(N) cal(O) cal(P) cal(Q) cal(R) cal(S) cal(T) cal(U) cal(V) cal(W) cal(X) cal(Y) cal(Z) cal(a) cal(b) cal(c) cal(d) cal(e) cal(f) cal(g) cal(h) cal(i) cal(j) cal(k) cal(l) cal(m) cal(n) cal(o) cal(p) cal(q) cal(r) cal(s) cal(t) cal(u) cal(v) cal(w) cal(x) cal(y) cal(z) bb(A) bb(B) bb(C) bb(D) bb(E) bb(F) bb(G) bb(H) bb(I) bb(J) bb(K) bb(L) bb(M) bb(N) bb(O) bb(P) bb(Q) bb(R) bb(S) bb(T) bb(U) bb(V) bb(W) bb(X) bb(Y) bb(Z) bb(a) bb(b) bb(c) bb(d) bb(e) bb(f) bb(g) bb(h) bb(i) bb(j) bb(k) bb(l) bb(m) bb(n) bb(o) bb(p) bb(q) bb(r) bb(s) bb(t) bb(u) bb(v) bb(w) bb(x) bb(y) bb(z) bb(0) bb(1) bb(2) bb(3) bb(4) bb(5) bb(6) bb(7) bb(8) bb(9) bb(0)
diff --git a/test/writer/typst/23.test b/test/writer/typst/23.test
--- a/test/writer/typst/23.test
+++ b/test/writer/typst/23.test
@@ -1,4 +1,4 @@
 <<< native
 [ ENumber "1" , ESymbol Ord "." ]
 >>> typst
-1 dot
+1 dot.basic
diff --git a/test/writer/typst/complex1.test b/test/writer/typst/complex1.test
--- a/test/writer/typst/complex1.test
+++ b/test/writer/typst/complex1.test
@@ -616,7 +616,7 @@
 upright("Einstein Field Equations") & R_(mu nu)^() hyph.minus 1 / 2 thin g_(mu nu)^() thin R eq frac(8 pi G, c_()^4) thin T_(mu nu)^()\
 upright("Ramanujan Identity") & frac(1, paren.l sqrt(phi sqrt(5)) hyph.minus phi paren.r e_()^(25 / pi)) eq 1 plus frac(e_()^(hyph.minus 2 pi), 1 plus frac(e_()^(hyph.minus 4 pi), 1 plus frac(e_()^(hyph.minus 6 pi), 1 plus frac(e_()^(hyph.minus 8 pi), 1 plus dots.h))))\
 upright("Another Ramanujan identity") & sum_(k eq 1)^oo 1 / 2_()^(⌊ k dot.c zws phi ⌋) eq frac(1, 2_()^0 plus frac(1, 2_()^1 plus dots.h.c))\
-upright("Rogers-Ramanujan Identity") & 1 plus sum_(k eq 1)^oo frac(q_()^(k_()^2 plus k), paren.l 1 hyph.minus q paren.r paren.l 1 hyph.minus q_()^2 paren.r dots.h.c paren.l 1 hyph.minus q_()^k paren.r) eq product_(j eq 0)^oo frac(1, paren.l 1 hyph.minus q_()^(5 j plus 2) paren.r paren.l 1 hyph.minus q_()^(5 j plus 3) paren.r) comma upright("  ") upright("  ") f o r med bar.v q bar.v lt 1 dot\
+upright("Rogers-Ramanujan Identity") & 1 plus sum_(k eq 1)^oo frac(q_()^(k_()^2 plus k), paren.l 1 hyph.minus q paren.r paren.l 1 hyph.minus q_()^2 paren.r dots.h.c paren.l 1 hyph.minus q_()^k paren.r) eq product_(j eq 0)^oo frac(1, paren.l 1 hyph.minus q_()^(5 j plus 2) paren.r paren.l 1 hyph.minus q_()^(5 j plus 3) paren.r) comma upright("  ") upright("  ") f o r med bar.v q bar.v lt 1 dot.basic\
 upright("Commutative Diagram") & H & arrow.l & K\
 arrow.b & zws & arrow.t\
 H & arrow.r & K
diff --git a/test/writer/typst/complex_number.test b/test/writer/typst/complex_number.test
--- a/test/writer/typst/complex_number.test
+++ b/test/writer/typst/complex_number.test
@@ -24,4 +24,4 @@
     (EText TextNormal "complex number")
 ]
 >>> typst
-c eq overbrace(a_brace.b_(upright("real")) plus b upright(i)_brace.b_(upright("imaginary")), upright("complex number"))
+c eq overbrace(underbrace(a, upright("real")) plus underbrace(b upright(i), upright("imaginary")), upright("complex number"))
diff --git a/test/writer/typst/deMorgans_law.test b/test/writer/typst/deMorgans_law.test
--- a/test/writer/typst/deMorgans_law.test
+++ b/test/writer/typst/deMorgans_law.test
@@ -36,4 +36,4 @@
     (ESymbol TOver "\175")
 ]
 >>> typst
-not lr((p and q)) arrow.l.r.double lr((not p)) or lr((not q)) union.big_(i eq 1)^n A_i^macron eq sect.big_(i eq 1)^n A_i^macron
+not lr((p and q)) arrow.l.r.double lr((not p)) or lr((not q)) overline(union.big_(i eq 1)^n A_i) eq sect.big_(i eq 1)^n overline(A_i)
diff --git a/test/writer/typst/primes2.test b/test/writer/typst/primes2.test
--- a/test/writer/typst/primes2.test
+++ b/test/writer/typst/primes2.test
@@ -27,4 +27,4 @@
 , ESuper (EIdentifier "H") (ESymbol Accent "\8279")
 ]
 >>> typst
-H^quote.double H^quote.single H^ast H^grave H^ª H^degree H^(²) H^(³) H^acute H^(¹) H^º H^quote.l.single H^quote.r.single H^quote.low.single H^quote.high.single H^quote.l.double H^quote.r.double H^quote.low.double H^quote.high.double H^prime H^prime.double H^prime.triple H^prime.rev H^prime.double.rev H^prime.triple.rev H^prime.quad
+H^quote.double H^quote.single H^ast.basic H^grave H^ª H^degree H^(²) H^(³) H^acute H^(¹) H^º H^quote.l.single H^quote.r.single H^quote.low.single H^quote.high.single H^quote.l.double H^quote.r.double H^quote.low.double H^quote.high.double H^prime H^prime.double H^prime.triple H^prime.rev H^prime.double.rev H^prime.triple.rev H^prime.quad
diff --git a/test/writer/typst/simple_sum_formula.test b/test/writer/typst/simple_sum_formula.test
--- a/test/writer/typst/simple_sum_formula.test
+++ b/test/writer/typst/simple_sum_formula.test
@@ -12,4 +12,4 @@
     (ENumber "2")
 ]
 >>> typst
-sum_(i eq 1)^100 x eq frac(100 ast 101, 2)
+sum_(i eq 1)^100 x eq frac(100 ast.basic 101, 2)
diff --git a/test/writer/typst/subsup.test b/test/writer/typst/subsup.test
--- a/test/writer/typst/subsup.test
+++ b/test/writer/typst/subsup.test
@@ -65,4 +65,4 @@
 , ESubsup (ESpace (1 % 1)) (EIdentifier "x") (ENumber "3")
 ]
 >>> typst
-x_b^a quad x_b^a quad min_A quad max_B quad det_C quad Pr_A quad gcd_A quad u^(̇)^2 quad u^macron_epsilon quad underline(u)_b^a quad overbrace(a plus b, upright("term")) quad overbracket(a plus b, c) quad a plus b_brace.b_c quad a plus b_bracket.b_c quad^H e 3 quad_x A quad_x^3
+x_b^a quad x_b^a quad min_A quad max_B quad det_C quad Pr_A quad gcd_A quad dot(u)^2 quad overline(u)_epsilon quad underline(u)_b^a quad overbrace(a plus b, upright("term")) quad overbracket(a plus b, c) quad underbrace(a plus b, c) quad a plus b_bracket.b_c quad^H e 3 quad_x A quad_x^3
diff --git a/texmath.cabal b/texmath.cabal
--- a/texmath.cabal
+++ b/texmath.cabal
@@ -1,5 +1,5 @@
 Name:                texmath
-Version:             0.12.7.1
+Version:             0.12.8
 Cabal-Version:       >= 1.10
 Build-type:          Simple
 Synopsis:            Conversion between math formats.
@@ -80,6 +80,7 @@
                          pandoc-types >= 1.20 && < 1.24,
                          mtl >= 2.2.1,
                          text,
+                         typst-symbols,
                          split
 
     Exposed-modules:     Text.TeXMath,
@@ -100,8 +101,8 @@
                          Text.TeXMath.Unicode.ToUnicode,
                          Text.TeXMath.Unicode.ToTeX,
                          Text.TeXMath.Unicode.Fonts
-    Other-modules:       Text.TeXMath.Shared,
-                         Text.TeXMath.Readers.TeX.Commands
+                         Text.TeXMath.Shared
+    Other-modules:       Text.TeXMath.Readers.TeX.Commands
                          Paths_texmath
     if impl(ghc >= 6.12)
       Ghc-Options:     -Wall -fno-warn-unused-do-bind
