blob: a712f7498f6bd1278e34454f63608755b38d45ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
% /***************************************************************************
% begin: Aug 09 2006
% edit: --
% version: 0.01
% copyright: (C) 2006 by Holger Danielsson and Thomas Braun
% ***************************************************************************/
%
% /***************************************************************************
% * *
% * This program is free software; you can redistribute it and/or modify *
% * it under the terms of the GNU General Public License as published by *
% * the Free Software Foundation; either version 2 of the License, or *
% * (at your option) any later version. *
% * *
% ***************************************************************************/
\documentclass{article}
\begin{document}
234$ \sqrt{2}$ $a^2$
abc
$ \$ % \( % \[ $$$$
\begin{array}{ccc}
x^2 & y^2 & z^2
\end{array}
$
\begin{equation}
% \begin{equation} $
a^2 \\\\\$
\begin{array}{ccc}
\alpha & \beta & \gamma
\end{array}
\end{equation}
$\begin{array}{ccc}
a^2 & b^2 & c^2
\end{array}$
\[
a^2
\] \$ $ x^2$
\(
b^2 % $ test $
\)
\begin{displaymath} % works
\alpha + \beta + \gamma = 180� % comment
\begin{split}
\end{split}
\end{displaymath}
\begin{math} % does not work yet
\alpha + \beta + \gamma = 180� % comment
\end{math}
\begin{eqnarray} % should not work
\alpha + \beta + \gamma = 180� % comment
\end{eqnarray}
\ensuremath{}
\begin{mathtest} % has to be defined in configure-kile-commands to work
asdasdasd
\end{mathtest}
\end{document}
|