Beamer Singapore












2














I having a problem with the bullets points that appears on the header of the Singapore theme. Before, it didn't add a bullet point for the outline page when using



AtBeginSection{
begin{frame}{Outline}
small tableofcontents[currentsection, hideothersubsections]
end{frame}
}


Now I have an extra bullet each time I change a section... does anybody knows how to solve this problem ?










share|improve this question





























    2














    I having a problem with the bullets points that appears on the header of the Singapore theme. Before, it didn't add a bullet point for the outline page when using



    AtBeginSection{
    begin{frame}{Outline}
    small tableofcontents[currentsection, hideothersubsections]
    end{frame}
    }


    Now I have an extra bullet each time I change a section... does anybody knows how to solve this problem ?










    share|improve this question



























      2












      2








      2







      I having a problem with the bullets points that appears on the header of the Singapore theme. Before, it didn't add a bullet point for the outline page when using



      AtBeginSection{
      begin{frame}{Outline}
      small tableofcontents[currentsection, hideothersubsections]
      end{frame}
      }


      Now I have an extra bullet each time I change a section... does anybody knows how to solve this problem ?










      share|improve this question















      I having a problem with the bullets points that appears on the header of the Singapore theme. Before, it didn't add a bullet point for the outline page when using



      AtBeginSection{
      begin{frame}{Outline}
      small tableofcontents[currentsection, hideothersubsections]
      end{frame}
      }


      Now I have an extra bullet each time I change a section... does anybody knows how to solve this problem ?







      beamer






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 9 at 16:24









      TeXnician

      24.2k63084




      24.2k63084










      asked Feb 9 at 16:23









      A. Vero

      111




      111






















          1 Answer
          1






          active

          oldest

          votes


















          2














          Based on https://tex.stackexchange.com/a/45038/36296 you could do:



          documentclass[compress]{beamer}

          usetheme{Singapore}

          AtBeginSection{
          miniframesoff%
          begin{frame}
          frametitle{Outline}
          small tableofcontents[currentsection, hideothersubsections]
          end{frame}
          miniframeson%
          }


          makeatletter
          letbeamer@writeslidentry@miniframeson=beamer@writeslidentry%
          defbeamer@writeslidentry@miniframesoff{%
          expandafterbeamer@ifemptyexpandafter{beamer@framestartpage}{}% does not happen normally
          {%else
          % removed addtocontents commands
          clearpagebeamer@notesactions%
          }
          }
          newcommand*{miniframeson}{letbeamer@writeslidentry=beamer@writeslidentry@miniframeson}
          newcommand*{miniframesoff}{letbeamer@writeslidentry=beamer@writeslidentry@miniframesoff}
          makeatother

          begin{document}

          section{sd}
          begin{frame}
          abc
          end{frame}

          end{document}


          enter image description here






          share|improve this answer





















          • Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
            – A. Vero
            Oct 7 at 8:20










          • @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
            – samcarter
            Oct 7 at 9:28










          • documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
            – A. Vero
            Oct 8 at 11:52











          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%2f414525%2fbeamer-singapore%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          2














          Based on https://tex.stackexchange.com/a/45038/36296 you could do:



          documentclass[compress]{beamer}

          usetheme{Singapore}

          AtBeginSection{
          miniframesoff%
          begin{frame}
          frametitle{Outline}
          small tableofcontents[currentsection, hideothersubsections]
          end{frame}
          miniframeson%
          }


          makeatletter
          letbeamer@writeslidentry@miniframeson=beamer@writeslidentry%
          defbeamer@writeslidentry@miniframesoff{%
          expandafterbeamer@ifemptyexpandafter{beamer@framestartpage}{}% does not happen normally
          {%else
          % removed addtocontents commands
          clearpagebeamer@notesactions%
          }
          }
          newcommand*{miniframeson}{letbeamer@writeslidentry=beamer@writeslidentry@miniframeson}
          newcommand*{miniframesoff}{letbeamer@writeslidentry=beamer@writeslidentry@miniframesoff}
          makeatother

          begin{document}

          section{sd}
          begin{frame}
          abc
          end{frame}

          end{document}


          enter image description here






          share|improve this answer





















          • Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
            – A. Vero
            Oct 7 at 8:20










          • @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
            – samcarter
            Oct 7 at 9:28










          • documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
            – A. Vero
            Oct 8 at 11:52
















          2














          Based on https://tex.stackexchange.com/a/45038/36296 you could do:



          documentclass[compress]{beamer}

          usetheme{Singapore}

          AtBeginSection{
          miniframesoff%
          begin{frame}
          frametitle{Outline}
          small tableofcontents[currentsection, hideothersubsections]
          end{frame}
          miniframeson%
          }


          makeatletter
          letbeamer@writeslidentry@miniframeson=beamer@writeslidentry%
          defbeamer@writeslidentry@miniframesoff{%
          expandafterbeamer@ifemptyexpandafter{beamer@framestartpage}{}% does not happen normally
          {%else
          % removed addtocontents commands
          clearpagebeamer@notesactions%
          }
          }
          newcommand*{miniframeson}{letbeamer@writeslidentry=beamer@writeslidentry@miniframeson}
          newcommand*{miniframesoff}{letbeamer@writeslidentry=beamer@writeslidentry@miniframesoff}
          makeatother

          begin{document}

          section{sd}
          begin{frame}
          abc
          end{frame}

          end{document}


          enter image description here






          share|improve this answer





















          • Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
            – A. Vero
            Oct 7 at 8:20










          • @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
            – samcarter
            Oct 7 at 9:28










          • documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
            – A. Vero
            Oct 8 at 11:52














          2












          2








          2






          Based on https://tex.stackexchange.com/a/45038/36296 you could do:



          documentclass[compress]{beamer}

          usetheme{Singapore}

          AtBeginSection{
          miniframesoff%
          begin{frame}
          frametitle{Outline}
          small tableofcontents[currentsection, hideothersubsections]
          end{frame}
          miniframeson%
          }


          makeatletter
          letbeamer@writeslidentry@miniframeson=beamer@writeslidentry%
          defbeamer@writeslidentry@miniframesoff{%
          expandafterbeamer@ifemptyexpandafter{beamer@framestartpage}{}% does not happen normally
          {%else
          % removed addtocontents commands
          clearpagebeamer@notesactions%
          }
          }
          newcommand*{miniframeson}{letbeamer@writeslidentry=beamer@writeslidentry@miniframeson}
          newcommand*{miniframesoff}{letbeamer@writeslidentry=beamer@writeslidentry@miniframesoff}
          makeatother

          begin{document}

          section{sd}
          begin{frame}
          abc
          end{frame}

          end{document}


          enter image description here






          share|improve this answer












          Based on https://tex.stackexchange.com/a/45038/36296 you could do:



          documentclass[compress]{beamer}

          usetheme{Singapore}

          AtBeginSection{
          miniframesoff%
          begin{frame}
          frametitle{Outline}
          small tableofcontents[currentsection, hideothersubsections]
          end{frame}
          miniframeson%
          }


          makeatletter
          letbeamer@writeslidentry@miniframeson=beamer@writeslidentry%
          defbeamer@writeslidentry@miniframesoff{%
          expandafterbeamer@ifemptyexpandafter{beamer@framestartpage}{}% does not happen normally
          {%else
          % removed addtocontents commands
          clearpagebeamer@notesactions%
          }
          }
          newcommand*{miniframeson}{letbeamer@writeslidentry=beamer@writeslidentry@miniframeson}
          newcommand*{miniframesoff}{letbeamer@writeslidentry=beamer@writeslidentry@miniframesoff}
          makeatother

          begin{document}

          section{sd}
          begin{frame}
          abc
          end{frame}

          end{document}


          enter image description here







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Feb 9 at 16:44









          samcarter

          85.6k794275




          85.6k794275












          • Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
            – A. Vero
            Oct 7 at 8:20










          • @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
            – samcarter
            Oct 7 at 9:28










          • documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
            – A. Vero
            Oct 8 at 11:52


















          • Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
            – A. Vero
            Oct 7 at 8:20










          • @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
            – samcarter
            Oct 7 at 9:28










          • documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
            – A. Vero
            Oct 8 at 11:52
















          Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
          – A. Vero
          Oct 7 at 8:20




          Does do not solve the problem, because I want to maintain the bullets points in different lines for each subsection...
          – A. Vero
          Oct 7 at 8:20












          @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
          – samcarter
          Oct 7 at 9:28




          @A.Vero Please make a minimal working example (MWE) that demonstrates your problem.
          – samcarter
          Oct 7 at 9:28












          documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
          – A. Vero
          Oct 8 at 11:52




          documentclass[slidetop]{beamer} mode<presentation> usepackage{etex} usetheme{Singapore} begin{document} section{Section 1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} subsection{Subsection 1.1} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} subsection{Subsection 1.2} frame{frametitle{Frame 1}} frame{frametitle{Frame 2}} frame{frametitle{Frame 3}} frame{frametitle{Frame 4}} end{document}
          – A. Vero
          Oct 8 at 11:52


















          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.





          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f414525%2fbeamer-singapore%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

          How to send String Array data to Server using php in android

          Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

          Is anime1.com a legal site for watching anime?