Current section

Files

Jump to
quartz lib quartz math.ex
Raw

lib/quartz/math.ex

defmodule Quartz.Math do
@moduledoc """
Math characters for typesetting math formulas.
The full list of supported mathematical characters
together with the functions that return them can be
seen in this chart:
![Supported characters chart](assets/math_characters_chart/full_chart.png)
"""
# Pretty much everything in this module is generated at compile-time
# by macros and functions in the `Quartz.MathHelpers` module.
require Quartz.MathHelpers, as: MathHelpers
MathHelpers.build_sym_category()
MathHelpers.build_function_clauses()
end