Alignment of different align environmentaligning a multiline formula with the bullet of itemizeAlign environment: second alignment “left-justified”?Left aligning equations without align characterAlignment within align environmentAlignment in align environmentMultiple alignment in align environmentDifferent alignment of separate align environmentsProblem with horizontal alignment in align environmentSome alignment issues in the align environmentHow do I reduce spacing between 2 segments of a line in a multiple alignment environment?
Get file name and directory in .vimrc file
Have there ever been other TV shows or Films that told a similiar story to the new 90210 show?
Eric Andre had a dream
Build a mob of suspiciously happy lenny faces ( ͡° ͜ʖ ͡°)
Combinatorial Argument for Exponential and Logarithmic Function Being Inverse
How to prevent criminal gangs from making/buying guns?
Does knowing that the exponent is in a certain range help solving discrete log?
How should you gracefully leave a company you helped start?
Why does this image of cyclocarbon look like a nonagon?
Is this bar slide trick shown on Cheers real or a visual effect?
Vegetarian dishes on Russian trains (European part)
What should I do if actually I found a serious flaw in someone's PhD thesis and an article derived from that PhD thesis?
When and which board game was the first to be ever invented?
Ending a line of dialogue with "?!": Allowed or obnoxious?
Output with the same length always
Output the list of musical notes
My new Acer Aspire 7 doesn't have a Legacy Boot option, what can I do to get it?
Quick destruction of a helium filled airship?
Are unaudited server logs admissible in a court of law?
Regression when x and y each have uncertainties
Gofer work in exchange for LoR
Why was ramjet fuel used as hydraulic fluid during Saturn V checkout?
Why don't modern jet engines use forced exhaust mixing?
What was the intention with the Commodore 128?
Alignment of different align environment
aligning a multiline formula with the bullet of itemizeAlign environment: second alignment “left-justified”?Left aligning equations without align characterAlignment within align environmentAlignment in align environmentMultiple alignment in align environmentDifferent alignment of separate align environmentsProblem with horizontal alignment in align environmentSome alignment issues in the align environmentHow do I reduce spacing between 2 segments of a line in a multiple alignment environment?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have an issue when I try to align different "align" environments.
This is my Latex code :
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
endalign*
subsection*Degree 2
beginalign*
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 3
beginalign*
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 4
beginalign*
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 5
beginalign*
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
And this is the output :
As you can see, equations are not well aligned.
I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)
vertical-alignment align
add a comment |
I have an issue when I try to align different "align" environments.
This is my Latex code :
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
endalign*
subsection*Degree 2
beginalign*
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 3
beginalign*
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 4
beginalign*
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 5
beginalign*
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
And this is the output :
As you can see, equations are not well aligned.
I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)
vertical-alignment align
add a comment |
I have an issue when I try to align different "align" environments.
This is my Latex code :
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
endalign*
subsection*Degree 2
beginalign*
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 3
beginalign*
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 4
beginalign*
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 5
beginalign*
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
And this is the output :
As you can see, equations are not well aligned.
I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)
vertical-alignment align
I have an issue when I try to align different "align" environments.
This is my Latex code :
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
endalign*
subsection*Degree 2
beginalign*
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 3
beginalign*
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 4
beginalign*
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
subsection*Degree 5
beginalign*
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
And this is the output :
As you can see, equations are not well aligned.
I want to align their left side on the same line but by keeping them in the middle of the page (is this clear ?)
vertical-alignment align
vertical-alignment align
edited 33 mins ago
Andrew Janke
1033 bronze badges
1033 bronze badges
asked 12 hours ago
graillegraille
1454 bronze badges
1454 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
With intertext
:
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
%
intertextsubsection*Degree 2
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 3
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 4
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 5
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
Precisely what I was looking for, thanks
– graille
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typingDegree
and to avoid manual numbering.
– leandriis
12 hours ago
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "85"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f504574%2falignment-of-different-align-environment%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
With intertext
:
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
%
intertextsubsection*Degree 2
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 3
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 4
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 5
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
Precisely what I was looking for, thanks
– graille
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typingDegree
and to avoid manual numbering.
– leandriis
12 hours ago
add a comment |
With intertext
:
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
%
intertextsubsection*Degree 2
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 3
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 4
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 5
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
Precisely what I was looking for, thanks
– graille
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typingDegree
and to avoid manual numbering.
– leandriis
12 hours ago
add a comment |
With intertext
:
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
%
intertextsubsection*Degree 2
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 3
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 4
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 5
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
With intertext
:
documentclass[10pt, a4paper]article
usepackage[english]babel
usepackage[english]isodate
usepackage[T1]fontenc
usepackage[hidelinks]hyperref
usepackage[utf8]inputenc
usepackagemathtools
usepackageamsmath
usepackageamssymb
begindocument
sectionExample
subsection*Degree 1
beginalign*
C_1' & = C_1 \
C_0' & = a_k + C_0
%
intertextsubsection*Degree 2
C_2' & = C_2 \
C_1' & = 2 C_2 a_k + C_1 \
C_0' & = C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 3
C_3' & = C_3 \
C_2' & = 3 C_3 a_k + C_2 \
C_1' & = 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 4
C_4' & = C_4 \
C_3' & = 4 C_4 a_k + C_3 \
C_2' & = 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
%
intertextsubsection*Degree 5
C_5' & = C_5 \
C_4' & = 5 C_5 a_k + C_4 \
C_3' & = 10 C_5 a_k^2 + 4 C_4 a_k + C_3 \
C_2' & = 10 C_5 a_k^3 + 6 C_4 a_k^2 + 3 C_3 a_k + C_2 \
C_1' & = 5 C_5 a_k^4 + 4 C_4 a_k^3 + 3 C_3 a_k^2 + 2 C_2 a_k + C_1 \
C_0' & = C_5 a_k^5 + C_4 a_k^4 + C_3 a_k^3 + C_2 a_k^2 + C_1 a_k + C_0
endalign*
enddocument
answered 12 hours ago
leandriisleandriis
18.1k1 gold badge11 silver badges37 bronze badges
18.1k1 gold badge11 silver badges37 bronze badges
Precisely what I was looking for, thanks
– graille
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typingDegree
and to avoid manual numbering.
– leandriis
12 hours ago
add a comment |
Precisely what I was looking for, thanks
– graille
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typingDegree
and to avoid manual numbering.
– leandriis
12 hours ago
Precisely what I was looking for, thanks
– graille
12 hours ago
Precisely what I was looking for, thanks
– graille
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing
Degree
and to avoid manual numbering.– leandriis
12 hours ago
@graille: You're welcome. If you want to, you could also define your own command ro avoid cepeatedly typing
Degree
and to avoid manual numbering.– leandriis
12 hours ago
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f504574%2falignment-of-different-align-environment%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown