How to continue a line in Latex in math mode?New line in math mode and indent this lineLeft aligning equations without align characterline break in math mode within longtable environmentams math environment, missing $ in equation modeHow continue a equation next lineSquare bracket math modeAlign equations within one linePOMA Template: Tex capacity exceeded with line in math modeFootnotes in math mode with referencesHow to avoid extra-space in latex math mode equations
Can I submit a paper under an alias so as to avoid trouble in my country?
Would it be illegal for Facebook to actively promote a political agenda?
How to generate vectors with programming
Land Registry Clause
Is there any road between the CA State Route 120 and Sherman Pass Road (Forest Route 22S0) that crosses Yosemite/Serria/Sequoia National Park/Forest?
Is it allowable to use an organization's name to publish a paper in a conference, even after I graduate from it?
How do you call it when two celestial bodies come as close to each other as they will in their current orbits?
Default camera device to show screen instead of physical camera
E: Sub-process /usr/bin/dpkg returned an error code (1) - but how do I find the meaningful error messages in APT's output?
Multicolumn in table not centered
Is there a commercial liquid with refractive index greater than n=2?
Nuclear decay triggers
What are the ramifications of this change to upcasting spells?
90s(?) book series about two people transported to a parallel medieval world, she joins city watch, he becomes wizard
How can I describe being temporarily stupid?
Why don't sharp and flat root note chords seem to be present in much guitar music?
Unity: transform.LookAt(target) not "looking at" target?
How could Tony Stark wield the Infinity Nano Gauntlet - at all?
Why don't politicians push for fossil fuel reduction by pointing out their scarcity?
Why do some academic journals requires a separate "summary" paragraph in addition to an abstract?
I think my ex-employer secretely kept me in their system as an employee
Label on a bended arrow
Convert HTML color to OLE
Does C++20 mandate source code being stored in files?
How to continue a line in Latex in math mode?
New line in math mode and indent this lineLeft aligning equations without align characterline break in math mode within longtable environmentams math environment, missing $ in equation modeHow continue a equation next lineSquare bracket math modeAlign equations within one linePOMA Template: Tex capacity exceeded with line in math modeFootnotes in math mode with referencesHow to avoid extra-space in latex math mode equations
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2),left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\,left(x^2-(2k+4)x+1right)
endmultline*
enddocument
I am trying to write this mathematical equation in Latex. But how to break such kind of equation such that it lies in the paragraph itself. In my case, it comes out of the margin in the page.
amsmath multline
add a comment |
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2),left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\,left(x^2-(2k+4)x+1right)
endmultline*
enddocument
I am trying to write this mathematical equation in Latex. But how to break such kind of equation such that it lies in the paragraph itself. In my case, it comes out of the margin in the page.
amsmath multline
add a comment |
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2),left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\,left(x^2-(2k+4)x+1right)
endmultline*
enddocument
I am trying to write this mathematical equation in Latex. But how to break such kind of equation such that it lies in the paragraph itself. In my case, it comes out of the margin in the page.
amsmath multline
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2),left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\,left(x^2-(2k+4)x+1right)
endmultline*
enddocument
I am trying to write this mathematical equation in Latex. But how to break such kind of equation such that it lies in the paragraph itself. In my case, it comes out of the margin in the page.
amsmath multline
amsmath multline
edited Aug 7 at 7:46
leandriis
18.4k1 gold badge11 silver badges38 bronze badges
18.4k1 gold badge11 silver badges38 bronze badges
asked Aug 7 at 7:41
J.DoeJ.Doe
2067 bronze badges
2067 bronze badges
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
Why not use a simple align*?
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackageshowframe
renewcommandShowFrameLinethickness0.3pt
begindocument
beginalign*
Psi(Gamma_k,x) =x(x-1)^(6k-2) & timesbigl(x^3-(3k+5) x^2+(2k^2+8k+7)x-(3+3k) bigr) \ & times bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1 bigr)
endalign*
enddocument

add a comment |
documentclass[a4paper, 12pt]article
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2)\
cdotleft(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)\
cdotleft(x^2-(k+3)x+2right)cdotleft(x^2-(2k+4)x+1right)
endmultline*
enddocument

