User:Sintel/sandbox: Difference between revisions
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> | |||