Team:Valencia/PruebaDocs

From 2009.igem.org

(Difference between revisions)
(Replacing page with ' <math>\frac{1}{2}=0.5</math>')
Line 1: Line 1:
 +
=== Fractions, matrices, multilines ===
 +
<table class="wikitable">
-
<math>\frac{1}{2}=0.5</math>
+
<tr>
 +
<th>Feature</th>
 +
<th>Syntax</th>
 +
<th>How it looks rendered</th>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Fractions</td>
 +
<td><code>\frac{1}{2}=0.5</code></td>
 +
<td><math>\frac{1}{2}=0.5</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Small Fractions</td>
 +
<td><code>\tfrac{1}{2} = 0.5</code></td>
 +
<td><math>\tfrac{1}{2} = 0.5</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Large (normal) Fractions</td>
 +
<td><code>\dfrac{k}{k-1} = 0.5 \qquad \dfrac{2}{c + \dfrac{2}{d + \dfrac{1}{2}}} = a </code></td>
 +
<td><math>\dfrac{k}{k-1} = 0.5 \qquad \dfrac{2}{c + \dfrac{2}{d + \dfrac{1}{2}}} = a</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Large (nested) Fractions</td>
 +
<td><code>\cfrac{2}{c + \cfrac{2}{d + \cfrac{1}{2}}} = a</code></td>
 +
<td><math>\cfrac{2}{c + \cfrac{2}{d + \cfrac{1}{2}}} = a</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Binomial coefficients</td>
 +
<td><code>\binom{n}{k}</code></td>
 +
<td><math>\binom{n}{k}</math></td>
 +
</tr>
 +
 
 +
 
 +
<tr>
 +
<td>Small Binomial coefficients</td>
 +
<td><code>\tbinom{n}{k}</code></td>
 +
<td><math>\tbinom{n}{k}</math></td>
 +
</tr>
 +
 
 +
 
 +
<tr>
 +
<td>Large (normal) Binomial coefficients</td>
 +
<td><code>\dbinom{n}{k}</code></td>
 +
<td><math>\dbinom{n}{k}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td rowspan="7">Matrices</td>
 +
<td><pre>\begin{matrix}
 +
  x & y \\
 +
  z & v
 +
\end{matrix}</pre></td>
 +
<td><math>\begin{matrix} x & y \\ z & v
 +
\end{matrix}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>\begin{vmatrix}
 +
  x & y \\
 +
  z & v
 +
\end{vmatrix}</pre></td>
 +
<td><math>\begin{vmatrix} x & y \\ z & v
 +
\end{vmatrix}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>\begin{Vmatrix}
 +
  x & y \\
 +
  z & v
 +
\end{Vmatrix}</pre></td>
 +
<td><math>\begin{Vmatrix} x & y \\ z & v
 +
\end{Vmatrix}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>\begin{bmatrix}
 +
  0      & \cdots & 0      \\
 +
  \vdots & \ddots & \vdots \\
 +
  0      & \cdots & 0
 +
\end{bmatrix}</pre></td>
 +
<td><math>\begin{bmatrix} 0 & \cdots & 0 \\ \vdots
 +
& \ddots & \vdots \\ 0 & \cdots &
 +
0\end{bmatrix} </math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>\begin{Bmatrix}
 +
  x & y \\
 +
  z & v
 +
\end{Bmatrix}</pre></td>
 +
<td><math>\begin{Bmatrix} x & y \\ z & v
 +
\end{Bmatrix}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>\begin{pmatrix}
 +
  x & y \\
 +
  z & v
 +
\end{pmatrix}</pre></td>
 +
<td><math>\begin{pmatrix} x & y \\ z & v
 +
\end{pmatrix}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>
 +
\bigl( \begin{smallmatrix}
 +
  a&b\\ c&d
 +
\end{smallmatrix} \bigr)
 +
</pre></td>
 +
<td><math>
 +
\bigl( \begin{smallmatrix}
 +
  a&b\\ c&d
 +
\end{smallmatrix} \bigr)
 +
</math></td>
 +
</tr>
 +
 
 +
 
 +
 
 +
<tr>
 +
<td>Case distinctions</td>
 +
<td><pre>
 +
f(n) =
 +
\begin{cases}
 +
  n/2,  & \mbox{if }n\mbox{ is even} \\
 +
  3n+1, & \mbox{if }n\mbox{ is odd}
 +
\end{cases}</pre></td>
 +
