8
votes
2answers
48 views

Horizontal alignment across nested aligned

Is there a way to left align the first 2 rows with the last one? \documentclass{article} \usepackage{amsmath} \begin{equation*} \left\{{\begin{aligned} &\left.{\begin{aligned} &A+B=X\\ ...
6
votes
3answers
101 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} ...
0
votes
0answers
28 views

Codes running smoothly when run separately but generates error on running together [closed]

I have two chunks of code running both of them individually gives no error but when i run them together in a single tex file i get errors as mentioned below \begin{longtable}{l c} \caption{Basic ...
2
votes
1answer
61 views

TikZ object misaligned with main document: slightly shifted to the right

The TikZ picture is not aligned with the main content of the document. It slightly shifts to the right. Notice how the words go outside the frame on the right side. Any hints on how to correct this ...
5
votes
3answers
73 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 ...
4
votes
2answers
135 views

How to create a beautifully aligned solution for exercises?

Basically, I'm writing solution for the exercises on the textbook. And I want something like this: As you can see, sub-problems are aligned after the problem number and the formulas are aligned ...
2
votes
1answer
41 views

Fixing alignment with the rest of the text

The image included above is what I want to replicate - I want the name to appear on the top left, and the address/email-id to appear on the top right, and I want both of them to be aligned with the ...
1
vote
1answer
37 views

Aligning brackets [duplicate]

Hi is there anyway to get the two left [ brackets on the first and second lines to align? \begin{align} &\quad[v^{*}a^{-} +va^{\dagger}_{-k}]e^{+ik_{z}\centerdot z}=[u^{*}b^{-} ...
0
votes
1answer
39 views

Centering a group of equations and text both which is used in \begin{align*}…\end{align*}

Say I am trying to center a group of equations, written in separate lines, with equality sign aligned one below another, which are defined by: $f(r)+1=g(r^2)+1=O(r)$ as $r\to 1$ by first using the ...
3
votes
1answer
61 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
2answers
146 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} ...
5
votes
2answers
66 views

Title over align columns

Using the align environment I have two columns, one for derivation, and another for the rule that was used to create the derivation. However I'm pretty sure that there's a better way to do this? Here ...
1
vote
1answer
43 views

Create commands each of the text aligned horizontally?

I am using exam document class as my guide in creating my own documentclass but i have encountered a problem.How will i create a command for each of the four texts in a line. here is a sample image: ...
2
votes
1answer
128 views

Spacing in flalign affected by mathpazo

I got the following (partly shorted) equation: I would like to get rid of the space left of the equation (left of Q') so that the label (0.2) fits on the right side. \documentclass[ a4paper, ...
9
votes
2answers
122 views

Compute remaining horizontal space in align environment

I use align* often and sometimes it is preferable to add text to the right hand side of an equation instead of using \intertext, or \shortintertext, which tends to interrupt the math flow. This is ...
0
votes
0answers
19 views

How can I get vdots align horizontally in my equations? [duplicate]

I'm trying to make vertical dots align as in the following picture: But the best one I could get is this: Here is my LaTex code: \begin{align*} x_{t} &= \phi x_{t-1} + \epsilon_{t} = ...
6
votes
2answers
55 views

Alignment between material inside and outside a cases environment

In the code below, I'd like to make the i=0,\ldots,n. line up, in the output, with the cases in the first part of the definition. Ideally, the full-stop would align with the semicolons and comma. ...
3
votes
3answers
125 views

Problem with fraction and align environment - “&” symbol

I am new in LaTeX, thus I need your help. I want to align the \leq symbol under the + symbol. The problem is that the + symbol is contained inside a fraction, therefore, the ...
6
votes
1answer
132 views

Subequations inside align result in too wide equation

I want to create subequations and allign them such that nice 'inquality constraints' arise. My current code: \begin{subequations} \begin{align} a & \le b & \le c \label{eq:constr1}\\ d & ...
12
votes
4answers
304 views

How do I get this strange alignment?

I would like to get a nonstandard alignment in the following code: \begin{align} \text{First left hand side} & = \text{First right hand side} \\ \text{Second left hand side} & = ...
1
vote
0answers
62 views

How to left align any LaTeX code? [duplicate]

Possible Duplicate: How to move the whole block of {align*} to the left? How can I make this simple code to appear left aligned? \begin{align} \frac{cos2A}{1-sin2A}=cot(45^o-A) \end{align} ...
3
votes
2answers
142 views

Multilines aligned to describe a set notation

I'm trying to write a set notation in multiple lines, for example: This is my code to get it. \usepackage{amsmath} \begin{document} ... \begin{align*} Lookup &= \{\, \langle C, A.m, B.m ...
2
votes
1answer
157 views

Right flush text in math environment

In my align* environment I have a bunch of lined up equations, but I would like to put some explanations of the steps done to the right of the equations. Currently it looks bad: \begin{align*} ...
4
votes
3answers
165 views

Alignment in multiple locations of a single equation based on first line

I want to align a multi-line equation so that it basically looks like this: a = (b + c + d + e) f = g The requirements of this alignment are: The equal signs should be aligned. The beginning ...
6
votes
3answers
148 views

Specify alignment per column in align equation

Using the following mwe i have not yet found a way to align the formulas correctly. \documentclass{article} \usepackage{mathtools} % extends amsmath and fixes some of its quirks ...
4
votes
2answers
415 views

flalign* still maintaining indent - caused by \text{}?

The goal is to align all of the text that spans more than one line with the equal sign. It appears that if I use \usepackage{amsmath} in my preamble and then use align* it will align with the ...
6
votes
2answers
154 views

Center a column in align

I have the following type of code in my document: \begin{align*} (-m)+m & \stackrel{\mathrm{Ax 1.1 (i)}}{=} m+(-m)\\ &\stackrel{\mathrm{Ax 1.4}}{=} 0 \\ I want to align on the = ...
12
votes
1answer
160 views

Align to center

I want to align some equations to the equal signs, so I wrote this: \begin{align} -3z &=-9\\ z &= 3\\ -3y-3*3 &= 3\\ y &=-4\\ ...
1
vote
1answer
244 views

align with equal sign centered [duplicate]

Possible Duplicate: Align to center I want to align some equations to the equal signs, so I wrote this: \begin{align} -3z &= -9\\ z &= 3\\ ...
0
votes
2answers
171 views

Center Formula in self created environment

I use a environment called loesung which I created by myself. Now I have a formula in that environment, but I want to have that formulas centered. Not left aligned, here is my code: ...
8
votes
4answers
215 views

How to align five equations on three lines, e.g., 2-2-1, with the last equation centered?

I'm trying to use the alignat environment to arrange five equations on three lines as follows: two equations on the first line, two equations on the second line (aligned with those of the first ...
8
votes
1answer
157 views

How to force equation to be closer to the sum operator?

I would like to know if it is possible to force the equation to be closer to the operation sum? When there are a lot of subscript under the sum operator, it tends to pouch the equation to the right, ...
5
votes
1answer
85 views

Centering first line of an align environment (Simulating \multicolumn{2}{c})

I often need align environments where the first line is centered, e.g., when first introducing the types of the functions to be defined, then defining them. I essentially want to obtain the effect ...
4
votes
3answers
151 views

Aligning multiple binary operators

Objective I want to align the following: expr_a1 <= expr_a2 <= expr_a3 \\ expr_b2 <= expr_b2 <= expr_b3 \\ Now, I want the <= to be aligned with each other; the expr_*2 to be ...
9
votes
4answers
608 views

Left-aligning specific text in math-mode

I currently have via \documentclass{scrartcl} \KOMAoptions{ fontsize = 10pt , headings = normal , } \usepackage{amsmath} \usepackage{multicol} \usepackage{siunitx} \begin{document} ...
11
votes
2answers
262 views

Problems with alignment of sequences

I want to align two sequences: a_1, b_1, c_1, d_1, e_1 etc. a_2, b_2, c_2, d_2, e_2 etc. here's what I wrote \begin{align} \notag &a_1,\ &b_1,\ &c_1,\ &d_1,\ &e_1\ ...
8
votes
3answers
144 views

Multiple alignments

If I have a string of equations whose equal signs are aligned and one of the equations is too long and needs to span multiple lines, how do I create a second alignment. For instance, in the following ...
9
votes
2answers
446 views

Horizontal alignment within an equation using Tikz

I am trying to center horizontally the first terms of a system of equations inside the alignat environment. I don't know if Tikz is the right way to go, but as I might have to add some other ...
7
votes
3answers
216 views

Aligning different parts of an equation with certain spots in the line above

I am trying to get certain parts in the second line of an equation to line up with certain parts in the first line. For example, X=AAA+BBB+CCC = a + b + c where here I am wanting the lower-case ...
4
votes
1answer
537 views

Align environment: take exact control of tab position

I was wondering if it is possible to take control of the exact position of the tab in an align environment. Like so: \begin{align}[2cm] A &= x^3 + 14789\\ B &= f^6 \end{align} Which should then ...
2
votes
2answers
131 views

Can I not use the align & operator within a \frac?

This code is causing LaTeX to throw an error: Missing } inserted. It appears to be because I put a & inside a \frac command (on line 4). I feel as though it should be possible to accomplish my ...
9
votes
1answer
297 views

In align environment, put word at left margin and still align equations with &?

In an align environment, how can I put a word such as "Now" or "And" at the left margin and still align equations on that line and subsequent lines with &?
12
votes
4answers
411 views

Best Pattern For Adding Commentary in align Environment?

I've been using the align environment to line up equations in proofs/explanations/etc and I like to place parenthetical commentary for each step, similar to the code below: \documentclass{article} ...
5
votes
4answers
360 views

Resetting alignment in the align environment

I have a few aligned lists of coefficients. One set of coefficients has three columns and the other has four. At the moment I display them with two align environments: \begin{align} \gamma_1 ...
7
votes
3answers
754 views

How to align piecewise functions?

I have two piecewise functions defined like this: \begin{align*} \left\{ \begin{array}{ll} i = x^2 + y^2 \\ j = a^2 + b^2 \\ \end{array} \right. \\ \left\{ ...
1
vote
1answer
2k views

Left-align {align} environment

I have a problem writing my report in LaTeX. I dearly need this block of equations to be aligned on the left side of the page, in fact I want all my equations to be left-aligned and have the option of ...
9
votes
4answers
2k views

Aligning plain `align` and `cases`?

The cases environment works very well for enumerating cases within a large left bracket. I'd like to be able to combine it with the align environment so that equals-signs and conditions also line up: ...
6
votes
1answer
1k views

Emulate \hfill in LaTeX equations?

I have a set of equations, where each line consists of a formula and an explanation (info about indices). Now, let's say the structure looks like this: \newcommand{\lw}{\linewidth} \begin{align*} ...
2
votes
1answer
2k views

How can I use an align environment flush right?

Is there an option analogous within the align environment to the left align for right align, i.e. fralign. MWE: \documentclass{article} \usepackage[fleqn]{amsmath} % Instead have [freqn]. ...
6
votes
6answers
990 views

An enumeration of equations with aligned equal signs

I'd like to have something like the following: \begin{enumerate} \item $1 + 1 = 2$ \item $1 = 2 - 1$ \end{enumerate} The thing is, I'd also like the equals signs to be aligned. But I'd like the ...

1 2