add a comment |
I'm not a fan of multline so here is my take using MoveEqLeft from mathtools
The look is similar to Sebastianos answer, but does not use alignment on =
documentclass[a4paper, 12pt]article
%usepackageamsfonts % already loaded through amssymb
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackagemathtools
begindocument
beginalign*
MoveEqLeft Psi(Gamma_k,x)= x(x-1)^(6k-2)
\
×bigl(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)bigr)
\
×bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1bigr)
endalign*
enddocument
This is the type of alignment (when I'm not aligning on relations) that I use all the time in my edits. It comes from https://www.ams.org/publications/authors/mit-2.pdf, see section 3.3.4

add a comment |
If you want to break your formula into several lines in column, you can use the split environment. See this little example (first edit) with the very good suggestion of @Bernard user (see the first comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) & = x(x-1)^(6k-2)\
& phantom=cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& phantom=cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
EDIT 2: Here I have approved the suggestion of the very good user @dailef (see your comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) = & x(x-1)^(6k-2)\
& cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
1
Maybe it would look better with aphantom=?
– Bernard
Aug 7 at 12:02
2
Less typing if you use= &on the first line, and remove thephantomon line 2 and 3.
– daleif
Aug 7 at 12:20
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%2f503159%2fhow-to-continue-a-line-in-latex-in-math-mode%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Why not use a simple align*?
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackageshowframe
renewcommandShowFrameLinethickness0.3pt
begindocument
beginalign*
Psi(Gamma_k,x) =x(x-1)^(6k-2) & timesbigl(x^3-(3k+5) x^2+(2k^2+8k+7)x-(3+3k) bigr) \ & times bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1 bigr)
endalign*
enddocument

add a comment |
Why not use a simple align*?
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackageshowframe
renewcommandShowFrameLinethickness0.3pt
begindocument
beginalign*
Psi(Gamma_k,x) =x(x-1)^(6k-2) & timesbigl(x^3-(3k+5) x^2+(2k^2+8k+7)x-(3+3k) bigr) \ & times bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1 bigr)
endalign*
enddocument

add a comment |
Why not use a simple align*?
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackageshowframe
renewcommandShowFrameLinethickness0.3pt
begindocument
beginalign*
Psi(Gamma_k,x) =x(x-1)^(6k-2) & timesbigl(x^3-(3k+5) x^2+(2k^2+8k+7)x-(3+3k) bigr) \ & times bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1 bigr)
endalign*
enddocument

Why not use a simple align*?
documentclass[a4paper, 12pt]article
usepackageamsfonts
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackageshowframe
renewcommandShowFrameLinethickness0.3pt
begindocument
beginalign*
Psi(Gamma_k,x) =x(x-1)^(6k-2) & timesbigl(x^3-(3k+5) x^2+(2k^2+8k+7)x-(3+3k) bigr) \ & times bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1 bigr)
endalign*
enddocument

answered Aug 7 at 11:53
BernardBernard
188k7 gold badges85 silver badges223 bronze badges
188k7 gold badges85 silver badges223 bronze badges
add a comment |
add a comment |
documentclass[a4paper, 12pt]article
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2)\
cdotleft(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)\
cdotleft(x^2-(k+3)x+2right)cdotleft(x^2-(2k+4)x+1right)
endmultline*
enddocument

add a comment |
documentclass[a4paper, 12pt]article
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2)\
cdotleft(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)\
cdotleft(x^2-(k+3)x+2right)cdotleft(x^2-(2k+4)x+1right)
endmultline*
enddocument

add a comment |
documentclass[a4paper, 12pt]article
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2)\
cdotleft(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)\
cdotleft(x^2-(k+3)x+2right)cdotleft(x^2-(2k+4)x+1right)
endmultline*
enddocument

documentclass[a4paper, 12pt]article
usepackageamsmath
begindocument
beginmultline*
Psi(Gamma_k,x)= x,(x-1)^(6k-2)\
cdotleft(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)\
cdotleft(x^2-(k+3)x+2right)cdotleft(x^2-(2k+4)x+1right)
endmultline*
enddocument

