Tagged Questions
2
votes
2answers
118 views
Breaking a long math expression
I am trying to type long expression by using parenthesis inserting some sentences, as an example I have a expression like product of
\documentclass{12 pt}{article}
\begin{document}
\begin{multline}
...
0
votes
0answers
53 views
Using split to break a long equation
I am trying to break a long equation over multiple lines. It is here as follows:
\begin{equation}
\begin{split}
L(\textbf{q})=&\prod_{t=0}^{36}{q_{1}^{iB(t)sB(t+1)+iC(t)sC(t+1)}\\
&\quad\cdot ...
5
votes
1answer
174 views
Automatic linebreak in align environment in macros
I have given a selfdefined command like
\newcommand{\AND}[2]{\left(#1 \vee #2 \right)}
which makes sure that I always give the correct number of parameters to my formula and which handles the ...
6
votes
1answer
104 views
Breaking equation in align enviroment to put textwidth matrix in separate line
I have to put a textwidth pmatrix into an align environment. When using split, it destroys the centered alignment of the other equation.
Pseudocode:
\begin{align}
\vec{a} &= \vec{b} + \vec{c} ...
4
votes
2answers
138 views
Equation does NOT go new lines, while using \newline
I've been trying to typset an equation which, at a certain point, spans several lines, but is a single step (so no numbering may occur). For this I used newline, but this doesn't seem to work. How do ...
1
vote
1answer
67 views
Linebreaking gather (equation) environment?
Please help me to line break this gather environment. You can clearly see which line I want broken by where I've placed the split environment in my code. It's too long for 1 line.
I also want it ...
2
votes
1answer
331 views
New line in a math block [duplicate]
Possible Duplicate:
Linebreak in equations
I am very new to latex, its been a super frustrating I spend almost close to two hours on getting a new line inside the math block
\[{P(g(X) \neq ...
6
votes
1answer
936 views
line break inside cases environment
I have an equation using a cases environment, with one case with a long description text:
\begin{eqnarray*}
\begin{cases}
1 \text{too long description of the first case,
not ...
3
votes
2answers
2k views
Theorem environment - line break after label [duplicate]
Possible Duplicate:
ntheorem environment with indentation
Skipping line after “Proof” in proof environment
\begin{theorem}[label]
The theorem text.
\end{theorem}
I want to ...
2
votes
1answer
177 views
Unwanted line breaks after equation tag when using fleqn and leqno
When you use fleqn and leqno and assign your own equations tags with \tag to equations in environments such as gather and align and you assign a tag with a certain length, then there's a line break ...
2
votes
1answer
6k views
New line in math mode and indent this line
How can I have a indented new line in math mode?
The line after \newindentedline should be indented and start in a new line.
\[
X \subset Y \Rightarrow \forall x \in X: x \in Y \newindentedline
...
9
votes
3answers
875 views
Force line break inside a \lim argument in align environment
Inside an align environment I have a \lim with two variables which should be displayed in two lines:
\begin{align}
...
f & = \lim _ {a \rightarrow -\infty \linebreak b \rightarrow \infty} ... \\
...
20
votes
5answers
4k views
How can I write multiple lines in a subscript?
Is there a way to force a line break inside a math mode text?
My example:
\[
\underbrace{....}_\text{Some long text that should be multiline}
\]
Trying
\text{Some long text that\\ should be ...
9
votes
1answer
1k views
Does amsmath provide any medium to auto-break equations?
I'm writing large equations in texlive with amsmath, and I want them to be automatically broken at the end of the line. Is there any way to do that with amsmath?
What would you recommend me to do ...