can you help me fith the following expression please ?
\begin{equation}
F=\left\lbrace
\begin{tabular}{ll}
$F_{app}\mu_{k}\sin (v) $ & $if \quad v>0$, \\
$ F_{app}$ & if$ \quad v=0 \quad and \quad F_{app}\leq F_{app} \mu_{s}$,
\end{tabular}
\right
%\label{RRRR}
\end{equation}
Math & Science ⇒ adding tabular in equation/math enviroment
NEW: TikZ book now 40% off at Amazon.com for a short time.

- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
adding tabular in equation/math enviroment
Hi!
There's a math equivalent to
I defined an operator, since it that index looks like an operator (that's usually written in upright shape) and not like a product of a, p, and p. Furthermore, I treated text (if, and) as text. What do you think?
Stefan
There's a math equivalent to
tabular
, it's array
. Here is how I would do it:Code: Select all
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator\app{app}
\begin{document}
\begin{equation}
F = \left\lbrace
\begin{array}{ll}
F_{\app} \, \mu_{k} \sin(v) & \text{ if } v > 0, \\
F_{\app} & \text{ if } v = 0
\text{ and } F_{\app}\leq F_{\app} \, \mu_{s}
\end{array}
\right.
%\label{RRRR}
\end{equation}
\end{document}
Stefan
LaTeX.org admin
adding tabular in equation/math enviroment
Just a small change to Stefan's answer. I suggest the use of
{cases}
for typesetting the equation. Here is the code:
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\DeclareMathOperator\app{app}
\begin{document}
\begin{equation}
F =
\begin{cases}
F_{\app} \, \mu_{k} \sin(v) & \text{ if } v > 0, \\
F_{\app} & \text{ if } v = 0
\text{ and } F_{\app}\leq F_{\app} \, \mu_{s}
\end{cases}
%\label{RRRR}
\end{equation}
\end{document}
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim