Graphics, Figures & Tables ⇒ Function by parts help
Function by parts help
- Attachments
-
- dfg.jpg (64.09 KiB) Viewed 4864 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Function by parts help
you are using an equation environment, which differs from a usual displayed environment in just one point: It adds the number of the current equation on the right side.
Use
\[ your math here \]
instead.By the way, using the
cases
environment seems to be a good idea.Code: Select all
\documentclass{article}
\usepackage{mathtools}
\usepackage{blindtext}
\begin{document}
\blindtext
\[ f(x) =
\begin{cases}
x^{3} + 3x^{2} + 2x + 1 & x < 0 \\
\frac{1}{x+1} & 0 \le x
\end{cases}
\]
\blindtext
\end{document}
Re: Function by parts help
Re: Function by parts help
Eq(2)=> E=mC^2
where E=Energy
m=mass
C= velocity of light
How can I write this above two equations in this template.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Function by parts help
how is your question related to this topic, function by parts, cases environment with a brace?
Where is the problem? A symbol, alignment, ... ?
Better open a new topic for each of your own question. This topic here is clearly marked as solved, so I guess not many users read again here to see your new question below.
Stefan