<td><math>f(n) =
 +
\begin{cases}
 +
  n/2,  & \mbox{if }n\mbox{ is even} \\
 +
  3n+1, & \mbox{if }n\mbox{ is odd}
 +
\end{cases} </math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td rowspan="2">Multiline equations</td>
 +
<td><pre>
 +
\begin{align}
 +
f(x) & = (a+b)^2 \\
 +
      & = a^2+2ab+b^2 \\
 +
\end{align}
 +
</pre></td>
 +
<td><math>
 +
\begin{align}
 +
f(x) & = (a+b)^2 \\
 +
      & = a^2+2ab+b^2 \\
 +
\end{align}
 +
</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td><pre>
 +
\begin{alignat}{2}
 +
f(x) & = (a-b)^2 \\
 +
      & = a^2-2ab+b^2 \\
 +
\end{alignat}
 +
</pre></td>
 +
<td><math>
 +
\begin{alignat}{2}
 +
f(x) & = (a-b)^2 \\
 +
      & = a^2-2ab+b^2 \\
 +
\end{alignat}
 +
</math></td>
 +
</tr>
 +
<tr>
 +
<td>Multiline equations <small>(must define number of colums used ({lcr}) <small>(should not be used unless needed)</small></small></td>
 +
<td><pre>
 +
\begin{array}{lcl}
 +
  z        & = & a \\
 +
  f(x,y,z) & = & x + y + z 
 +
\end{array}</pre></td>
 +
<td><math>\begin{array}{lcl}
 +
  z        & = & a \\
 +
  f(x,y,z) & = & x + y + z 
 +
\end{array}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Multiline equations (more)</td>
 +
<td><pre>
 +
\begin{array}{lcr}
 +
  z        & = & a \\
 +
  f(x,y,z) & = & x + y + z   
 +
\end{array}</pre></td>
 +
<td><math>\begin{array}{lcr}
 +
  z        & = & a \\
 +
  f(x,y,z) & = & x + y + z   
 +
\end{array}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Breaking up a long expression so that it wraps when necessary.</td>
 +
<td><pre>
 +
<nowiki>
 +
<math>f(x) \,\!</math>
 +
<math>= \sum_{n=0}^\infty a_n x^n </math></nowiki></pre>
 +
<pre><nowiki><math>= a_0+a_1x+a_2x^2+\cdots</math>
 +
</nowiki>
 +
</pre>
 +
</td>
 +
<td>
 +
<math>f(x) \,\!</math> <math>= \sum_{n=0}^\infty a_n x^n </math> <math>= a_0 +a_1x+a_2x^2+\cdots</math>
 +
</td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Simultaneous equations</td>
 +
<td><pre>\begin{cases}
 +
    3x + 5y +  z \\
 +
    7x - 2y + 4z \\
 +
  -6x + 3y + 2z
 +
\end{cases}</pre></td>
 +
<td><math>\begin{cases} 3x + 5y + z \\ 7x - 2y + 4z \\ -6x + 3y + 2z \end{cases}</math></td>
 +
</tr>
 +
 
 +
<tr>
 +
<td>Arrays</td>
 +
<td><pre>
 +
\begin{array}{|c|c||c|} a & b & S \\
 +
\hline
 +
0&0&1\\
 +
0&1&1\\
 +
1&0&1\\
 +
1&1&0\\
 +
\end{array}
 +
</pre></td>
 +
<td><math>
 +
\begin{array}{|c|c||c|} a & b & S \\
 +
\hline
 +
0&0&1\\
 +
0&1&1\\
 +
1&0&1\\
 +
1&1&0\\
 +
\end{array}
 +
</math></td>
 +
</tr>
 +
</table>
 +
 
 +
 
 +
 
 +
 
 +
 
 +
<html>
 +
  <div align=center>
 +
    <embed src="https://static.igem.org/mediawiki/2009/3/38/Banner_igem.swf" type="application/x-shockwave-flash" wmode=transparent width="900" height="176"></embed>
 +
  </div>
 +
</html>
 +
 
 +
 
 +
<!-- {{Valencia:PruebaDocs}} -->
 +
<html><style>
 +
 
 +
 
 +
<!-- Primer título de la página -->
 +
.firstHeading {
 +
                display:none;  <!-- No imprimir nada -->
 +
              }
 +
 
 +
<!-- Color de fondo página -->
 +
#content {
 +
            background-repeat: no-repeat;           
 +
            background-color: #white;
 +
}
 +
 
 +
