I just saw this question but it doesn't answer mine. How do I define a function something like
f(x) = { bla bla if x<0 bla bla if x>0
The above question doesn't answer how to write f(x) before the bracket
Please help.
I just saw this question but it doesn't answer mine. How do I define a function something like
f(x) = { bla bla if x<0 bla bla if x>0
The above question doesn't answer how to write f(x) before the bracket
Please help.
LaTeX is very flexible. Although it is not WYSIWYG you can write it in a very logical way. So if you want to have to have f(x) precede your cases, just write it that way. Here with the example of the linked question.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[ f(x) = \begin{cases}
0 & x\leq 0 \\
\frac{100-x}{100} & 0\leq x\leq 100 \\
0 & 100\leq x
\end{cases}
\]
\end{document}
\left[\begin{array}{ll}…\end{array}\right. it's better to ask a new question with your specific requirements.
– TeXnician
Jan 31 '24 at 09:41
TeX is very flexible. Although it is not WYSIWYG you can write it in a very logical way. So if you want to have to have f(x) precede your cases, just write it that way.
$$
f(x) = \cases{ 0 & $x\le 0$ \cr
100-x\over 100 & $0\le x\le 100$ \cr
0 & $100\le x$ }
$$
\bye
f(x)=before the bracket, then just writef(x)=before the\begin{cases}(and after the$or\[) – marsupilam Apr 21 '17 at 17:38