User:Sintel/sandbox: Difference between revisions
Jump to navigation
Jump to search
Template was renamed |
test mappin layout |
||
Line 1: | Line 1: | ||
==== Mapping matrix markup ==== | |||
Using the <code>pre</code> tag: | |||
<pre><nowiki> | |||
2 3 5 | |||
2 [ 1 1 0] | |||
3/2 [ 0 1 4] | |||
</nowiki></pre> | |||
Latex: | |||
{{ | <math> | ||
\begin{array}{c c} | |||
& \begin{array}{c c c} 2 & 3 & 5 \\ \end{array} \\ | |||
\begin{array}{c c c}2 \\ 3/2 \end{array} & | |||
\left[ | |||
\begin{array}{c c c} | |||
1 & 1 & 0 \\ | |||
0 & 1 & 4 | |||
\end{array} | |||
\right] | |||
\end{array} | |||
</math> | |||
CSS <code>pre</code> and <code>ptt</code>: | |||
<p style="white-space: pre;"><tt> | |||
2 3 5 | |||
2 [ 1 1 0] | |||
3/2 [ 0 1 4] | |||
</tt></p> | |||
Revision as of 14:18, 29 March 2022
Mapping matrix markup
Using the pre
tag:
2 3 5 2 [ 1 1 0] 3/2 [ 0 1 4]
Latex:
[math]\displaystyle{ \begin{array}{c c} & \begin{array}{c c c} 2 & 3 & 5 \\ \end{array} \\ \begin{array}{c c c}2 \\ 3/2 \end{array} & \left[ \begin{array}{c c c} 1 & 1 & 0 \\ 0 & 1 & 4 \end{array} \right] \end{array} }[/math]
CSS pre
and ptt
:
2 3 5 2 [ 1 1 0] 3/2 [ 0 1 4]