How can I get a frame to show the number of its own slides? (beamer)How can I show the numbering of slides of...

I am confused as to how the inverse of a certain function is found.

Is it true that good novels will automatically sell themselves on Amazon (and so on) and there is no need for one to waste time promoting?

Why does a Star of David appear at a rally with Francisco Franco?

Knife as defense against stray dogs

World War I as a war of liberals against authoritarians?

I got the following comment from a reputed math journal. What does it mean?

My adviser wants to be the first author

Are all passive ability checks floors for active ability checks?

Violin - Can double stops be played when the strings are not next to each other?

New passport but visa is in old (lost) passport

Why do newer 737s use two different styles of split winglets?

As a new Ubuntu desktop 18.04 LTS user, do I need to use ufw for a firewall or is iptables sufficient?

What is "focus distance lower/upper" and how is it different from depth of field?

The German vowel “a” changes to the English “i”

et qui - how do you really understand that kind of phraseology?

Describing a chess game in a novel

Why did it take so long to abandon sail after steamships were demonstrated?

Is there a hypothetical scenario that would make Earth uninhabitable for humans, but not for (the majority of) other animals?

How to terminate ping <dest> &

Is honey really a supersaturated solution? Does heating to un-crystalize redissolve it or melt it?

A diagram about partial derivatives of f(x,y)

combinatorics floor summation

How to deal with taxi scam when on vacation?

Brexit - No Deal Rejection



How can I get a frame to show the number of its own slides? (beamer)


How can I show the numbering of slides of each frame?why beamer requires multiple compilation to get slide numbers correct?Beamer - Dresden theme: miniframes appeareance and frame number insertionUpper limit on the number of pause commands in a frameNumerical conditional within tikz keys?The tableofcontents in beamer arabicBeamer: handout/article mode - produce multiple copies of a frame with distinct overlay numbersGet number of each slide and total slides with respect to the whole presentationLaTeX beamer: pagenumbering appendixHow to Exclude Total Slide Number from Beamer SlideFrame-numbering alignment in beamer with many slides













0















I am trying to write a code that shows the number of slides in each frame. However, the code seems to write the slides number of the previous frame



In the MWE, the code reports frame 2 slides as 5 (slides in frame 1), reports number of frame 3 as 7 (slides in frame 2), etc.



How can I get a frame to show the number of its own slides? The desired result is not the same as the one we have in How can I show the numbering of slides of each frame?. Instead, I want the results to show (current slide in frame) of (total slides in frame). I have already achieved this, but 'total slides in frame' refers to the total slides in the previous frame.



documentclass{beamer}

makeatletter
defc@slideinframe{beamer@slideinframe}
makeatother

newcounter{totalslideinframe}
AtBeginEnvironment{frame}{
setcounter{totalslideinframe}{insertframeendpage}
addtocounter{totalslideinframe}{-insertframestartpage}
addtocounter{totalslideinframe}{1}
}


newcommand{frameSlideNumbering}{Slide arabic{slideinframe} of arabic{totalslideinframe}}



begin{document}

begin{frame}{Frame 1}



This is slide arabic{slideinframe} of arabic{totalslideinframe} pause

Contents pause More contents pause Extra contents pause

end{frame}


begin{frame}{Frame 2}

This is slide arabic{slideinframe} of arabic{totalslideinframe}

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

end{frame}

begin{frame}{Frame 3}

This is slide arabic{slideinframe} of arabic{totalslideinframe}

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

end{frame}


begin{frame}{Frame 4}

This is slide arabic{slideinframe} of arabic{totalslideinframe}

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

end{frame}

begin{frame}{Frame 5}

This is slide arabic{slideinframe} of arabic{totalslideinframe}

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

Contents pause More contents pause Extra contents pause

end{frame}

end{document}








