Adjust spacing between main text and footnote in beamer slides












2















How does one tweak (preferably on an individual slide basis, instead of applying to all slides) the spacing between the main text and the footnote in beamer slides.



For example, in the following slides, I've tried tweaking the skipfootins but it doesn't seem to have much effect on Slide 1 where I'd like to have a bit more space between Item 11 and the footnote line/text



documentclass{beamer}
addtolength{skipfootins}{4pc plus 8pt}
usetheme{metropolis} % Use metropolis theme}
title{A minimal example}
date{today}
author{Matthias Vogelgesang}
institute{Centre for Modern Beamer Themes}
begin{document}
maketitle
begin{frame}{First Slide}
begin{itemize}
item Item 1
item Item 2
item Item 3
item Item 4
item Item 5
item Item 6
item Item 7footnote{Some footnote}
item Item 8
item Item 9
item Item 10
item Item 11
end{itemize}
end{frame}
begin{frame}{Second Slide}
begin{itemize}
item Item 1
item Item 2
item Item 3
item Item 4
item Item 5
item Item 6
item Item 7footnote{Some footnote}
item Item 8
item Item 9
end{itemize}
end{frame}
end{document}









share|improve this question



























    2















    How does one tweak (preferably on an individual slide basis, instead of applying to all slides) the spacing between the main text and the footnote in beamer slides.



    For example, in the following slides, I've tried tweaking the skipfootins but it doesn't seem to have much effect on Slide 1 where I'd like to have a bit more space between Item 11 and the footnote line/text



    documentclass{beamer}
    addtolength{skipfootins}{4pc plus 8pt}
    usetheme{metropolis} % Use metropolis theme}
    title{A minimal example}
    date{today}
    author{Matthias Vogelgesang}
    institute{Centre for Modern Beamer Themes}
    begin{document}
    maketitle
    begin{frame}{First Slide}
    begin{itemize}
    item Item 1
    item Item 2
    item Item 3
    item Item 4
    item Item 5
    item Item 6
    item Item 7footnote{Some footnote}
    item Item 8
    item Item 9
    item Item 10
    item Item 11
    end{itemize}
    end{frame}
    begin{frame}{Second Slide}
    begin{itemize}
    item Item 1
    item Item 2
    item Item 3
    item Item 4
    item Item 5
    item Item 6
    item Item 7footnote{Some footnote}
    item Item 8
    item Item 9
    end{itemize}
    end{frame}
    end{document}









    share|improve this question

























      2












      2








      2








      How does one tweak (preferably on an individual slide basis, instead of applying to all slides) the spacing between the main text and the footnote in beamer slides.



      For example, in the following slides, I've tried tweaking the skipfootins but it doesn't seem to have much effect on Slide 1 where I'd like to have a bit more space between Item 11 and the footnote line/text



      documentclass{beamer}
      addtolength{skipfootins}{4pc plus 8pt}
      usetheme{metropolis} % Use metropolis theme}
      title{A minimal example}
      date{today}
      author{Matthias Vogelgesang}
      institute{Centre for Modern Beamer Themes}
      begin{document}
      maketitle
      begin{frame}{First Slide}
      begin{itemize}
      item Item 1
      item Item 2
      item Item 3
      item Item 4
      item Item 5
      item Item 6
      item Item 7footnote{Some footnote}
      item Item 8
      item Item 9
      item Item 10
      item Item 11
      end{itemize}
      end{frame}
      begin{frame}{Second Slide}
      begin{itemize}
      item Item 1
      item Item 2
      item Item 3
      item Item 4
      item Item 5
      item Item 6
      item Item 7footnote{Some footnote}
      item Item 8
      item Item 9
      end{itemize}
      end{frame}
      end{document}









      share|improve this question














      How does one tweak (preferably on an individual slide basis, instead of applying to all slides) the spacing between the main text and the footnote in beamer slides.



      For example, in the following slides, I've tried tweaking the skipfootins but it doesn't seem to have much effect on Slide 1 where I'd like to have a bit more space between Item 11 and the footnote line/text



      documentclass{beamer}
      addtolength{skipfootins}{4pc plus 8pt}
      usetheme{metropolis} % Use metropolis theme}
      title{A minimal example}
      date{today}
      author{Matthias Vogelgesang}
      institute{Centre for Modern Beamer Themes}
      begin{document}
      maketitle
      begin{frame}{First Slide}
      begin{itemize}
      item Item 1
      item Item 2
      item Item 3
      item Item 4
      item Item 5
      item Item 6
      item Item 7footnote{Some footnote}
      item Item 8
      item Item 9
      item Item 10
      item Item 11
      end{itemize}
      end{frame}
      begin{frame}{Second Slide}
      begin{itemize}
      item Item 1
      item Item 2
      item Item 3
      item Item 4
      item Item 5
      item Item 6
      item Item 7footnote{Some footnote}
      item Item 8
      item Item 9
      end{itemize}
      end{frame}
      end{document}






      beamer spacing footnotes






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 4 at 23:06









      SkyorkSkyork

      55621123




      55621123






















          2 Answers
          2






          active

          oldest

          votes


















          2














          do you looking for something like this?



          enter image description here



          documentclass{beamer}
          usetheme{metropolis} % use of the metropolis theme:
          % it breaks standard placement
          % of footnotes (at bottom of a frame)
          setbeamertemplate{footline}{}% <---

          setbeamertemplate{footnote}{ % <---
          makebox[1em][l]{insertfootnotemark}%
          begin{minipage}{dimexprlinewidth-1em}
          footnotesizelinespread{0.84}selectfontinsertfootnotetext
          end{minipage}vskip 0pt
          }% end of footnote template

          title{A minimal example}
          date{today}
          author{Matthias Vogelgesang}
          institute{Centre for Modern Beamer Themes}

          begin{document}
          maketitle
          begin{frame}
          frametitle{First Slide}
          begin{itemize}
          item Item 1
          item Item 2
          item Item 3
          item Item 4
          item Item 5
          item Item 6
          item Item 7footnote{Some footnote}
          item Item 8
          item Item 9
          item Item 10
          item Item 11
          end{itemize}
          end{frame}

          begin{frame}
          frametitle{Second Slide}
          begin{itemize}
          item Item 1footnote{test}
          item Item 2
          item Item 3
          item Item 4
          item Item 5
          item Item 6
          item Item 7footnote{Nunc sed pede. Praesent vitae lectus. Praesent neque justo,
          vehicula eget, interdum id, facilisis et, nibh.}
          item Item 8
          item Item 9
          end{itemize}
          end{frame}
          end{document}





          share|improve this answer
























          • yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

            – Skyork
            Mar 5 at 0:22











          • @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

            – Zarko
            Mar 5 at 1:23



















          2














          If you only want to tweak some selected slides, you could just add a vspace.



          documentclass{beamer}
          addtolength{skipfootins}{4pc plus 8pt}
          usetheme{metropolis} % Use metropolis theme}
          title{A minimal example}
          date{today}
          author{Matthias Vogelgesang}
          institute{Centre for Modern Beamer Themes}
          begin{document}
          maketitle
          begin{frame}%[t]
          frametitle{First Slide}
          begin{itemize}
          item Item 1
          item Item 2
          item Item 3
          item Item 4
          item Item 5
          item Item 6
          item Item 7footnote{Some footnote}
          item Item 8
          item Item 9
          item Item 10
          item Item 11
          end{itemize}
          vspace*{5mm}
          end{frame}
          begin{frame}%[t]
          frametitle{Second Slide}
          begin{itemize}
          item Item 1
          item Item 2
          item Item 3
          item Item 4
          item Item 5
          item Item 6
          item Item 7footnote{Some footnote}
          item Item 8
          item Item 9
          end{itemize}
          end{frame}
          end{document}


          enter image description here






          share|improve this answer























            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%2f477784%2fadjust-spacing-between-main-text-and-footnote-in-beamer-slides%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









            2














            do you looking for something like this?



            enter image description here



            documentclass{beamer}
            usetheme{metropolis} % use of the metropolis theme:
            % it breaks standard placement
            % of footnotes (at bottom of a frame)
            setbeamertemplate{footline}{}% <---

            setbeamertemplate{footnote}{ % <---
            makebox[1em][l]{insertfootnotemark}%
            begin{minipage}{dimexprlinewidth-1em}
            footnotesizelinespread{0.84}selectfontinsertfootnotetext
            end{minipage}vskip 0pt
            }% end of footnote template

            title{A minimal example}
            date{today}
            author{Matthias Vogelgesang}
            institute{Centre for Modern Beamer Themes}

            begin{document}
            maketitle
            begin{frame}
            frametitle{First Slide}
            begin{itemize}
            item Item 1
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Some footnote}
            item Item 8
            item Item 9
            item Item 10
            item Item 11
            end{itemize}
            end{frame}

            begin{frame}
            frametitle{Second Slide}
            begin{itemize}
            item Item 1footnote{test}
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Nunc sed pede. Praesent vitae lectus. Praesent neque justo,
            vehicula eget, interdum id, facilisis et, nibh.}
            item Item 8
            item Item 9
            end{itemize}
            end{frame}
            end{document}





            share|improve this answer
























            • yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

              – Skyork
              Mar 5 at 0:22











            • @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

              – Zarko
              Mar 5 at 1:23
















            2














            do you looking for something like this?



            enter image description here



            documentclass{beamer}
            usetheme{metropolis} % use of the metropolis theme:
            % it breaks standard placement
            % of footnotes (at bottom of a frame)
            setbeamertemplate{footline}{}% <---

            setbeamertemplate{footnote}{ % <---
            makebox[1em][l]{insertfootnotemark}%
            begin{minipage}{dimexprlinewidth-1em}
            footnotesizelinespread{0.84}selectfontinsertfootnotetext
            end{minipage}vskip 0pt
            }% end of footnote template

            title{A minimal example}
            date{today}
            author{Matthias Vogelgesang}
            institute{Centre for Modern Beamer Themes}

            begin{document}
            maketitle
            begin{frame}
            frametitle{First Slide}
            begin{itemize}
            item Item 1
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Some footnote}
            item Item 8
            item Item 9
            item Item 10
            item Item 11
            end{itemize}
            end{frame}

            begin{frame}
            frametitle{Second Slide}
            begin{itemize}
            item Item 1footnote{test}
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Nunc sed pede. Praesent vitae lectus. Praesent neque justo,
            vehicula eget, interdum id, facilisis et, nibh.}
            item Item 8
            item Item 9
            end{itemize}
            end{frame}
            end{document}





            share|improve this answer
























            • yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

              – Skyork
              Mar 5 at 0:22











            • @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

              – Zarko
              Mar 5 at 1:23














            2












            2








            2







            do you looking for something like this?



            enter image description here



            documentclass{beamer}
            usetheme{metropolis} % use of the metropolis theme:
            % it breaks standard placement
            % of footnotes (at bottom of a frame)
            setbeamertemplate{footline}{}% <---

            setbeamertemplate{footnote}{ % <---
            makebox[1em][l]{insertfootnotemark}%
            begin{minipage}{dimexprlinewidth-1em}
            footnotesizelinespread{0.84}selectfontinsertfootnotetext
            end{minipage}vskip 0pt
            }% end of footnote template

            title{A minimal example}
            date{today}
            author{Matthias Vogelgesang}
            institute{Centre for Modern Beamer Themes}

            begin{document}
            maketitle
            begin{frame}
            frametitle{First Slide}
            begin{itemize}
            item Item 1
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Some footnote}
            item Item 8
            item Item 9
            item Item 10
            item Item 11
            end{itemize}
            end{frame}

            begin{frame}
            frametitle{Second Slide}
            begin{itemize}
            item Item 1footnote{test}
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Nunc sed pede. Praesent vitae lectus. Praesent neque justo,
            vehicula eget, interdum id, facilisis et, nibh.}
            item Item 8
            item Item 9
            end{itemize}
            end{frame}
            end{document}





            share|improve this answer













            do you looking for something like this?



            enter image description here



            documentclass{beamer}
            usetheme{metropolis} % use of the metropolis theme:
            % it breaks standard placement
            % of footnotes (at bottom of a frame)
            setbeamertemplate{footline}{}% <---

            setbeamertemplate{footnote}{ % <---
            makebox[1em][l]{insertfootnotemark}%
            begin{minipage}{dimexprlinewidth-1em}
            footnotesizelinespread{0.84}selectfontinsertfootnotetext
            end{minipage}vskip 0pt
            }% end of footnote template

            title{A minimal example}
            date{today}
            author{Matthias Vogelgesang}
            institute{Centre for Modern Beamer Themes}

            begin{document}
            maketitle
            begin{frame}
            frametitle{First Slide}
            begin{itemize}
            item Item 1
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Some footnote}
            item Item 8
            item Item 9
            item Item 10
            item Item 11
            end{itemize}
            end{frame}

            begin{frame}
            frametitle{Second Slide}
            begin{itemize}
            item Item 1footnote{test}
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Nunc sed pede. Praesent vitae lectus. Praesent neque justo,
            vehicula eget, interdum id, facilisis et, nibh.}
            item Item 8
            item Item 9
            end{itemize}
            end{frame}
            end{document}






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Mar 5 at 0:02









            ZarkoZarko

            127k868166




            127k868166













            • yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

              – Skyork
              Mar 5 at 0:22











            • @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

              – Zarko
              Mar 5 at 1:23



















            • yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

              – Skyork
              Mar 5 at 0:22











            • @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

              – Zarko
              Mar 5 at 1:23

















            yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

            – Skyork
            Mar 5 at 0:22





            yes, something like this. Is it possible to selectively apply the spacing to some slides but not others? And how do I adjust the spacing between the main text and the footnote line, tried changing a few numbers in your footnote template above but didn't change the spacing

            – Skyork
            Mar 5 at 0:22













            @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

            – Zarko
            Mar 5 at 1:23





            @Skyork, footnotes should be an exception in presentations ... consequently in beamer they are not supported as in document classes intended for articles or books. if you like to change footnote style, redefine its template before frame, where you like to apply new style. from aesthetic point of view and clarity of presentation i not recommend to do this. about new question in comment i recommend to ask them in new question, that more people see them and aster than can help you.

            – Zarko
            Mar 5 at 1:23











            2














            If you only want to tweak some selected slides, you could just add a vspace.



            documentclass{beamer}
            addtolength{skipfootins}{4pc plus 8pt}
            usetheme{metropolis} % Use metropolis theme}
            title{A minimal example}
            date{today}
            author{Matthias Vogelgesang}
            institute{Centre for Modern Beamer Themes}
            begin{document}
            maketitle
            begin{frame}%[t]
            frametitle{First Slide}
            begin{itemize}
            item Item 1
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Some footnote}
            item Item 8
            item Item 9
            item Item 10
            item Item 11
            end{itemize}
            vspace*{5mm}
            end{frame}
            begin{frame}%[t]
            frametitle{Second Slide}
            begin{itemize}
            item Item 1
            item Item 2
            item Item 3
            item Item 4
            item Item 5
            item Item 6
            item Item 7footnote{Some footnote}
            item Item 8
            item Item 9
            end{itemize}
            end{frame}
            end{document}


            enter image description here






            share|improve this answer




























              2














              If you only want to tweak some selected slides, you could just add a vspace.



              documentclass{beamer}
              addtolength{skipfootins}{4pc plus 8pt}
              usetheme{metropolis} % Use metropolis theme}
              title{A minimal example}
              date{today}
              author{Matthias Vogelgesang}
              institute{Centre for Modern Beamer Themes}
              begin{document}
              maketitle
              begin{frame}%[t]
              frametitle{First Slide}
              begin{itemize}
              item Item 1
              item Item 2
              item Item 3
              item Item 4
              item Item 5
              item Item 6
              item Item 7footnote{Some footnote}
              item Item 8
              item Item 9
              item Item 10
              item Item 11
              end{itemize}
              vspace*{5mm}
              end{frame}
              begin{frame}%[t]
              frametitle{Second Slide}
              begin{itemize}
              item Item 1
              item Item 2
              item Item 3
              item Item 4
              item Item 5
              item Item 6
              item Item 7footnote{Some footnote}
              item Item 8
              item Item 9
              end{itemize}
              end{frame}
              end{document}


              enter image description here






              share|improve this answer


























                2












                2








                2







                If you only want to tweak some selected slides, you could just add a vspace.



                documentclass{beamer}
                addtolength{skipfootins}{4pc plus 8pt}
                usetheme{metropolis} % Use metropolis theme}
                title{A minimal example}
                date{today}
                author{Matthias Vogelgesang}
                institute{Centre for Modern Beamer Themes}
                begin{document}
                maketitle
                begin{frame}%[t]
                frametitle{First Slide}
                begin{itemize}
                item Item 1
                item Item 2
                item Item 3
                item Item 4
                item Item 5
                item Item 6
                item Item 7footnote{Some footnote}
                item Item 8
                item Item 9
                item Item 10
                item Item 11
                end{itemize}
                vspace*{5mm}
                end{frame}
                begin{frame}%[t]
                frametitle{Second Slide}
                begin{itemize}
                item Item 1
                item Item 2
                item Item 3
                item Item 4
                item Item 5
                item Item 6
                item Item 7footnote{Some footnote}
                item Item 8
                item Item 9
                end{itemize}
                end{frame}
                end{document}


                enter image description here






                share|improve this answer













                If you only want to tweak some selected slides, you could just add a vspace.



                documentclass{beamer}
                addtolength{skipfootins}{4pc plus 8pt}
                usetheme{metropolis} % Use metropolis theme}
                title{A minimal example}
                date{today}
                author{Matthias Vogelgesang}
                institute{Centre for Modern Beamer Themes}
                begin{document}
                maketitle
                begin{frame}%[t]
                frametitle{First Slide}
                begin{itemize}
                item Item 1
                item Item 2
                item Item 3
                item Item 4
                item Item 5
                item Item 6
                item Item 7footnote{Some footnote}
                item Item 8
                item Item 9
                item Item 10
                item Item 11
                end{itemize}
                vspace*{5mm}
                end{frame}
                begin{frame}%[t]
                frametitle{Second Slide}
                begin{itemize}
                item Item 1
                item Item 2
                item Item 3
                item Item 4
                item Item 5
                item Item 6
                item Item 7footnote{Some footnote}
                item Item 8
                item Item 9
                end{itemize}
                end{frame}
                end{document}


                enter image description here







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 5 at 5:30









                marmotmarmot

                108k5131247




                108k5131247






























                    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%2f477784%2fadjust-spacing-between-main-text-and-footnote-in-beamer-slides%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?