Vertical alignment of tabular to baseline in an itemize environment
I have a tabular
inside an itemize
environment:
documentclass{article}
begin{document}
begin{itemize}
item[(b)]
begin{tabular}{|c|c|}
...
end{tabular}
end{itemize}
end{document}
It looks like this:
But I want it to look like this:
I.e. I want to align the top of the table to the present item
baseline. How?
tables vertical-alignment lists
add a comment |
I have a tabular
inside an itemize
environment:
documentclass{article}
begin{document}
begin{itemize}
item[(b)]
begin{tabular}{|c|c|}
...
end{tabular}
end{itemize}
end{document}
It looks like this:
But I want it to look like this:
I.e. I want to align the top of the table to the present item
baseline. How?
tables vertical-alignment lists
I've found conflicting information online, one author proposing that top is default, while another suggests "default is alignment on the center of the environment".
– Alexander Reynolds
Jun 22 '16 at 19:32
@AlexanderReynolds: I think I was wrong:c
is the default, so a change tot
is correct
– Christian Hupfer
Jun 22 '16 at 19:35
add a comment |
I have a tabular
inside an itemize
environment:
documentclass{article}
begin{document}
begin{itemize}
item[(b)]
begin{tabular}{|c|c|}
...
end{tabular}
end{itemize}
end{document}
It looks like this:
But I want it to look like this:
I.e. I want to align the top of the table to the present item
baseline. How?
tables vertical-alignment lists
I have a tabular
inside an itemize
environment:
documentclass{article}
begin{document}
begin{itemize}
item[(b)]
begin{tabular}{|c|c|}
...
end{tabular}
end{itemize}
end{document}
It looks like this:
But I want it to look like this:
I.e. I want to align the top of the table to the present item
baseline. How?
tables vertical-alignment lists
tables vertical-alignment lists
edited Jun 22 '16 at 19:59
Werner
437k649581647
437k649581647
asked Jun 22 '16 at 19:26
R2-D2
1284
1284
I've found conflicting information online, one author proposing that top is default, while another suggests "default is alignment on the center of the environment".
– Alexander Reynolds
Jun 22 '16 at 19:32
@AlexanderReynolds: I think I was wrong:c
is the default, so a change tot
is correct
– Christian Hupfer
Jun 22 '16 at 19:35
add a comment |
I've found conflicting information online, one author proposing that top is default, while another suggests "default is alignment on the center of the environment".
– Alexander Reynolds
Jun 22 '16 at 19:32
@AlexanderReynolds: I think I was wrong:c
is the default, so a change tot
is correct
– Christian Hupfer
Jun 22 '16 at 19:35
I've found conflicting information online, one author proposing that top is default, while another suggests "default is alignment on the center of the environment".
– Alexander Reynolds
Jun 22 '16 at 19:32
I've found conflicting information online, one author proposing that top is default, while another suggests "default is alignment on the center of the environment".
– Alexander Reynolds
Jun 22 '16 at 19:32
@AlexanderReynolds: I think I was wrong:
c
is the default, so a change to t
is correct– Christian Hupfer
Jun 22 '16 at 19:35
@AlexanderReynolds: I think I was wrong:
c
is the default, so a change to t
is correct– Christian Hupfer
Jun 22 '16 at 19:35
add a comment |
2 Answers
2
active
oldest
votes
Consider using adjustbox
to vertically align the tabular
s to the item
s as the default [t]
op and [b]
ottom alignments when including horizontal rules - hline
s - influences it:
documentclass{article}
usepackage{adjustbox}
begin{document}
begin{enumerate}
item
adjustbox{valign=t}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[t]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
item
adjustbox{valign=b}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[b]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
end{enumerate}
end{document}
add a comment |
Use
begin{tabular}[t]{|c|c|}
to align the tabel at the top (default is c center!)
New contributor
2
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins 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%2f316153%2fvertical-alignment-of-tabular-to-baseline-in-an-itemize-environment%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
Consider using adjustbox
to vertically align the tabular
s to the item
s as the default [t]
op and [b]
ottom alignments when including horizontal rules - hline
s - influences it:
documentclass{article}
usepackage{adjustbox}
begin{document}
begin{enumerate}
item
adjustbox{valign=t}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[t]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
item
adjustbox{valign=b}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[b]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
end{enumerate}
end{document}
add a comment |
Consider using adjustbox
to vertically align the tabular
s to the item
s as the default [t]
op and [b]
ottom alignments when including horizontal rules - hline
s - influences it:
documentclass{article}
usepackage{adjustbox}
begin{document}
begin{enumerate}
item
adjustbox{valign=t}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[t]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
item
adjustbox{valign=b}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[b]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
end{enumerate}
end{document}
add a comment |
Consider using adjustbox
to vertically align the tabular
s to the item
s as the default [t]
op and [b]
ottom alignments when including horizontal rules - hline
s - influences it:
documentclass{article}
usepackage{adjustbox}
begin{document}
begin{enumerate}
item
adjustbox{valign=t}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[t]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
item
adjustbox{valign=b}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[b]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
end{enumerate}
end{document}
Consider using adjustbox
to vertically align the tabular
s to the item
s as the default [t]
op and [b]
ottom alignments when including horizontal rules - hline
s - influences it:
documentclass{article}
usepackage{adjustbox}
begin{document}
begin{enumerate}
item
adjustbox{valign=t}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[t]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
item
adjustbox{valign=b}{begin{tabular}{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}}
qquad
begin{tabular}[b]{|c|c|}
hline
Lorem & Ipsum tabularnewline
hline
One &tabularnewline
Two & Wow tabularnewline
Three& tabularnewline
hline
end{tabular}
end{enumerate}
end{document}
answered Jun 22 '16 at 19:58
Werner
437k649581647
437k649581647
add a comment |
add a comment |
Use
begin{tabular}[t]{|c|c|}
to align the tabel at the top (default is c center!)
New contributor
2
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins ago
add a comment |
Use
begin{tabular}[t]{|c|c|}
to align the tabel at the top (default is c center!)
New contributor
2
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins ago
add a comment |
Use
begin{tabular}[t]{|c|c|}
to align the tabel at the top (default is c center!)
New contributor
Use
begin{tabular}[t]{|c|c|}
to align the tabel at the top (default is c center!)
New contributor
New contributor
answered 24 mins ago
Wim
1
1
New contributor
New contributor
2
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins ago
add a comment |
2
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins ago
2
2
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins ago
Welcome to TeX.SX! Have you seen the other answer? It shows this solution (alongside with another one) and why it is not a good idea to use this…
– TeXnician
16 mins 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.
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%2f316153%2fvertical-alignment-of-tabular-to-baseline-in-an-itemize-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
I've found conflicting information online, one author proposing that top is default, while another suggests "default is alignment on the center of the environment".
– Alexander Reynolds
Jun 22 '16 at 19:32
@AlexanderReynolds: I think I was wrong:
c
is the default, so a change tot
is correct– Christian Hupfer
Jun 22 '16 at 19:35