test directory was not supposed to become part of the main repository (it was just for testing the fixes

This commit is contained in:
Davide P. Cervone 2010-11-11 22:20:20 -05:00
parent 806f48acdf
commit 4118b30a7d
2 changed files with 0 additions and 55 deletions

View File

@ -1,30 +0,0 @@
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" >
<title>jsMath2jax Test</title>
<script src="../mathjax/unpacked/MathJax.js">
MathJax.Hub.Config({
jax: ["input/TeX","output/HTML-CSS"],
extensions: ["tex2jax.js","jsMath2jax.js"]
});
</script>
</head>
<body>
\begin{eqnarray}
x & = & 4y + 3z \\
z & > & a + b + ... + j + \\
& & k + l + m
\end{eqnarray}
<div class="math">
\begin{eqnarray}
x & = & 4y + 3z \\
z & > & a + b + ... + j + \\
& & k + l + m
\end{eqnarray}
</div>
</body>
</html>

View File

@ -1,25 +0,0 @@
<html>
<head>
<title>MathJax tex2jax Test</title>
<script src="../mathjax/unpacked/MathJax.js">
MathJax.Hub.Config({
jax: ["input/TeX","output/HTML-CSS"],
extensions: ["tex2jax.js"]
});
</script>
<style>
p {border: 1px solid black; background:#EEEEEE;}
</style>
</head>
<body>
<p>Text Before: \(x+1\)</p>
<p>\(x+1\) Text after</p>
<p>\(\text{no text}\)</p>
<p>Text Before: $$x+1$$</p>
<p>$$x+1$$ Text after</p>
<p>$$\text{no text}$$</p>
</body>
</html>