blob: 451929b5bd76ba582e50e5a68735f892cb20c965 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
```
% pandoc -f docbook -t latex
<equation>
<mathphrase>
J(x, y) = \left\{ \begin{array}{ll}
0 & \text{if $I(x, y) < t$} \\
1 & \text{if $I(x, y) \ge t$}
\end{array}
\right.
</mathphrase>
</equation>
^D
\[
J(x, y) = \left\{ \begin{array}{ll}
0 & \text{if $I(x, y) < t$} \\
1 & \text{if $I(x, y) \ge t$}
\end{array}
\right.
\]
```
|