मैं एक घुंघराले ब्रेस ( {
) के साथ एक समीकरण कैसे लिख सकता हूं , और दाईं-दूसरी तरफ घुंघराले, दो अलग-अलग लाइनों में दो बयान?
जवाबों:
आप cases
अमृत में अमृत की कोशिश कर सकते हैं ।
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
f(x)=\begin{cases}
1, & \text{if $x<0$}.\\
0, & \text{otherwise}.
\end{cases}
\end{equation}
\end{document}
यह बिना किसी विशिष्ट पैकेज के सादे लाटेक्स में प्राप्त किया जा सकता है।
\documentclass{article}
\begin{document}
This is your only binary choices
\begin{math}
\left\{
\begin{array}{l}
0\\
1
\end{array}
\right.
\end{math}
\end{document}
यह कोड कुछ ऐसा बनाता है जो दिखता है कि आपको क्या चाहिए।
@ टॉमबार्ट में जैसा उदाहरण है, उसी कोड के साथ प्राप्त किया जा सकता है।
\documentclass{article}
\begin{document}
\begin{math}
f(x)=\left\{
\begin{array}{ll}
1, & \mbox{if $x<0$}.\\
0, & \mbox{otherwise}.
\end{array}
\right.
\end{math}
\end{document}
यह कोड बहुत समान परिणाम उत्पन्न करता है।
cases
पर्यावरण के amsmath
लिए एक समान पहचान देता है , थोड़े छोटे घुंघराले ब्रेस को छोड़कर, जो कभी-कभी एक फायदा हो सकता है।
क्या आप देख रहे हैं
\begin{cases}
math text
\end{cases}
यह विवरण से बहुत स्पष्ट नहीं था। लेकिन यह वही हो सकता है जो आप http://en.wikipedia.org/wiki/Help:Displaying_a_formula#Continuation_and_cases के लिए देख रहे हैं
@MLT द्वारा टिप्पणी का जवाब देने के लिए, मानक cases
वातावरण का एक विकल्प है, बहुत परिष्कृत नहीं, वास्तव में दोनों पंक्तियों के साथ। यह कोड:
\documentclass{article}
\usepackage{amsmath}
\usepackage{cases}
\begin{document}
\begin{numcases}{f(x)=}
1, & if $x<0$\\
0, & otherwise
\end{numcases}
\end{document}
पैदा करता है
ध्यान दें कि यहां, गणित को प्रत्येक पंक्ति ( संदर्भ ) में दाईं ओर \(...\)
या $...$
कम से कम सीमांकित किया जाना चाहिए ।&