11 lines
187 B
Bash
Executable file
11 lines
187 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Utilize in conjunction with espanso, call ;html5
|
|
cat <<EOM
|
|
\$$
|
|
f(x) =
|
|
\begin{cases}
|
|
x - 3 & \text{if } x \geq 3 \\\\
|
|
-(x - 3) & \text{if } x < 3
|
|
\end{cases}
|
|
\$$
|
|
EOM
|