Hoogle Search
Within LTS Haskell 24.41 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
(
%: ) :: LaTeXC l => l -> Text -> lHaTeX Text.LaTeX.Base.Commands This operator appends a comment after a expression. For example:
textbf "I'm just an example." %: "Insert a few words here."
The implementation is(%:) l = (l <>) . comment
Since you are writing in Haskell, you may not need to output comments as you can add them in the Haskell source. I added this feature for completeness. It may be useful for debugging the output as well.(
!: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Subscript.
(
*: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Asterisk operator <math>.
infixl 7 *:
(
/=: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Not equal <math>.
infixr 4 /=:
(
<: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Lesser <math>.
(
<=: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Lesser or equal <math>.
(
=: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Simple equals sign <math>.
infixr 4 =:
(
>: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Greater <math>.
(
>=: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Greater or equal <math>.
(
^: ) :: LaTeXC l => l -> l -> lHaTeX Text.LaTeX.Base.Math Superscript.