How to shift subequations environment horizontally
up vote
3
down vote
favorite
How can I shift a subequations environment to the left? hspace*{} didn't work.
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
%hspace*{-2cm}
begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}
end{document}
amsmath subequations
add a comment |
up vote
3
down vote
favorite
How can I shift a subequations environment to the left? hspace*{} didn't work.
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
%hspace*{-2cm}
begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}
end{document}
amsmath subequations
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
How can I shift a subequations environment to the left? hspace*{} didn't work.
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
%hspace*{-2cm}
begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}
end{document}
amsmath subequations
How can I shift a subequations environment to the left? hspace*{} didn't work.
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
%hspace*{-2cm}
begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}
end{document}
amsmath subequations
amsmath subequations
asked yesterday
Pinton
353
353
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
Use the flalign environment:
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
usepackage{lipsum}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
lipsum[11]
begin{subequations}
%hspace*{-2cm}
begin{flalign}[left = empheqlbrace,]
a & = c + d, & \
b & = e + f,
end{flalign}
end{subequations}
lipsum
end{document}

add a comment |
up vote
3
down vote
You can place it inside a parbox command as wide as you wish (but at least as needed for the equations)
documentclass{article}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
Test text here:
parbox{0.14textwidth}{begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}}
end{document}
Output:

add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Use the flalign environment:
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
usepackage{lipsum}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
lipsum[11]
begin{subequations}
%hspace*{-2cm}
begin{flalign}[left = empheqlbrace,]
a & = c + d, & \
b & = e + f,
end{flalign}
end{subequations}
lipsum
end{document}

add a comment |
up vote
4
down vote
accepted
Use the flalign environment:
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
usepackage{lipsum}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
lipsum[11]
begin{subequations}
%hspace*{-2cm}
begin{flalign}[left = empheqlbrace,]
a & = c + d, & \
b & = e + f,
end{flalign}
end{subequations}
lipsum
end{document}

add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Use the flalign environment:
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
usepackage{lipsum}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
lipsum[11]
begin{subequations}
%hspace*{-2cm}
begin{flalign}[left = empheqlbrace,]
a & = c + d, & \
b & = e + f,
end{flalign}
end{subequations}
lipsum
end{document}

Use the flalign environment:
documentclass[journal]{IEEEtran}
usepackage{mathtools}
usepackage[overload]{empheq}
usepackage{lipsum}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
lipsum[11]
begin{subequations}
%hspace*{-2cm}
begin{flalign}[left = empheqlbrace,]
a & = c + d, & \
b & = e + f,
end{flalign}
end{subequations}
lipsum
end{document}

answered yesterday
Bernard
163k769192
163k769192
add a comment |
add a comment |
up vote
3
down vote
You can place it inside a parbox command as wide as you wish (but at least as needed for the equations)
documentclass{article}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
Test text here:
parbox{0.14textwidth}{begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}}
end{document}
Output:

add a comment |
up vote
3
down vote
You can place it inside a parbox command as wide as you wish (but at least as needed for the equations)
documentclass{article}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
Test text here:
parbox{0.14textwidth}{begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}}
end{document}
Output:

add a comment |
up vote
3
down vote
up vote
3
down vote
You can place it inside a parbox command as wide as you wish (but at least as needed for the equations)
documentclass{article}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
Test text here:
parbox{0.14textwidth}{begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}}
end{document}
Output:

You can place it inside a parbox command as wide as you wish (but at least as needed for the equations)
documentclass{article}
usepackage{mathtools}
usepackage[overload]{empheq}
begin{document}
title{...}
author{...}
maketitle
begin{abstract}...end{abstract}
Test text here:
parbox{0.14textwidth}{begin{subequations}
%hspace*{-2cm}
begin{align}[left = empheqlbrace,]
%hspace*{-2cm}
&a,\
&b,
end{align}
end{subequations}}
end{document}
Output:

answered yesterday
koleygr
11k11038
11k11038
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f463682%2fhow-to-shift-subequations-environment-horizontally%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