share



























    0















    I am trying to write a code that shows the number of slides in each frame. However, the code seems to write the slides number of the previous frame



    In the MWE, the code reports frame 2 slides as 5 (slides in frame 1), reports number of frame 3 as 7 (slides in frame 2), etc.



    How can I get a frame to show the number of its own slides? The desired result is not the same as the one we have in How can I show the numbering of slides of each frame?. Instead, I want the results to show (current slide in frame) of (total slides in frame). I have already achieved this, but 'total slides in frame' refers to the total slides in the previous frame.



    documentclass{beamer}

    makeatletter
    defc@slideinframe{beamer@slideinframe}
    makeatother

    newcounter{totalslideinframe}
    AtBeginEnvironment{frame}{
    setcounter{totalslideinframe}{insertframeendpage}
    addtocounter{totalslideinframe}{-insertframestartpage}
    addtocounter{totalslideinframe}{1}
    }


    newcommand{frameSlideNumbering}{Slide arabic{slideinframe} of arabic{totalslideinframe}}



    begin{document}

    begin{frame}{Frame 1}



    This is slide arabic{slideinframe} of arabic{totalslideinframe} pause

    Contents pause More contents pause Extra contents pause

    end{frame}


    begin{frame}{Frame 2}

    This is slide arabic{slideinframe} of arabic{totalslideinframe}

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    end{frame}

    begin{frame}{Frame 3}

    This is slide arabic{slideinframe} of arabic{totalslideinframe}

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    end{frame}


    begin{frame}{Frame 4}

    This is slide arabic{slideinframe} of arabic{totalslideinframe}

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    end{frame}

    begin{frame}{Frame 5}

    This is slide arabic{slideinframe} of arabic{totalslideinframe}

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    Contents pause More contents pause Extra contents pause

    end{frame}

    end{document}








    share

























      0












      0








      0








      I am trying to write a code that shows the number of slides in each frame. However, the code seems to write the slides number of the previous frame



      In the MWE, the code reports frame 2 slides as 5 (slides in frame 1), reports number of frame 3 as 7 (slides in frame 2), etc.



      How can I get a frame to show the number of its own slides? The desired result is not the same as the one we have in How can I show the numbering of slides of each frame?. Instead, I want the results to show (current slide in frame) of (total slides in frame). I have already achieved this, but 'total slides in frame' refers to the total slides in the previous frame.



      documentclass{beamer}

      makeatletter
      defc@slideinframe{beamer@slideinframe}
      makeatother

      newcounter{totalslideinframe}
      AtBeginEnvironment{frame}{
      setcounter{totalslideinframe}{insertframeendpage}
      addtocounter{totalslideinframe}{-insertframestartpage}
      addtocounter{totalslideinframe}{1}
      }


      newcommand{frameSlideNumbering}{Slide arabic{slideinframe} of arabic{totalslideinframe}}



      begin{document}

      begin{frame}{Frame 1}



      This is slide arabic{slideinframe} of arabic{totalslideinframe} pause

      Contents pause More contents pause Extra contents pause

      end{frame}


      begin{frame}{Frame 2}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}

      begin{frame}{Frame 3}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}


      begin{frame}{Frame 4}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}

      begin{frame}{Frame 5}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}

      end{document}








      share














      I am trying to write a code that shows the number of slides in each frame. However, the code seems to write the slides number of the previous frame



      In the MWE, the code reports frame 2 slides as 5 (slides in frame 1), reports number of frame 3 as 7 (slides in frame 2), etc.



      How can I get a frame to show the number of its own slides? The desired result is not the same as the one we have in How can I show the numbering of slides of each frame?. Instead, I want the results to show (current slide in frame) of (total slides in frame). I have already achieved this, but 'total slides in frame' refers to the total slides in the previous frame.



      documentclass{beamer}

      makeatletter
      defc@slideinframe{beamer@slideinframe}
      makeatother

      newcounter{totalslideinframe}
      AtBeginEnvironment{frame}{
      setcounter{totalslideinframe}{insertframeendpage}
      addtocounter{totalslideinframe}{-insertframestartpage}
      addtocounter{totalslideinframe}{1}
      }


      newcommand{frameSlideNumbering}{Slide arabic{slideinframe} of arabic{totalslideinframe}}



      begin{document}

      begin{frame}{Frame 1}



      This is slide arabic{slideinframe} of arabic{totalslideinframe} pause

      Contents pause More contents pause Extra contents pause

      end{frame}


      begin{frame}{Frame 2}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}

      begin{frame}{Frame 3}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}


      begin{frame}{Frame 4}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}

      begin{frame}{Frame 5}

      This is slide arabic{slideinframe} of arabic{totalslideinframe}

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      Contents pause More contents pause Extra contents pause

      end{frame}

      end{document}






      beamer counters





      share












      share










      share



      share










      asked 3 mins ago









      Al-Motasem AldaoudeyehAl-Motasem Aldaoudeyeh

      1,683413




      1,683413






















          0






          active

          oldest

          votes











          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%2f479867%2fhow-can-i-get-a-frame-to-show-the-number-of-its-own-slides-beamer%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          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%2f479867%2fhow-can-i-get-a-frame-to-show-the-number-of-its-own-slides-beamer%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

          Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

          How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

          Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...