Multi align equation rightRight Align Equation Number with hfill in Custom EnvironmentHow to align right...
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
Why does nature favour the Laplacian?
Help, my Death Star suffers from Kessler syndrome!
Can solid acids and bases have pH values? If not, how are they classified as acids or bases?
Subtleties of choosing the sequence of tenses in Russian
Is thermodynamics only applicable to systems in equilibrium?
Why the difference in metal between 銀行 and お金?
A non-technological, repeating, visible object in the sky, holding its position in the sky for hours
Unexpected email from Yorkshire Bank
Can fracking help reduce CO2?
Python "triplet" dictionary?
Will tsunami waves travel forever if there was no land?
Transfer over $10k
Stateful vs non-stateful app
What's the polite way to say "I need to urinate"?
How to delegate to implementing class
Is it a satellite or aircraft?
Why was Germany not as successful as other Europeans in establishing overseas colonies?
How can I record the screen and the rear camera on an iPhone simultaneously?
What are the spoon bit of a spoon and fork bit of a fork called?
What is the difference between `a[bc]d` (brackets) and `a{b,c}d` (braces)?
Feels like I am getting dragged in office politics
Sci-fi novel series with instant travel between planets through gates. A river runs through the gates
How to back up a running remote server?
Multi align equation right
Right Align Equation Number with hfill in Custom EnvironmentHow to align right within equation arrayWrite a multi-line equation with unmatched left( and right)Left aligning equations without align characterright bind when using alignSecond align within first align environment with equation numbersmulti-column row in align environmentRight align a line in align-environmentAlign multi lines equationsHow to right align an equation?
I am trying to obtain the following alignment for my three equation

The best I have been able to do is the following
documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}
begin{document}
maketitle
begin{align*}
r(theta) & = & (x_0 + a cos x) i & + & (y_0 + a sin x) j & \
r'(theta) & = & - a sin x i & + & (a cos x) j & \
F(r(theta)) & = & 0 i & + & (x_0 + a sin x) j &
end{align*}
end{document}
However this leaves huge whitespaces in the equation.
horizontal-alignment align
add a comment |
I am trying to obtain the following alignment for my three equation

The best I have been able to do is the following
documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}
begin{document}
maketitle
begin{align*}
r(theta) & = & (x_0 + a cos x) i & + & (y_0 + a sin x) j & \
r'(theta) & = & - a sin x i & + & (a cos x) j & \
F(r(theta)) & = & 0 i & + & (x_0 + a sin x) j &
end{align*}
end{document}
However this leaves huge whitespaces in the equation.
horizontal-alignment align
add a comment |
I am trying to obtain the following alignment for my three equation

The best I have been able to do is the following
documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}
begin{document}
maketitle
begin{align*}
r(theta) & = & (x_0 + a cos x) i & + & (y_0 + a sin x) j & \
r'(theta) & = & - a sin x i & + & (a cos x) j & \
F(r(theta)) & = & 0 i & + & (x_0 + a sin x) j &
end{align*}
end{document}
However this leaves huge whitespaces in the equation.
horizontal-alignment align
I am trying to obtain the following alignment for my three equation

The best I have been able to do is the following
documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}
begin{document}
maketitle
begin{align*}
r(theta) & = & (x_0 + a cos x) i & + & (y_0 + a sin x) j & \
r'(theta) & = & - a sin x i & + & (a cos x) j & \
F(r(theta)) & = & 0 i & + & (x_0 + a sin x) j &
end{align*}
end{document}
However this leaves huge whitespaces in the equation.
horizontal-alignment align
horizontal-alignment align
asked 31 mins ago
N3buchadnezzarN3buchadnezzar
4,02544189
4,02544189
add a comment |
add a comment |
1 Answer
1
active
oldest
votes

documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}% really? that is very 20th century, why not utf8?
begin{document}
begin{alignat*}{3}
r(theta) ={}&& (x_0 + a cos x) i + {}&& (y_0 + a sin x) j \
r'(theta) ={}&& - a sin x i + {}&& (a cos x) j \
F(r(theta)) ={}&& 0 i + {}&& (x_0 + a sin x) j
end{alignat*}
end{document}
alignat is a variant of align that avoids adding extra space. You need && so you only use the right aligned columns not the left aligned, and then you need {} after the = and + to preserve the correct spacing as they are before the & not after.
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%2f488153%2fmulti-align-equation-right%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

documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}% really? that is very 20th century, why not utf8?
begin{document}
begin{alignat*}{3}
r(theta) ={}&& (x_0 + a cos x) i + {}&& (y_0 + a sin x) j \
r'(theta) ={}&& - a sin x i + {}&& (a cos x) j \
F(r(theta)) ={}&& 0 i + {}&& (x_0 + a sin x) j
end{alignat*}
end{document}
alignat is a variant of align that avoids adding extra space. You need && so you only use the right aligned columns not the left aligned, and then you need {} after the = and + to preserve the correct spacing as they are before the & not after.
add a comment |

documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}% really? that is very 20th century, why not utf8?
begin{document}
begin{alignat*}{3}
r(theta) ={}&& (x_0 + a cos x) i + {}&& (y_0 + a sin x) j \
r'(theta) ={}&& - a sin x i + {}&& (a cos x) j \
F(r(theta)) ={}&& 0 i + {}&& (x_0 + a sin x) j
end{alignat*}
end{document}
alignat is a variant of align that avoids adding extra space. You need && so you only use the right aligned columns not the left aligned, and then you need {} after the = and + to preserve the correct spacing as they are before the & not after.
add a comment |

documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}% really? that is very 20th century, why not utf8?
begin{document}
begin{alignat*}{3}
r(theta) ={}&& (x_0 + a cos x) i + {}&& (y_0 + a sin x) j \
r'(theta) ={}&& - a sin x i + {}&& (a cos x) j \
F(r(theta)) ={}&& 0 i + {}&& (x_0 + a sin x) j
end{alignat*}
end{document}
alignat is a variant of align that avoids adding extra space. You need && so you only use the right aligned columns not the left aligned, and then you need {} after the = and + to preserve the correct spacing as they are before the & not after.

documentclass[12pt]{article}
usepackage{amsmath}
usepackage{graphicx}
usepackage{hyperref}
usepackage[latin1]{inputenc}% really? that is very 20th century, why not utf8?
begin{document}
begin{alignat*}{3}
r(theta) ={}&& (x_0 + a cos x) i + {}&& (y_0 + a sin x) j \
r'(theta) ={}&& - a sin x i + {}&& (a cos x) j \
F(r(theta)) ={}&& 0 i + {}&& (x_0 + a sin x) j
end{alignat*}
end{document}
alignat is a variant of align that avoids adding extra space. You need && so you only use the right aligned columns not the left aligned, and then you need {} after the = and + to preserve the correct spacing as they are before the & not after.
answered 25 mins ago
David CarlisleDavid Carlisle
502k4211491897
502k4211491897
add a comment |
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%2f488153%2fmulti-align-equation-right%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