Tagged Questions
4
votes
2answers
48 views
Left align equation description
I have a short description for each of my equations. I want to have them flushleft (similar to the equation numbers which are flushright). How can I do that?
Here is a MWE:
\documentclass{article}
...
2
votes
1answer
24 views
Using the flush left align environment flalign
When using the flalign, I either get LHS and the = on te far left and the RHS on the far right.
\begin{flalign}
x & = & 1
\end{flalign}
Or I the equation centers itself when I try
...
2
votes
2answers
54 views
How can I align array elements to the left in an equation?
I have an equation that goes as follows:
\left\{ {\begin{array}{*{20}{c}}
{u{'_0} = {u_0} + u_1^Tt + {\textstyle{1 \over 2}}{t^T}{U_2}t}\\
{u{'_1} = {u_1} + {U_2}t}\\
{U{'_2} = {U_2}}
\end{array}} ...
3
votes
1answer
64 views
Multiline equation with cases
I am trying to get a system of equations, that will have cases only on some of the equations. I made this:
\documentclass[a4paper]{article}
\usepackage{amsmath}
\usepackage{mathtools}
...
2
votes
1answer
68 views
How to left align an equation, with a brace as left delimiter? [duplicate]
This is my code:
\begin{document}
$$
\sigma(s,i) = \left\{
\begin{array}{ll}
\tau_{si} & \mbox{si } \{s,i\} \in E \\
\infty & \mbox{sinon.}
\end{array}
\right.
$$
\end{document}
I ...
5
votes
3answers
69 views
Putting a header above the cases in an equation
This question is best illustrated by an example. Consider the following code
Further we can show that
\begin{equation*}
P_{v}(T) =
...
6
votes
3answers
106 views
How to align 'parts' of these equations?
I have a set of equations given by the following code:
\begin{equation}
\label{eqn:eraserStart}
\max \, d
\end{equation}
\begin{equation}
a_t \in \{0,1\} \, \forall t \in T
\end{equation}
...
5
votes
1answer
53 views
Edit space for overbraces in equation
I would like to use \overbraces and \underbraces in my equation. However, when I make the text for \overbraces too long, the \overbrace doesn't contain the correct part.
...
13
votes
5answers
282 views
Typesetting math: an optimisation problem (cost & constraints)
I really struggle to align a system of equation for an optimisation problem. It was all ok at the beginning until I started adding the constraint.
I've got this code so far:
\documentclass{article}
...
5
votes
1answer
108 views
`\hfill`-like spacing in math mode without using `align`
In question 83509, a way of getting \hfill-like behaviour in the align environment is described, but for my purposes, I need one that works in the equation environment. (I want to display some ...
3
votes
1answer
66 views
Center displayed, boxed equation within environment
I would like to center, with respect to the page margins, a displayed equation that is boxed and is within either an enumerate or itemize environment. Below is an example of what I have. Notice that ...
5
votes
3answers
94 views
Left-align math with fleqn inside split environment
Below, how would I move the first math-line left so that a^2 left-aligns with where?
\documentclass{article}
\usepackage[fleqn]{amsmath}
\begin{document}
\setlength{\parindent}{0pt}
Some text
...
1
vote
1answer
1k views
How to left-align using eqnarray in latex
Now, first of all let me get something clear: I do not ask for any reasons why align is btter than eqnarray. All I ask is a simple way to make this work, using eqnarray (It's obviously possible, but ...
3
votes
1answer
65 views
Aligning parts of equations
So this is a continuation of my previous question but I didn't know if I should edit that post and ask a new question or just post a new question entirely. Anyway, I have this bit of latex:
...
3
votes
1answer
47 views
Does align environment (or an alternative) have an option to choose left, center or right alignment?
I have quite a long set of equations, written in an array environment, but I can't seem to get it to split so that it is spread over multiple pages. I could use the align environment, but I can't seem ...
3
votes
2answers
189 views
Align multiline equation with expression after equal sign
I am trying to align a multiline equation using array within the equation but it turns out it doesn't do very well. The code I am using is as follows:
\begin{equation}\
\begin{array}{lcl}
...
1
vote
3answers
190 views
Questions on basic LaTeX typesetting in mathematics
I have one or two elementary questions on basic LaTeX typesetting:
I know putting $$...$$ sign puts the mathematical expression in the middle (center), but what if I also want to center the ...
1
vote
2answers
78 views
Formatting of an array of equations (left alignment)
I have the following text in a matrix environment. Is there a better way to format it, say with each column being left ordered, and how can this be done?
$$
\begin{matrix}
\Gamma^{i}_{\mbox{ ...
1
vote
2answers
98 views
Equation number not on the extreme right?
I am trying to number the equation in my thesis. All of the equation numbers are being displayed correctly on the extreme right (of the text area). However, in one equation, I am facing a little ...
8
votes
1answer
154 views
One-line equation with two columns
I try to write an equation with two similar formulas, i.e.
\begin{equation}
\qquad A_1 = B + C \qquad A_2 = D + E \qquad
\end{equation}
Of course, instead of \qquads I want to use something like ...
3
votes
1answer
65 views
Alignment spacing for negatives - Why am I unable to properly align my equations?
Although I searched the Web and indeed found an answer here, I still seem unable to address my issue of aligning two rows in my step-by-step process for solving a very basic equation. Just in case it ...
2
votes
0answers
39 views
How to left-align particular equations using own environment?
I'm trying to left align particular equations. To do that I created a new environment (because I need it a few times).
Now, I found that there are various options to do that:
using the fleqn option ...
1
vote
2answers
107 views
How to display formulas?
I am using the following format for all
\begin{math}
newP = p + vt + 0.5a(t square)
\end{math}
How do I
from left justified to centrally justified
leave one blank line before and after the ...
0
votes
1answer
83 views
LaTeX commands for centering the equations without numbering them [duplicate]
What LaTeX commands should I use to center the equations on the page, but without numbering them?
10
votes
1answer
122 views
Is this a known issue with the centering of eqnarray?
In this example,
\documentclass{article}
\begin{document}
\begin{eqnarray*}
A&=&B,\\
C&=&D,\\
E&=&F,
\end{eqnarray*}
\begin{eqnarray*}
A&=&\mathord{B,}\\
...
1
vote
1answer
71 views
Alignment for equations with numbering in enumeration environment and in environment of cases
I have problem of alignment in the following, please check and suggest solution:
\begin{enumerate}
\item
\begin{equation}
\kappa_{a,b}(t)=\begin{cases}
e^{at}, & 0\leq ...
1
vote
0answers
39 views
Alternating equation numbers [duplicate]
Possible Duplicate:
Equation numbers in outer margins
Is there a way to put equation numbers to the outer edge of a two-sided document? Some kind of mixture of leqno and reqno which puts ...
5
votes
2answers
302 views
Alignment of chemical equations
I would like to align some chemical reactions in my document.
This is an example of what I did:
\begin{equation}
\nuclide[14][7]{N} + n \to \nuclide[14][6]{C} + p
\end{equation}
<Some text>
...
3
votes
1answer
88 views
Centering \vdots in a system of many equations and aligning the equations to the opening brace
I have a problem similar to this question.
I want to typeset k equations with the horizontal \dots and the \vdots aligned. The problem is that I want the equations to be aligned to the opening brace.
...
3
votes
1answer
160 views
Aligning equations with using fleqn
I use fleqn as a document class, but now I solve problem, how to align few equations to the center and few to the right.
I've tried \setlength{\mathindent}{1cm} but after that is the problem that I ...
8
votes
5answers
186 views
centering a part of an equation
I am using \vdots in my equation, and I need it to be centered. As shown in the figure it is automatically left indented. I am not able to bring the dots to the center. I am providing MWE also.
...
6
votes
1answer
99 views
How to keep the alignment of equation array on a new page?
I have a very long equations inside
\begin{eqnarray}
long equation go over 2 pages...
\end{eqnarray}
I can't break into two by
\begin{eqnarray}
1/n of long
\end{eqnarray}
...
8
votes
4answers
258 views
Align denominator of fraction to left
The highlighted part has the equation centred, which looks rather imbalance with the top equation, is it possible to align the highlighted part to the left?
Below is the code I am using.
...
2
votes
2answers
218 views
How to align equations in the equation environment?
I have been looking on how to align equations and I have seen numerous examples with \align and \flalign, however whenever I try to use these in the equation environment, I get an error. I would like ...
5
votes
2answers
164 views
Alignment problem with large subscript in sum
This MWE exhibits the problem I have:
\documentclass{article}
\usepackage{amsmath}
\usepackage{mathtools}
\begin{document}
This is a really long line of text to show where the margins of the page ...
2
votes
1answer
58 views
How to make tex appear in the middle of a line in Lyx?
When I write, for example, in Math.SE and I want some equation to appear in the middle of the line I just use
$$
instead of just one dollar sign.
How can I do something similir in Lyx ? doing ...
5
votes
3answers
146 views
How to keep table and equations to the left side?
\documentclass[12pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\begin{document}
First find how many days between July 22 and Nov 4
...
4
votes
1answer
180 views
How can I align equations to the left?
I looked up a template to put my homework in a nice formatting, but I can't get it to look the way I want. More specifically, I want to:
Align to the middle whatever is after: \hspace{1in} .... (I ...
4
votes
1answer
165 views
nested equations numbering
Is there a way of playing with align, alignat, numcases etc environments that produces aligned and numbered equations which look like this :
Blahblah text before equations :
A = B \iff C = D ...
2
votes
1answer
482 views
Latex, left indent numcases
I have this simple equation (representation a dynamic programming recursion):
\begin{numcases}
{Opt\left(P, i, \ell \right)=min }
\nonumber (1)\hspace{0.5 mm} Opt(P,i+1,\ell) + ...
4
votes
1answer
159 views
Moving display mode to the left [duplicate]
Possible Duplicate:
Left align (to the page) displayed math
I have a document in which I want to use display mode, but want the expressions left-aligned instead of centered. So far, I've ...
0
votes
2answers
363 views
Put formulas on the left position in LateX [duplicate]
Possible Duplicate:
Left align (to the page) displayed math
As you know the following equation will be in the center:
$$
\sum_{\substack{a\leq1/2\\0<b\leq T}}\frac{2+a}{2|b|}
$$
And ...
4
votes
2answers
325 views
Long equation with left and right justified
Good day to all,
I have below equation, the first equation exceeds my margin if written in one line. So I want it appear in two lines which the first line is justified at the left side and the ...
3
votes
1answer
473 views
Wrapping text around a displayed equation
I have something like the following in a tex document:
some text ...
\[ T_y = \left\{ \begin{array}{ll}
x + \alpha & \mbox{if $\alpha = \beta$}\\
x^2 + \beta & ...
4
votes
2answers
595 views
left aligning the conditional statement inside an array
I have equations of the form
a = b + d for i <= 4, j < 3
= c for i = 5
= d - e + u for i > 5
I am writing them using the following code in latex:
\begin{equation}
a = ...
4
votes
1answer
155 views
Mixed Grouping in Subequations
I am looking to create a subequation environment with three equations. However, I want to group the 2nd and 3rd equations with a brace on the left side. I tried this (using the empheq package):
...
1
vote
3answers
149 views
How to properly align an equation [duplicate]
Possible Duplicate:
Multiline equation with LHS alone on first line?
I want to put down an equation of the form A=B. Both expressions A and B are long. What I'd like is for A to be ...
6
votes
3answers
634 views
Left-aligned text inside an equation
Inside an equation-like environment, I'd like to have some text that is aligned to the left margin of the text block, something like \intertext, but in the same line as the equation
Something like ...
7
votes
4answers
2k views
How to align a system of multiline equations?
I've got a system of equations, each of them doesn't fit the page width, so I'm searching the way to align them so that:
the brace should appear to the left with no indentation
the first line of ...
11
votes
3answers
316 views
How do I obtain multline-type alignment within a group of equations?
I want to achieve something like the following (for now achieved using Microsoft Paint):
That is, I want to group a number of multi-line equations within a single equation-type environment (i.e. ...