answered Aug 7 at 8:00
user187802user187802
5,7181 gold badge2 silver badges17 bronze badges
5,7181 gold badge2 silver badges17 bronze badges
add a comment |
add a comment |
I'm not a fan of multline so here is my take using MoveEqLeft from mathtools
The look is similar to Sebastianos answer, but does not use alignment on =
documentclass[a4paper, 12pt]article
%usepackageamsfonts % already loaded through amssymb
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackagemathtools
begindocument
beginalign*
MoveEqLeft Psi(Gamma_k,x)= x(x-1)^(6k-2)
\
×bigl(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)bigr)
\
×bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1bigr)
endalign*
enddocument
This is the type of alignment (when I'm not aligning on relations) that I use all the time in my edits. It comes from https://www.ams.org/publications/authors/mit-2.pdf, see section 3.3.4

add a comment |
I'm not a fan of multline so here is my take using MoveEqLeft from mathtools
The look is similar to Sebastianos answer, but does not use alignment on =
documentclass[a4paper, 12pt]article
%usepackageamsfonts % already loaded through amssymb
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackagemathtools
begindocument
beginalign*
MoveEqLeft Psi(Gamma_k,x)= x(x-1)^(6k-2)
\
×bigl(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)bigr)
\
×bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1bigr)
endalign*
enddocument
This is the type of alignment (when I'm not aligning on relations) that I use all the time in my edits. It comes from https://www.ams.org/publications/authors/mit-2.pdf, see section 3.3.4

add a comment |
I'm not a fan of multline so here is my take using MoveEqLeft from mathtools
The look is similar to Sebastianos answer, but does not use alignment on =
documentclass[a4paper, 12pt]article
%usepackageamsfonts % already loaded through amssymb
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackagemathtools
begindocument
beginalign*
MoveEqLeft Psi(Gamma_k,x)= x(x-1)^(6k-2)
\
×bigl(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)bigr)
\
×bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1bigr)
endalign*
enddocument
This is the type of alignment (when I'm not aligning on relations) that I use all the time in my edits. It comes from https://www.ams.org/publications/authors/mit-2.pdf, see section 3.3.4

I'm not a fan of multline so here is my take using MoveEqLeft from mathtools
The look is similar to Sebastianos answer, but does not use alignment on =
documentclass[a4paper, 12pt]article
%usepackageamsfonts % already loaded through amssymb
%usepackageamsbsy
usepackageamssymb
usepackageamsmath
usepackagemathtools
begindocument
beginalign*
MoveEqLeft Psi(Gamma_k,x)= x(x-1)^(6k-2)
\
×bigl(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)bigr)
\
×bigl(x^2-(k+3)x+2bigr)bigl(x^2-(2k+4)x+1bigr)
endalign*
enddocument
This is the type of alignment (when I'm not aligning on relations) that I use all the time in my edits. It comes from https://www.ams.org/publications/authors/mit-2.pdf, see section 3.3.4

answered Aug 7 at 12:06
daleifdaleif
35.5k2 gold badges57 silver badges122 bronze badges
35.5k2 gold badges57 silver badges122 bronze badges
add a comment |
add a comment |
If you want to break your formula into several lines in column, you can use the split environment. See this little example (first edit) with the very good suggestion of @Bernard user (see the first comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) & = x(x-1)^(6k-2)\
& phantom=cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& phantom=cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
EDIT 2: Here I have approved the suggestion of the very good user @dailef (see your comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) = & x(x-1)^(6k-2)\
& cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
1
Maybe it would look better with aphantom=?
– Bernard
Aug 7 at 12:02
2
Less typing if you use= &on the first line, and remove thephantomon line 2 and 3.
– daleif
Aug 7 at 12:20
add a comment |
If you want to break your formula into several lines in column, you can use the split environment. See this little example (first edit) with the very good suggestion of @Bernard user (see the first comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) & = x(x-1)^(6k-2)\
& phantom=cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& phantom=cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
EDIT 2: Here I have approved the suggestion of the very good user @dailef (see your comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) = & x(x-1)^(6k-2)\
& cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
1
Maybe it would look better with aphantom=?
– Bernard
Aug 7 at 12:02
2
Less typing if you use= &on the first line, and remove thephantomon line 2 and 3.
– daleif
Aug 7 at 12:20
add a comment |
If you want to break your formula into several lines in column, you can use the split environment. See this little example (first edit) with the very good suggestion of @Bernard user (see the first comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) & = x(x-1)^(6k-2)\
& phantom=cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& phantom=cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
EDIT 2: Here I have approved the suggestion of the very good user @dailef (see your comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) = & x(x-1)^(6k-2)\
& cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
If you want to break your formula into several lines in column, you can use the split environment. See this little example (first edit) with the very good suggestion of @Bernard user (see the first comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) & = x(x-1)^(6k-2)\
& phantom=cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& phantom=cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
EDIT 2: Here I have approved the suggestion of the very good user @dailef (see your comment).

documentclass[a4paper,12pt]article
usepackageamsmath,amssymb
begindocument
beginequation*
beginsplit
Psi(Gamma_k,x) = & x(x-1)^(6k-2)\
& cdot left(x^3-(3k+5)x^2+(2k^2+8k+7)x-(3+3k)right)left(x^2-(k+3)x+2right)\
& cdot left(x^2-(2k+4)x+1right)
endsplit
endequation*
enddocument
edited Aug 7 at 12:26
answered Aug 7 at 11:30
SebastianoSebastiano
15.2k5 gold badges26 silver badges80 bronze badges
15.2k5 gold badges26 silver badges80 bronze badges
1
Maybe it would look better with aphantom=?
– Bernard
Aug 7 at 12:02
2
Less typing if you use= &on the first line, and remove thephantomon line 2 and 3.
– daleif
Aug 7 at 12:20
add a comment |
1
Maybe it would look better with aphantom=?
– Bernard
Aug 7 at 12:02
2
Less typing if you use= &on the first line, and remove thephantomon line 2 and 3.
– daleif
Aug 7 at 12:20
1
1
Maybe it would look better with a
phantom=?– Bernard
Aug 7 at 12:02
Maybe it would look better with a
phantom=?– Bernard
Aug 7 at 12:02
2
2
Less typing if you use
= & on the first line, and remove the phantom on line 2 and 3.– daleif
Aug 7 at 12:20
Less typing if you use
= & on the first line, and remove the phantom on line 2 and 3.– daleif
Aug 7 at 12:20
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%2f503159%2fhow-to-continue-a-line-in-latex-in-math-mode%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