Place figure to the right of other content in beamer itemization












1















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.



enter image description here



(If I omit the columns altogether, the figure is displayed after the equation instead of right of it)










share|improve this question



























    1















    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.



    enter image description here



    (If I omit the columns altogether, the figure is displayed after the equation instead of right of it)










    share|improve this question

























      1












      1








      1








      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.



      enter image description here



      (If I omit the columns altogether, the figure is displayed after the equation instead of right of it)










      share|improve this question














      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.



      enter image description here



      (If I omit the columns altogether, the figure is displayed after the equation instead of right of it)







      beamer floats itemize columns






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 28 at 8:29









      BananachBananach

      342112




      342112






















          2 Answers
          2






          active

          oldest

          votes


















          1














          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}


          enter image description here






          share|improve this answer
























          • 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





















          1














          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}


          enter image description here






          share|improve this answer
























          • @Bananach, has this answer helped you? Can you accept an answer?

            – user115089
            Feb 1 at 10:28











          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
          });


          }
          });














          draft saved

          draft discarded


















          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









          1














          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}


          enter image description here






          share|improve this answer
























          • 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


















          1














          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}


          enter image description here






          share|improve this answer
























          • 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
















          1












          1








          1







          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}


          enter image description here






          share|improve this answer













          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}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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





















          • 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













          1














          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}


          enter image description here






          share|improve this answer
























          • @Bananach, has this answer helped you? Can you accept an answer?

            – user115089
            Feb 1 at 10:28
















          1














          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}


          enter image description here






          share|improve this answer
























          • @Bananach, has this answer helped you? Can you accept an answer?

            – user115089
            Feb 1 at 10:28














          1












          1








          1







          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}


          enter image description here






          share|improve this answer













          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}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          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



















          • @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


















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

          ComboBox Display Member on multiple fields

          Is it possible to collect Nectar points via Trainline?