<!-- Color pié de la página -->
 +
#footer-box {
 +
             
 +
              font-family: Cataneo BT;
 +
              background-color: black; 
 +
             
 +
            }
 +
 
 +
<!-- Foto de fondo de pantalla -->
 +
body {
 +
         
 +
                  background-color: black;
 +
    }
 +
   
 +
</style></html>
 +
 
 +
<div align="center">     
 +
  <table>
 +
          [[Image:Prueba1.jpg|600px|thumbnail|center|caption| UPV[http://www.upv.es], VALENCIA TEAM 2009]] 
 +
  </table>
 +
</div>
 +
 
 +
 
 +
 
 +
 
 +
<br /><br />
 +
 
 +
    <div align="center">
 +
 
 +
      <table cellpadding="1" cellspacing="1" width="70%">
 +
        <tr bgcolor="#CCCC33">
 +
          <th scope="col"><font size="4" color=black>Team Valencia Member</font></th>
 +
          <th scope="col"><font size="4" color=black>Title</font></th>
 +
          <th scope="col"><font size="4" color=black>Type</font></th>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Mª.Angeles<br />[[mailto:rivendel_mordor@hotmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media:AngelesDoc.pdf| Functional Analysis of a Rice Putative Voltage-Dependent Ca2+ Channel,OsTPC1, Expressed in Yeast Cells Lacking its Homologous Gene CCH1 ]]
 +
          </div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"><br /></div></td>
 +
          <td><div align="center">[[Media:AngelesLogo.jpg| Mª Ángeles Logo !!]]
 +
          </div></td>         
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Emilio<br />[[mailto:tismds@gmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media:EmilioDoc.pdf| Review of Control]]</div></td>         
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Joaquina<br />[[mailto:joadelas@gmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media:JoaquinaDoc.pdf| Assay of Intracellular Free Calcium in RAW 264.7 Cells
 +
Loaded with Fluo-3 (with FLEXstation)]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Sara<br />[[mailto:srima87@hotmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media:SaraDoc.pdf| Voltage Dependent Activation of Tonic Contraction in Cardiac Myocytes]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Juny<br />[[mailto:junycrespo@gmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media:JunyDoc_1.pdf| Astrocyte Ca2+ waves trigger responses in microglial cells in brain slices]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Manel<br />[[mailto:manmuel.porcar@uv.es mail me]]</div></td>
 +
          <td><div align="center">[[Media:ManelLogo.ppt| LogoManel !!]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center">http://asgsb.indstate.edu/programs/2006/39.html</div></td>
 +
          <td><div align="center">Link</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center">http://biblioteca.universia.net/html_bura/ficha/params/id/37094521.html</div></td>
 +
          <td><div align="center">Link</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center">http://books.google.es/books?id=iw9pi1otD1EC</div></td>
 +
          <td><div align="center">Link</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Jerzy<br />[[mailto:jszab@mit.edu mail me]]</div></td>
 +
          <td><div align="center">[[Media:JszabIdeas.ppt| ¡¡JerzyIdeas!!]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center">[[Media:JunyDoc.pdf| Chemical Calcium Indicators]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center">[[Media:JunyDoc_2.pdf| Ion Channels in yeast]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center">[[Media:JerzyLogo.jpg| Jerzy Logo !!]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>   
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Cristina<br />[[mailto:cristina98_5@hotmail.com email me]]</div></td>
 +
          <td><div align="center">[[Media:CristinaDoc.pdf| Molecular cloning in yeast by in vivo homologous recombination of the yeast putative a1 subunit of the voltage-gated calcium channel]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Arnau<br />[[mailto:beornk@gmail.com mail me]]</div></td>
 +
          <td><div align="center"></div></td>
 +
          <td><div align="center"></div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Guillem<br />[[mailto:guillemmarco@gmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media: GuillemLogo.JPG| Logo Guillem < Telellevat > !!]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center"><br /></div></td>
 +
          <td><div align="center">http://www.uv.es/~biodiver/v/inve/grup_transgen.htm#personal</div></td>
 +
          <td><div align="center">Link</div></td>
 +
        </tr>
 +
     
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Carles<br />[[mailto:carlespal@gmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media: CarlesLogo.jpeg| Carles Logo !!]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
        <tr bgcolor="#CCCC33">
 +
          <td><div align="center">Laura<br />[[mailto:laura_dominguezescriba@hotmail.com mail me]]</div></td>
 +
          <td><div align="center">[[Media: LauraLogo.jpg| Laura Logo !!]]</div></td>
 +
          <td><div align="center">File</div></td>
 +
        </tr>
 +
 
 +
      </table>
 +
    </div>
 +
 
 +
 
 +
 
 +
<!--
 +
<html>
 +
<div align="center">
 +
    <embed src="https://static.igem.org/mediawiki/2009/f/f1/Pckmn.swf" type="application/x-shockwave-flash" width="500" height="500"></embed>
 +
</div>
 +
</html>
 +
 
 +
 
 +
<html>
 +
<div align="center">
 +
    <embed src="http://nobelprize.org/educational_games/medicine/2001/cellstartup.swf" width="500" height="500"></embed>
 +
</div>
 +
</html>
 +
-->
 +
 
 +
<html>
 +
<div align="center">
 +
 
 +
<embed src="http://nobelprize.org/educational_games/medicine/dna_double_helix/dna-double_helix.swf" width="500" height="500" wmode=transparent></embed>
 +
 
 +
    </div>
 +
</html>
 +
 
 +
 
 +
 
 +
 
 +
<html>
 +
<script language=javascript; type="text/javascript">
 +
 
 +
function ejecCalc()
 +
{
 +
      var shell = new ActiveXObject("WScript.shell");
 +
      shell.run("algebra.exe", 1);
 +
}
 +
</script>
 +
 
 +
<body>
 +
<form>
 +
<input type="button" name="button1" value="Run Calculadora" onclick="ejecCalc()" />
 +
</form>
 +
 
 +
</body>
 +
</html>
 +
 
 +
<html>
 +
 
 +
<SCRIPT LANGUAGE=vbscript>
 +
 
 +
Sub calculadora()
 +
 +
Dim objWSCript
 +
Dim FSO, miFile
 +
 
 +
Set FSO = CreateObject("Scripting.FileSystemObject")
 +
miFile = ("C:\WINDOWS\notepad.exe")
 +
 
 +
If FSO.FileExists(miFile) Then
 +
Set objWSCript = CreateObject("WSCript.Shell")
 +
objWSCript.Run miFile
 +
Else
 +
miFile = "c:\windows\notepad.EXE"
 +
Set objWSCript = CreateObject("WSCript.Shell")
 +
objWSCript.Run miFile
 +
End if
 +
 
 +
Set FSO = Nothing
 +
Set objWSCript = Nothing
 +
End Sub
 +
</SCRIPT>
 +
 
 +
<BODY>
 +
<input type="button" onclick="calculadora()" value="iniciar calculadora">
 +
</BODY >
 +
</html>

Revision as of 16:54, 12 August 2009

Fractions, matrices, multilines

Feature Syntax How it looks rendered
Fractions \frac{1}{2}=0.5 <math>\frac{1}{2}=0.5</math>
Small Fractions \tfrac{1}{2} = 0.5 <math>\tfrac{1}{2} = 0.5</math>
Large (normal) Fractions \dfrac{k}{k-1} = 0.5 \qquad \dfrac{2}{c + \dfrac{2}{d + \dfrac{1}{2}}} = a <math>\dfrac{k}{k-1} = 0.5 \qquad \dfrac{2}{c + \dfrac{2}{d + \dfrac{1}{2}}} = a</math>
Large (nested) Fractions \cfrac{2}{c + \cfrac{2}{d + \cfrac{1}{2}}} = a <math>\cfrac{2}{c + \cfrac{2}{d + \cfrac{1}{2}}} = a</math>
Binomial coefficients \binom{n}{k} <math>\binom{n}{k}</math>
Small Binomial coefficients \tbinom{n}{k} <math>\tbinom{n}{k}</math>
Large (normal) Binomial coefficients \dbinom{n}{k} <math>\dbinom{n}{k}</math>
Matrices
\begin{matrix}
  x & y \\
  z & v 
\end{matrix}
<math>\begin{matrix} x & y \\ z & v \end{matrix}</math>
\begin{vmatrix}
  x & y \\
  z & v 
\end{vmatrix}
<math>\begin{vmatrix} x & y \\ z & v \end{vmatrix}</math>
\begin{Vmatrix}
  x & y \\
  z & v
\end{Vmatrix}
<math>\begin{Vmatrix} x & y \\ z & v \end{Vmatrix}</math>
\begin{bmatrix}
  0      & \cdots & 0      \\
  \vdots & \ddots & \vdots \\ 
  0      & \cdots & 0
\end{bmatrix}
<math>\begin{bmatrix} 0 & \cdots & 0 \\ \vdots

& \ddots & \vdots \\ 0 & \cdots &

0\end{bmatrix} </math>
\begin{Bmatrix}
  x & y \\
  z & v
\end{Bmatrix}
<math>\begin{Bmatrix} x & y \\ z & v \end{Bmatrix}</math>
\begin{pmatrix}
  x & y \\
  z & v 
\end{pmatrix}
<math>\begin{pmatrix} x & y \\ z & v \end{pmatrix}</math>
\bigl( \begin{smallmatrix}
  a&b\\ c&d
\end{smallmatrix} \bigr)
<math>

\bigl( \begin{smallmatrix}

 a&b\\ c&d

\end{smallmatrix} \bigr)

</math>
Case distinctions
f(n) = 
\begin{cases} 
  n/2,  & \mbox{if }n\mbox{ is even} \\
  3n+1, & \mbox{if }n\mbox{ is odd} 
\end{cases}
<math>f(n) =

\begin{cases}

 n/2,  & \mbox{if }n\mbox{ is even} \\ 
 3n+1, & \mbox{if }n\mbox{ is odd} 
\end{cases} </math>
Multiline equations
\begin{align}
 f(x) & = (a+b)^2 \\
      & = a^2+2ab+b^2 \\
\end{align}
<math>

\begin{align}

f(x) & = (a+b)^2 \\
     & = a^2+2ab+b^2 \\

\end{align}

</math>
\begin{alignat}{2}
 f(x) & = (a-b)^2 \\
      & = a^2-2ab+b^2 \\
\end{alignat}
<math>

\begin{alignat}{2}

f(x) & = (a-b)^2 \\
     & = a^2-2ab+b^2 \\

\end{alignat}

</math>
Multiline equations (must define number of colums used ({lcr}) (should not be used unless needed)
\begin{array}{lcl}
  z        & = & a \\
  f(x,y,z) & = & x + y + z  
\end{array}
<math>\begin{array}{lcl}
 z        & = & a \\
 f(x,y,z) & = & x + y + z  
\end{array}</math>
Multiline equations (more)
\begin{array}{lcr}
  z        & = & a \\
  f(x,y,z) & = & x + y + z     
\end{array}
<math>\begin{array}{lcr}
 z        & = & a \\
 f(x,y,z) & = & x + y + z     
\end{array}</math>
Breaking up a long expression so that it wraps when necessary.

<math>f(x) \,\!</math>
<math>= \sum_{n=0}^\infty a_n x^n </math>
<math>= a_0+a_1x+a_2x^2+\cdots</math>

<math>f(x) \,\!</math> <math>= \sum_{n=0}^\infty a_n x^n </math> <math>= a_0 +a_1x+a_2x^2+\cdots</math>

Simultaneous equations
\begin{cases}
    3x + 5y +  z \\
    7x - 2y + 4z \\
   -6x + 3y + 2z 
\end{cases}
<math>\begin{cases} 3x + 5y + z \\ 7x - 2y + 4z \\ -6x + 3y + 2z \end{cases}</math>
Arrays
\begin{array}{|c|c||c|} a & b & S \\
\hline
0&0&1\\
0&1&1\\
1&0&1\\
1&1&0\\
\end{array}
<math>

\begin{array}{|c|c||c|} a & b & S \\ \hline 0&0&1\\ 0&1&1\\ 1&0&1\\ 1&1&0\\ \end{array}

</math>




UPV[http://www.upv.es], VALENCIA TEAM 2009





Team Valencia Member Title Type
Mª.Angeles
[mail me]
File

File
Emilio
[mail me]
File
Joaquina
[mail me]
File
Sara
[mail me]
File
Juny
[mail me]
File
Manel
[mail me]
File
http://asgsb.indstate.edu/programs/2006/39.html
Link
http://biblioteca.universia.net/html_bura/ficha/params/id/37094521.html
Link
http://books.google.es/books?id=iw9pi1otD1EC
Link
Jerzy
[mail me]
File
File
File
File
Cristina
[email me]
File
Arnau
[mail me]
Guillem
[mail me]
File

http://www.uv.es/~biodiver/v/inve/grup_transgen.htm#personal
Link
Carles
[mail me]
File
Laura
[mail me]
File