|
std::string | makeSubscript (const std::string &normal) |
| Create a subscript string from a normal string.
|
std::string | makeSubscript (int normal) |
| Create a subscript string from a normal integer.
|
std::string | makeSuperscript (const std::string &normal) |
| Create a superscript string from a normal string.
|
std::string | makeSuperscript (char normal) |
| Create a superscript string from a normal character.
|
std::string | makeSurd (const std::string &radicand) |
| Makes a surd expression from a radicand.
|
|
const std::array< std::string, 10 > & | SUPERSCRIPTS |
| A list of subscript characters.
|
constexpr std::string_view | MATRIX_LEFT_TOP = "\u23A1" |
constexpr std::string_view | MATRIX_LEFT_MIDDLE = "\u23A2" |
constexpr std::string_view | MATRIX_LEFT_BOTTOM = "\u23A3" |
constexpr std::string_view | MATRIX_RIGHT_TOP = "\u23A4" |
constexpr std::string_view | MATRIX_RIGHT_MIDDLE = "\u23A5" |
constexpr std::string_view | MATRIX_RIGHT_BOTTOM = "\u23A6" |
constexpr std::string_view | BECAUSE = "\u2235" |
| The because symbol (3 dots in a triangle, Unicode U+2235)
|
constexpr std::string_view | THEREFORE = "\u2234" |
| The therefore symbol (3 dots in a triangle, Unicode U+2234)
|
constexpr std::string_view | MULTIPLY = "\u00D7" |
| The multiply symbol (Unicode U+00D7)
|
constexpr std::string_view | DIVIDED_BY = "\u00F7" |
| The divide symbol (Unicode U+00F7)
|
constexpr std::string_view | SURD = "\u221A" |
constexpr std::string_view | COMBINE_MACRON = "\u0305" |
constexpr std::string_view | LARGE_DOT = "\u25C9" |
| The large dot symbol (Unicode U+25C9)
|
constexpr std::string_view | ABOVE_DOT = "\u02D9" |
constexpr std::string_view | SUB_0 = "\u2080" |
| The subscript 0 (Unicode U+2080)
|
constexpr std::string_view | SUB_Z = "\u1D69" |
| The subscript z (Unicode U+2098)
|
constexpr int | SUB_MAGIC_NUMBER = 8272 |
| The subscript magic number (8272)
|
constexpr std::string_view | SUP_0 = "\u2070" |
| The superscript 0 (Unicode U+2070)
|
constexpr std::string_view | SUP_Z = "\u1DBB" |
| The superscript z (Unicode U+1DBB)
|
constexpr int | SUP_MAGIC_NUMBER = 8304 |
| The superscript magic number (8304)
|
The namespace containing various unicode symbols.
- Deprecated
- This namespace is deprecated and will be removed in the future, as the unicode output is not flexible enough.
- Warning
- Usage of this namespace is strongly discouraged. Use the steppable::prettyPrint namespace for basic tools, and implement yours in steppable::prettyPrint::printers.