### Limit Examples Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Provides examples of \lim with subscripts and limits. Demonstrates different ways to specify limits. ```latex `\lim x` `\lim_y x` `\lim\limits_y x` ``` -------------------------------- ### Underline Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Illustrates the \underline command for underlining text, with an example using \text. ```latex `\underline{\text{a long argument}}` ``` -------------------------------- ### Url Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \url command for formatting URLs. ```latex `\url{https://temml.org/}` ``` -------------------------------- ### Inline Code Examples Source: https://github.com/ronkok/temml/blob/main/docs/comparison.html Provides inline code examples for specific math commands. ```Plain Text `\lim x` ``` ```Plain Text `\lim_y x` ``` ```Plain Text `\lim\limits_y x` ``` ```Plain Text `\log x` ``` ```Plain Text `\log_y x` ``` ```Plain Text `\log\limits_y x` ``` ```Plain Text `\longdiv{40.0}` ``` ```Plain Text `\llangle A\rrangle` ``` ```Plain Text `{=}\llap{/\,}` ``` ```Plain Text `\lim\limits_x` ``` -------------------------------- ### Reference Command Source: https://github.com/ronkok/temml/blob/main/docs/comparison.html Example of a reference command. ```tex `\ref{maxwell}` ``` -------------------------------- ### KaTeX UnsupportedCmds Example Source: https://github.com/ronkok/temml/blob/main/site/tests/katex-tests.html Shows an example of unsupported commands in KaTeX, which are intended to deliberately not compile. ```katex \err\fracerr32\suberr\superr\sqrterr ``` -------------------------------- ### Underparen Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \underparen command for creating an under-paren. ```latex `\underparen{abc}` ``` -------------------------------- ### Eqalign Example Source: https://github.com/ronkok/temml/blob/main/docs/comparison.html Demonstrates the \eqalign command for aligning equations. ```tex \eqalign{3x - 4y &= 5\\ x + 7 &= -2y} ``` ```tex \eqalign{3x - 4y &= 5 &(\dagger) \\ x + 7 &= -2y &(\ddagger)\\ z &= 2} ``` ```tex \eqalign{3x - 4y &= 5\\ x + 7 &= -2y} ``` -------------------------------- ### Redefine Command Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Shows how to redefine an existing command using \renewcommand. This example redefines \hail to say 'Ahoy!'. ```latex \def\hail{Hi!} \renewcommand\hail{\text{Ahoy!}} \hail ``` -------------------------------- ### Unrhd Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \unrhd command for the unrhd symbol. ```latex `\unrhd` ``` -------------------------------- ### Varinjlim Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Illustrates the \varinjlim command for the limit operator. ```latex `\varinjlim\limits_n x` ``` -------------------------------- ### Roman Font Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Shows the \rm command for switching to Roman font style. Includes an example with \theta. ```latex \rm AaBb12\theta ``` -------------------------------- ### Underbrace Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/support_table.html Creates an underbrace for grouping elements. ```latex \underbrace{x+\dots+x}_{n\text{ times}} ``` -------------------------------- ### Matrix Environments Source: https://github.com/ronkok/temml/blob/main/site/docs/en/support_table.html Examples of creating matrices using \begin{pmatrix} and \begin{pmatrix*} environments. ```tex \begin{pmatrix} a & b \\ c & d \end{pmatrix} ``` ```tex \begin{pmatrix*}[r] -1 & 3 \\ 2 & -4 \end{pmatrix*} ``` -------------------------------- ### Utilde Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Illustrates the \utilde command for placing a tilde below text. ```latex `\utilde{AB}` ``` -------------------------------- ### Varprojlim Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \varprojlim command for the projective limit operator. ```latex `\varprojlim\limits_n x` ``` -------------------------------- ### Equation Environment Source: https://github.com/ronkok/temml/blob/main/docs/support_table.md Provides an example of a numbered equation using the `\begin{equation}` environment. ```latex \begin{equation}a = b + c\end{equation} ``` -------------------------------- ### Varpropto Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Illustrates the \varpropto command for the proportional to symbol. ```latex `\varpropto` ``` -------------------------------- ### Begingroup/Endgroup Example Source: https://github.com/ronkok/temml/blob/main/docs/comparison.html Demonstrates the \begingroup and \endgroup commands for grouping elements. ```tex \begingroup a \endgroup ``` ```tex \begingroup a \endgroup ``` ```tex \begingroup a \endgroup ``` ```tex \begingroup a\endgroup ``` -------------------------------- ### Underbracket Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/support_table.html Creates an underbracket for grouping elements. ```latex \underbracket{x+\dots+x}_{n\text{ times}} ``` -------------------------------- ### MathOp Example Source: https://github.com/ronkok/temml/blob/main/test/katex-tests.md Demonstrates the \mathop command for operators and \textrm for text within math mode. ```latex a\mathop+b\mathop:c\mathop{\delta} e \mathop{\textrm{and}}f \mathrel{\mathop{:}}=g\sin h ``` -------------------------------- ### Underbracket Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \underbracket command for creating an under-bracket with a subscript. ```latex `\underbracket{x+β‹―+x}_{n\text{ times}}` ``` -------------------------------- ### Tag Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/support_table.html Shows how to use \\tag for labeling equations. ```latex \tag{hi} e=mc^2 \label{tag1} ``` -------------------------------- ### Tag* Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/support_table.html Demonstrates the \\tag* command for unnumbered tags. ```latex \tag*{hey} e=mc^2 ``` -------------------------------- ### Uplus Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Illustrates the \uplus command for the plus-or-union symbol. ```latex `\uplus` ``` -------------------------------- ### Unlhd Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Shows the \unlhd command for the unlhd symbol. ```latex `\unlhd` ``` -------------------------------- ### Temml \xtofrom Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \xtofrom symbol in Temml. ```tex \xtofrom{abc} ``` -------------------------------- ### Upand Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Shows the \upand command for the ampersand symbol. ```latex `\upand` ``` -------------------------------- ### Matrix Environment Example Source: https://github.com/ronkok/temml/blob/main/docs/comparison.html Shows the \begin{matrix} environment for creating matrices. Includes variations for different rendering engines. ```tex \begin{matrix} a & b\\ c & d \end{matrix} ``` ```tex \begin{matrix} a & b\\ c & d \end{matrix} ``` ```tex \begin{matrix} a & b\\ c & d \end{matrix} ``` ```tex \begin{matrix} a & b \\ c & d \end{matrix} ``` -------------------------------- ### Basic Matrix Example Source: https://github.com/ronkok/temml/blob/main/docs/support_table.md Demonstrates the syntax for creating a matrix using the \begin{matrix} environment. This is useful for displaying arrays of mathematical elements. ```tex \begin{matrix} a & b \ c & d \end{matrix} ``` -------------------------------- ### Equation Environment Example Source: https://github.com/ronkok/temml/blob/main/docs/comparison.html Demonstrates the \begin{equation} and \begin{split} environments for numbered equations with multiple lines. ```tex \begin{equation}\label{maxwell}\begin{split}βˆ‡Β·πƒ&=ρ_v \\ βˆ‡Β·π&=0\end{split}\end{equation} ``` ```tex \begin{equation}\begin{split}βˆ‡Β·πƒ&=ρ_v \\βˆ‡Β·π&=0\end{split}\end{equation} ``` ```tex \begin{equation}\begin{split}βˆ‡Β·πƒ&=ρ_v \\βˆ‡Β·π&=0\end{split}\end{equation} ``` ```tex \begin{equation} \begin{split} βˆ‡Β·πƒ&=ρ_v \\ βˆ‡Β·π&=0 \end{split} \end{equation} ``` -------------------------------- ### Displaying Gets Symbol Source: https://github.com/ronkok/temml/blob/main/docs/comparison - MathJax.html Use the \\gets command to display the 'gets' symbol (left arrow). ```tex \\gets ``` ```tex \\(\ \ ext{gets}\\) ``` -------------------------------- ### Creating a Matrix Environment Source: https://github.com/ronkok/temml/blob/main/docs/support_table.md Provides an example of creating a matrix using the \begin{matrix} ... \end{matrix} environment. This is standard LaTeX for displaying matrices. ```latex \begin{matrix} a & b \\ c & d \end{matrix} ``` -------------------------------- ### Upsilon Example Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the \Upsilon command for the Greek letter Upsilon. ```latex `\Upsilon` ``` -------------------------------- ### Matrix Environments Source: https://github.com/ronkok/temml/blob/main/site/docs/en/comparison.html Demonstrates the creation of matrices using \\begin{Bmatrix} and \\begin{bmatrix} environments. ```tex \begin{Bmatrix} a & b \\ c & d \end{Bmatrix} ``` ```tex \begin{bmatrix} a & b \\ c & d \end{bmatrix} ``` -------------------------------- ### Temml KrΓΆger-Vink Notation Examples Source: https://github.com/ronkok/temml/blob/main/test/mhchem-tests.md Provides examples of KrΓΆger-Vink notation in Temml, including various superscripts and subscripts. ```Temml \ce{Li^x_{Li,1-2x}Mg^._{Li,x} \\ V'_{Li,x}Cl^x_{Cl}} ``` ```Temml \ce{O''_{i,x}} ``` ```Temml \ce{M^{..}_i} ``` ```Temml \ce{ $V $^{4'}_{Ti}} ``` ```Temml \ce{V_{V,1}C_{C,0.8} $V $_{C,0.2}} ``` -------------------------------- ### Matrix Environments Source: https://github.com/ronkok/temml/blob/main/site/docs/en/supported.html Examples of various matrix and array environments for typesetting matrices. ```LaTeX \begin{matrix} a & b \\ c & d \end{matrix} ``` ```LaTeX \begin{array}{cc} a & b \\ c & d \end{array} ``` ```LaTeX \begin{pmatrix} a & b \\ c & d \end{pmatrix} ``` ```LaTeX \begin{bmatrix} a & b \\ c & d \end{bmatrix} ``` ```LaTeX \begin{vmatrix} a & b \\ c & d \end{vmatrix} ``` ```LaTeX \begin{Vmatrix} a & b \\ c & d \end{Vmatrix} ``` ```LaTeX \begin{Bmatrix} a & b \\ c & d \end{Bmatrix} ``` ```LaTeX \renewcommand{\arraycolsep}{9pt} \renewcommand{\arraystretch}{1.3} \begin{array}{c|c:c} a & b & c \\ \hline d & e & f \\ \hdashline g & h & i \end{array} ``` ```LaTeX x = \begin{cases} a &\text{if } b \\ c &\text{if } d \end{cases} ``` ```LaTeX \begin{rcases} a &\text{if } b \\ c &\text{if } d \end{rcases}β‡’ ``` ```LaTeX \begin{smallmatrix} a & b \\ c & d \end{smallmatrix} ``` ```LaTeX \sum_{\begin{subarray}{l} i\in\Lambda\\ 0