Align equations within one columnAlign Equations Over Multiple Tabular RowsAligned equations in tablesAdd extra space only between two specific columns of a tabular without adding extra columnsEquation align two column to one column with page widthtabu package - gaps in vertical linesWhat options are there to globally format tables also allowing local overrides?How do I align equations?Vertically align checkmark in table columnAlign equationsHow to align equations in two columns?Custom styling for printing glossary in document - textwidth for tabular style & print headersTop alignment using longtable and multicolumn
Let M and N be single-digit integers. If the product 2M5 x 13N is divisible by 36, how many ordered pairs (M,N) are possible?
Thread Pool C++ Implementation
What ways have you found to get edits from non-LaTeX users?
Determining fair price for profitable mobile app business
How come the nude protesters were not arrested?
Is it possible to fly backward if you have a 'really strong' headwind?
60s or 70s novel about Empire of Man making 1st contact with 1st discovered alien race
How can a dance-off be run in 5e as a combat encounter?
Moving points closer to polyline using ModelBuilder?
Are polynomials with the same roots identical?
How can I get an unreasonable manager to approve time off?
What is the maximum number of net attacks that one can make in a round?
Ability To Change Root User Password (Vulnerability?)
How do you say "homebrewer" in Spanish?
CSV how to trim values to 2 places in multiple columns using UNIX
How to hide an urban landmark?
Why does Sin[b-a] simplify to -Sin[a-b]?
Print lines between start & end pattern, but if end pattern does not exist, don't print
Is using 'echo' to display attacker-controlled data on the terminal dangerous?
Second (easy access) account in case my bank screws up
Is it expected that a reader will skip parts of what you write?
Electricity free spaceship
What is the color of artificial intelligence?
Is it possible to have 2 different but equal size real number sets that have the same mean and standard deviation?
Align equations within one column
Align Equations Over Multiple Tabular RowsAligned equations in tablesAdd extra space only between two specific columns of a tabular without adding extra columnsEquation align two column to one column with page widthtabu package - gaps in vertical linesWhat options are there to globally format tables also allowing local overrides?How do I align equations?Vertically align checkmark in table columnAlign equationsHow to align equations in two columns?Custom styling for printing glossary in document - textwidth for tabular style & print headersTop alignment using longtable and multicolumn
I have the following table in latex:
usepackagebooktabs
usepackageamsmath
%%%
begintable
begintabularl@hskip 4.8cm c
toprule
multicolumn1lConversion & multicolumn1cFormula \
midrule
RR to OR & $mboxOR = cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm]
d to OR & $mboxOR = exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd = cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd = cfrac1mboxJ left( mboxdf right) times mboxg $ \
bottomrule
endtabular
endtable
I would like to align the equations in the right column, but for some reason I just cannot figure out how to do it. I have found a few similar questions on stackexchange (e.g., here). Most of the solutions use beginaligned
and endaligned
. The problem with that is that I do not know where to place the aligned environment since I only need it for the right-hand column.
Thanks a million!
tables equations vertical-alignment
New contributor
add a comment |
I have the following table in latex:
usepackagebooktabs
usepackageamsmath
%%%
begintable
begintabularl@hskip 4.8cm c
toprule
multicolumn1lConversion & multicolumn1cFormula \
midrule
RR to OR & $mboxOR = cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm]
d to OR & $mboxOR = exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd = cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd = cfrac1mboxJ left( mboxdf right) times mboxg $ \
bottomrule
endtabular
endtable
I would like to align the equations in the right column, but for some reason I just cannot figure out how to do it. I have found a few similar questions on stackexchange (e.g., here). Most of the solutions use beginaligned
and endaligned
. The problem with that is that I do not know where to place the aligned environment since I only need it for the right-hand column.
Thanks a million!
tables equations vertical-alignment
New contributor
1
You could use a three column tabular and split up the equations at the = sign into a right and a left aligned column. The spacing between the columns can be adjusted using @width of your choice.
– leandriis
8 hours ago
1
Related and most likely interesting: tex.stackexchange.com/q/78788/134144
– leandriis
8 hours ago
add a comment |
I have the following table in latex:
usepackagebooktabs
usepackageamsmath
%%%
begintable
begintabularl@hskip 4.8cm c
toprule
multicolumn1lConversion & multicolumn1cFormula \
midrule
RR to OR & $mboxOR = cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm]
d to OR & $mboxOR = exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd = cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd = cfrac1mboxJ left( mboxdf right) times mboxg $ \
bottomrule
endtabular
endtable
I would like to align the equations in the right column, but for some reason I just cannot figure out how to do it. I have found a few similar questions on stackexchange (e.g., here). Most of the solutions use beginaligned
and endaligned
. The problem with that is that I do not know where to place the aligned environment since I only need it for the right-hand column.
Thanks a million!
tables equations vertical-alignment
New contributor
I have the following table in latex:
usepackagebooktabs
usepackageamsmath
%%%
begintable
begintabularl@hskip 4.8cm c
toprule
multicolumn1lConversion & multicolumn1cFormula \
midrule
RR to OR & $mboxOR = cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm]
d to OR & $mboxOR = exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd = cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd = cfrac1mboxJ left( mboxdf right) times mboxg $ \
bottomrule
endtabular
endtable
I would like to align the equations in the right column, but for some reason I just cannot figure out how to do it. I have found a few similar questions on stackexchange (e.g., here). Most of the solutions use beginaligned
and endaligned
. The problem with that is that I do not know where to place the aligned environment since I only need it for the right-hand column.
Thanks a million!
tables equations vertical-alignment
tables equations vertical-alignment
New contributor
New contributor
edited 7 hours ago
Matthias
New contributor
asked 8 hours ago
MatthiasMatthias
235
235
New contributor
New contributor
1
You could use a three column tabular and split up the equations at the = sign into a right and a left aligned column. The spacing between the columns can be adjusted using @width of your choice.
– leandriis
8 hours ago
1
Related and most likely interesting: tex.stackexchange.com/q/78788/134144
– leandriis
8 hours ago
add a comment |
1
You could use a three column tabular and split up the equations at the = sign into a right and a left aligned column. The spacing between the columns can be adjusted using @width of your choice.
– leandriis
8 hours ago
1
Related and most likely interesting: tex.stackexchange.com/q/78788/134144
– leandriis
8 hours ago
1
1
You could use a three column tabular and split up the equations at the = sign into a right and a left aligned column. The spacing between the columns can be adjusted using @width of your choice.
– leandriis
8 hours ago
You could use a three column tabular and split up the equations at the = sign into a right and a left aligned column. The spacing between the columns can be adjusted using @width of your choice.
– leandriis
8 hours ago
1
1
Related and most likely interesting: tex.stackexchange.com/q/78788/134144
– leandriis
8 hours ago
Related and most likely interesting: tex.stackexchange.com/q/78788/134144
– leandriis
8 hours ago
add a comment |
2 Answers
2
active
oldest
votes
Well, one possibility is to change second column c
to use three columns rcl
and divide your formula into three parts: left part of formula, =
, right part of formula.
Please see the following mwe
documentclassarticle
usepackageamsmath
usepackagebooktabs
begindocument
begintable
begintabularl@hskip 4.8cm rcl % <===============================
toprule
multicolumn1lConversion & multicolumn3cFormula \ % <=====
midrule
RR to OR & $mboxOR$ & = & $cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm] % <================================
d to OR & $mboxOR$ & = & $exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd$ & = & $cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd$ & = & $cfrac1mboxJ left( mboxdf right) times mboxg $ \
% ^^^^^^^^^^ <=======================================
bottomrule
endtabular
endtable
enddocument
and its result:
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
add a comment |
Unless you need a caption, you can obtain the desired layout without a table. Only alignedat
, and a shorter code with the spreadlines
environment from mathtools
:
documentclassarticle
usepackagemathtools
usepackagebooktabs
begindocument
beginspreadlines0.5cm
[%
beginalignedat2
toprule
enspace & textConversion & &phantom = hspace1.5emtextFormula \
midrule
& textRR to OR & hskip 4.8cmmboxOR & = cfrac1-mathrmp_textitnon-exposed 1-mathrmp_textitexposedenspace \
&textd to OR & mboxOR & = expbiggl(mathrmd cfracpisqrt3biggr) \
& textr to d & mboxd & = cfrac2mathrmrsqrt1-mathrmr^2 \
& textg to d & mboxd & = cfrac1mathrmJ left(df right) times mathrmg \
bottomrule
endalignedat
]%
endspreadlines
enddocument
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 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
);
);
Matthias is a new contributor. Be nice, and check out our Code of Conduct.
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%2f494536%2falign-equations-within-one-column%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Well, one possibility is to change second column c
to use three columns rcl
and divide your formula into three parts: left part of formula, =
, right part of formula.
Please see the following mwe
documentclassarticle
usepackageamsmath
usepackagebooktabs
begindocument
begintable
begintabularl@hskip 4.8cm rcl % <===============================
toprule
multicolumn1lConversion & multicolumn3cFormula \ % <=====
midrule
RR to OR & $mboxOR$ & = & $cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm] % <================================
d to OR & $mboxOR$ & = & $exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd$ & = & $cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd$ & = & $cfrac1mboxJ left( mboxdf right) times mboxg $ \
% ^^^^^^^^^^ <=======================================
bottomrule
endtabular
endtable
enddocument
and its result:
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
add a comment |
Well, one possibility is to change second column c
to use three columns rcl
and divide your formula into three parts: left part of formula, =
, right part of formula.
Please see the following mwe
documentclassarticle
usepackageamsmath
usepackagebooktabs
begindocument
begintable
begintabularl@hskip 4.8cm rcl % <===============================
toprule
multicolumn1lConversion & multicolumn3cFormula \ % <=====
midrule
RR to OR & $mboxOR$ & = & $cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm] % <================================
d to OR & $mboxOR$ & = & $exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd$ & = & $cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd$ & = & $cfrac1mboxJ left( mboxdf right) times mboxg $ \
% ^^^^^^^^^^ <=======================================
bottomrule
endtabular
endtable
enddocument
and its result:
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
add a comment |
Well, one possibility is to change second column c
to use three columns rcl
and divide your formula into three parts: left part of formula, =
, right part of formula.
Please see the following mwe
documentclassarticle
usepackageamsmath
usepackagebooktabs
begindocument
begintable
begintabularl@hskip 4.8cm rcl % <===============================
toprule
multicolumn1lConversion & multicolumn3cFormula \ % <=====
midrule
RR to OR & $mboxOR$ & = & $cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm] % <================================
d to OR & $mboxOR$ & = & $exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd$ & = & $cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd$ & = & $cfrac1mboxJ left( mboxdf right) times mboxg $ \
% ^^^^^^^^^^ <=======================================
bottomrule
endtabular
endtable
enddocument
and its result:
Well, one possibility is to change second column c
to use three columns rcl
and divide your formula into three parts: left part of formula, =
, right part of formula.
Please see the following mwe
documentclassarticle
usepackageamsmath
usepackagebooktabs
begindocument
begintable
begintabularl@hskip 4.8cm rcl % <===============================
toprule
multicolumn1lConversion & multicolumn3cFormula \ % <=====
midrule
RR to OR & $mboxOR$ & = & $cfrac1-mboxp_mboxtextitnon-exposed1-mboxp_mboxtextitexposed$ \ addlinespace[0.5cm] % <================================
d to OR & $mboxOR$ & = & $exp(mboxd cfracpisqrt3)$ \ addlinespace[0.5cm]
r to d & $mboxd$ & = & $cfrac2mboxrsqrt1-mboxr^2 $ \ addlinespace[0.5cm]
g to d & $mboxd$ & = & $cfrac1mboxJ left( mboxdf right) times mboxg $ \
% ^^^^^^^^^^ <=======================================
bottomrule
endtabular
endtable
enddocument
and its result:
answered 8 hours ago
KurtKurt
44.1k1050170
44.1k1050170
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
add a comment |
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
I do not agree that a user accepts a response leaving the user who responds to zero score :-). My compliments on your accurate code and comment.
– Sebastiano
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
Well, I didn't upvote Kurt's answer because my reputation was still too low (I am new to StackExchange Latex and you need at least 15 points)! Now that I have enough reputation (I got enough points with this question), I will upvote. So, thanks again Kurt :)
– Matthias
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
@MatthiasBurghart Don't worry, you suppose that you have upvote this answer :-). I also have voted for your good question. My most cordial greetings.
– Sebastiano
7 hours ago
add a comment |
Unless you need a caption, you can obtain the desired layout without a table. Only alignedat
, and a shorter code with the spreadlines
environment from mathtools
:
documentclassarticle
usepackagemathtools
usepackagebooktabs
begindocument
beginspreadlines0.5cm
[%
beginalignedat2
toprule
enspace & textConversion & &phantom = hspace1.5emtextFormula \
midrule
& textRR to OR & hskip 4.8cmmboxOR & = cfrac1-mathrmp_textitnon-exposed 1-mathrmp_textitexposedenspace \
&textd to OR & mboxOR & = expbiggl(mathrmd cfracpisqrt3biggr) \
& textr to d & mboxd & = cfrac2mathrmrsqrt1-mathrmr^2 \
& textg to d & mboxd & = cfrac1mathrmJ left(df right) times mathrmg \
bottomrule
endalignedat
]%
endspreadlines
enddocument
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 hours ago
add a comment |
Unless you need a caption, you can obtain the desired layout without a table. Only alignedat
, and a shorter code with the spreadlines
environment from mathtools
:
documentclassarticle
usepackagemathtools
usepackagebooktabs
begindocument
beginspreadlines0.5cm
[%
beginalignedat2
toprule
enspace & textConversion & &phantom = hspace1.5emtextFormula \
midrule
& textRR to OR & hskip 4.8cmmboxOR & = cfrac1-mathrmp_textitnon-exposed 1-mathrmp_textitexposedenspace \
&textd to OR & mboxOR & = expbiggl(mathrmd cfracpisqrt3biggr) \
& textr to d & mboxd & = cfrac2mathrmrsqrt1-mathrmr^2 \
& textg to d & mboxd & = cfrac1mathrmJ left(df right) times mathrmg \
bottomrule
endalignedat
]%
endspreadlines
enddocument
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 hours ago
add a comment |
Unless you need a caption, you can obtain the desired layout without a table. Only alignedat
, and a shorter code with the spreadlines
environment from mathtools
:
documentclassarticle
usepackagemathtools
usepackagebooktabs
begindocument
beginspreadlines0.5cm
[%
beginalignedat2
toprule
enspace & textConversion & &phantom = hspace1.5emtextFormula \
midrule
& textRR to OR & hskip 4.8cmmboxOR & = cfrac1-mathrmp_textitnon-exposed 1-mathrmp_textitexposedenspace \
&textd to OR & mboxOR & = expbiggl(mathrmd cfracpisqrt3biggr) \
& textr to d & mboxd & = cfrac2mathrmrsqrt1-mathrmr^2 \
& textg to d & mboxd & = cfrac1mathrmJ left(df right) times mathrmg \
bottomrule
endalignedat
]%
endspreadlines
enddocument
Unless you need a caption, you can obtain the desired layout without a table. Only alignedat
, and a shorter code with the spreadlines
environment from mathtools
:
documentclassarticle
usepackagemathtools
usepackagebooktabs
begindocument
beginspreadlines0.5cm
[%
beginalignedat2
toprule
enspace & textConversion & &phantom = hspace1.5emtextFormula \
midrule
& textRR to OR & hskip 4.8cmmboxOR & = cfrac1-mathrmp_textitnon-exposed 1-mathrmp_textitexposedenspace \
&textd to OR & mboxOR & = expbiggl(mathrmd cfracpisqrt3biggr) \
& textr to d & mboxd & = cfrac2mathrmrsqrt1-mathrmr^2 \
& textg to d & mboxd & = cfrac1mathrmJ left(df right) times mathrmg \
bottomrule
endalignedat
]%
endspreadlines
enddocument
answered 7 hours ago
BernardBernard
181k781213
181k781213
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 hours ago
add a comment |
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 hours ago
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
Thanks! In this particular case, I actually do need a caption and notes (I just deleted all the unnecessary parts from my code). But it is good to know that you can get the same layout without using a table!
– Matthias
7 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 hours ago
You can put an equation in a table environment (preferably unnumbered…)
– Bernard
6 hours ago
add a comment |
Matthias is a new contributor. Be nice, and check out our Code of Conduct.
Matthias is a new contributor. Be nice, and check out our Code of Conduct.
Matthias is a new contributor. Be nice, and check out our Code of Conduct.
Matthias is a new contributor. Be nice, and check out our Code of Conduct.
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%2f494536%2falign-equations-within-one-column%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
1
You could use a three column tabular and split up the equations at the = sign into a right and a left aligned column. The spacing between the columns can be adjusted using @width of your choice.
– leandriis
8 hours ago
1
Related and most likely interesting: tex.stackexchange.com/q/78788/134144
– leandriis
8 hours ago