Place figure to the right of other content in beamer itemization
I want an itemization where one item has an equation first and then a small figure right to it.
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
begin{columns}
begin{column}{0.6textwidth}
Test
begin{equation*}
1=1
end{equation*}
end{column}
begin{column}{0.4textwidth}
includegraphics{test.png}
end{column}
end{columns}
item Test
end{itemize}
end{frame}
end{document}
This doesn't work however. The content is displayed before the itemization bullet.
(If I omit the columns altogether, the figure is displayed after the equation instead of right of it)
beamer floats itemize columns
add a comment |
I want an itemization where one item has an equation first and then a small figure right to it.
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
begin{columns}
begin{column}{0.6textwidth}
Test
begin{equation*}
1=1
end{equation*}
end{column}
begin{column}{0.4textwidth}
includegraphics{test.png}
end{column}
end{columns}
item Test
end{itemize}
end{frame}
end{document}
This doesn't work however. The content is displayed before the itemization bullet.
(If I omit the columns altogether, the figure is displayed after the equation instead of right of it)
beamer floats itemize columns
add a comment |
I want an itemization where one item has an equation first and then a small figure right to it.
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
begin{columns}
begin{column}{0.6textwidth}
Test
begin{equation*}
1=1
end{equation*}
end{column}
begin{column}{0.4textwidth}
includegraphics{test.png}
end{column}
end{columns}
item Test
end{itemize}
end{frame}
end{document}
This doesn't work however. The content is displayed before the itemization bullet.
(If I omit the columns altogether, the figure is displayed after the equation instead of right of it)
beamer floats itemize columns
I want an itemization where one item has an equation first and then a small figure right to it.
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
begin{columns}
begin{column}{0.6textwidth}
Test
begin{equation*}
1=1
end{equation*}
end{column}
begin{column}{0.4textwidth}
includegraphics{test.png}
end{column}
end{columns}
item Test
end{itemize}
end{frame}
end{document}
This doesn't work however. The content is displayed before the itemization bullet.
(If I omit the columns altogether, the figure is displayed after the equation instead of right of it)
beamer floats itemize columns
beamer floats itemize columns
asked Jan 28 at 8:29
BananachBananach
342112
342112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You could put the graphic in the tag:
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
Test
begin{equation*}
1=1 tag*{raisebox{-0.5height}[0pt][0pt]{includegraphics[width=0.3textwidth]{example-image-duck}}}
end{equation*}
item Test
end{itemize}
end{frame}
end{document}
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
add a comment |
An option is with textblock
:
documentclass{beamer}
usepackage[absolute,overlay]{textpos} % For text positioning
begin{document}
begin{frame}{Test}
begin{itemize}
item Test 1%
begin{equation*}
1 = 1
end{equation*}
item Test 2
end{itemize}
begin{textblock}{3}(10,7)%
centering
includegraphics[width=0.7linewidth]{example-image-a}
end{textblock}
end{frame}
end{document}
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
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%2f472187%2fplace-figure-to-the-right-of-other-content-in-beamer-itemization%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
You could put the graphic in the tag:
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
Test
begin{equation*}
1=1 tag*{raisebox{-0.5height}[0pt][0pt]{includegraphics[width=0.3textwidth]{example-image-duck}}}
end{equation*}
item Test
end{itemize}
end{frame}
end{document}
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
add a comment |
You could put the graphic in the tag:
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
Test
begin{equation*}
1=1 tag*{raisebox{-0.5height}[0pt][0pt]{includegraphics[width=0.3textwidth]{example-image-duck}}}
end{equation*}
item Test
end{itemize}
end{frame}
end{document}
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
add a comment |
You could put the graphic in the tag:
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
Test
begin{equation*}
1=1 tag*{raisebox{-0.5height}[0pt][0pt]{includegraphics[width=0.3textwidth]{example-image-duck}}}
end{equation*}
item Test
end{itemize}
end{frame}
end{document}
You could put the graphic in the tag:
documentclass{beamer}
begin{document}
begin{frame}{Test}
begin{itemize}
item
Test
begin{equation*}
1=1 tag*{raisebox{-0.5height}[0pt][0pt]{includegraphics[width=0.3textwidth]{example-image-duck}}}
end{equation*}
item Test
end{itemize}
end{frame}
end{document}
answered Jan 28 at 9:05
Ulrike FischerUlrike Fischer
191k8298679
191k8298679
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
add a comment |
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I like the creativity but in my non MWE the equation is really a custom block with an equation inside.
– Bananach
Jan 28 at 9:19
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
I guess I could see if I can add a tag there as well,but I would also be happy with a general approach.
– Bananach
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
You can still use the raisebox idea: Put the graphic somewhere so that the vertical placement is correct and then move it up or down.
– Ulrike Fischer
Jan 28 at 9:25
add a comment |
An option is with textblock
:
documentclass{beamer}
usepackage[absolute,overlay]{textpos} % For text positioning
begin{document}
begin{frame}{Test}
begin{itemize}
item Test 1%
begin{equation*}
1 = 1
end{equation*}
item Test 2
end{itemize}
begin{textblock}{3}(10,7)%
centering
includegraphics[width=0.7linewidth]{example-image-a}
end{textblock}
end{frame}
end{document}
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
add a comment |
An option is with textblock
:
documentclass{beamer}
usepackage[absolute,overlay]{textpos} % For text positioning
begin{document}
begin{frame}{Test}
begin{itemize}
item Test 1%
begin{equation*}
1 = 1
end{equation*}
item Test 2
end{itemize}
begin{textblock}{3}(10,7)%
centering
includegraphics[width=0.7linewidth]{example-image-a}
end{textblock}
end{frame}
end{document}
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
add a comment |
An option is with textblock
:
documentclass{beamer}
usepackage[absolute,overlay]{textpos} % For text positioning
begin{document}
begin{frame}{Test}
begin{itemize}
item Test 1%
begin{equation*}
1 = 1
end{equation*}
item Test 2
end{itemize}
begin{textblock}{3}(10,7)%
centering
includegraphics[width=0.7linewidth]{example-image-a}
end{textblock}
end{frame}
end{document}
An option is with textblock
:
documentclass{beamer}
usepackage[absolute,overlay]{textpos} % For text positioning
begin{document}
begin{frame}{Test}
begin{itemize}
item Test 1%
begin{equation*}
1 = 1
end{equation*}
item Test 2
end{itemize}
begin{textblock}{3}(10,7)%
centering
includegraphics[width=0.7linewidth]{example-image-a}
end{textblock}
end{frame}
end{document}
answered Jan 28 at 9:35
user115089user115089
1317
1317
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
add a comment |
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
@Bananach, has this answer helped you? Can you accept an answer?
– user115089
Feb 1 at 10:28
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%2f472187%2fplace-figure-to-the-right-of-other-content-in-beamer-itemization%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