Bookmarks numbering in Beamer of texlive 2018 versionAdjust Bookmarks numbering in Beamer

What problems would a superhuman have who's skin is constantly hot?

How to resolve: Reviewer #1 says remove section X vs. Reviewer #2 says expand section X

Dynamic Linkage of LocatorPane and InputField

How do we create new idioms and use them in a novel?

Making a kiddush for a girl that has hard time finding shidduch

How do spaceships determine each other's mass in space?

Possible to detect presence of nuclear bomb?

Can't make sense of a paragraph from Lovecraft

What is better: yes / no radio, or simple checkbox?

Which situations would cause a company to ground or recall a aircraft series?

Does "Until when" sound natural for native speakers?

Why does cron require MTA for logging?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

After `ssh` without `-X` to a machine, is it possible to change `$DISPLAY` to make it work like `ssh -X`?

Source permutation

Specifying a starting column with colortbl package and xcolor

Are all players supposed to be able to see each others' character sheets?

Virginia employer terminated employee and wants signing bonus returned

For which categories of spectra is there an explicit description of the fibrant objects via lifting properties?

What do *foreign films* mean for an American?

Street obstacles in New Zealand

Is it possible to find 2014 distinct positive integers whose sum is divisible by each of them?

Why is a very small peak with larger m/z not considered to be the molecular ion?

Vocabulary for giving just numbers, not a full answer



Bookmarks numbering in Beamer of texlive 2018 version


Adjust Bookmarks numbering in Beamer













0















I want to number the each section, subsection and subsubsecton in bookmarks of beamer using texlive 2018 version. This problem seems to have been solved many years ago according to the solutions provided by cybersingularity in question Adjust Bookmarks numbering in Beamer.



I followed it and solved it in texlive 2017 last year, however, I can not compile the code in texlive 2018 on Windows OS:



enter image description here



the bookmark is:



enter image description here



The code is as follows:



documentclass{beamer}
documentclass{beamer}
hypersetup{
bookmarksnumbered=true
}

setcounter{tocdepth}{4}

% get numbering in section bookmarks
usepackage{etoolbox}
usepackage{bookmark}
makeatletter

newcounter{realsection}
newififrealsection
longdefbeamer@@ssection*#1{realsectionfalsebeamer@section[{#1}]{}}
longdefbeamer@@@section#1{realsectiontruebeamer@section[{#1}]{#1}}

patchcmd{beamer@section}%
{refstepcounter{section}}%
{ifrealsectionrefstepcounter{realsection}firefstepcounter{section}}%
{}{errmessage{failed to patch}}

patchcmd{beamer@section}%
{Hy@writebookmark{thec@section}{secname}}%
{Hy@writebookmark{thec@section}{numberline{therealsection}secname}}%
{}{errmessage{failed to patch}}
patchcmd{beamer@subsection}%
{Hy@writebookmark{thec@subsection}{#2}}%
{Hy@writebookmark{thec@subsection}{numberline{therealsection.thesubsection}#2}}%
{}{errmessage{failed to patch}}
patchcmd{beamer@subsubsection}%
{Hy@writebookmark{thec@subsubsection}{#2}}%
{Hy@writebookmark{thec@subsubsection}{numberline{therealsection.thesubsection.thesubsubsection}#2}}%
{}{errmessage{failed to patch}}
makeatother


begin{document}

section*{Intro}

section{section}

begin{frame}
end{frame}

subsection{subsection}
begin{frame}
end{frame}

subsubsection{subsubsection}
begin{frame}
end{frame}

section{section}
begin{frame}
end{frame}

subsection{subsection}
begin{frame}
end{frame}

subsubsection{subsubsection}
begin{frame}
end{frame}

subsubsection{subsubsection}
begin{frame}
end{frame}
end{document}


So, how do i modify the code above and number the subsection and subsusection?



Many thanks for your help.









share







New contributor




learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.

























    0















    I want to number the each section, subsection and subsubsecton in bookmarks of beamer using texlive 2018 version. This problem seems to have been solved many years ago according to the solutions provided by cybersingularity in question Adjust Bookmarks numbering in Beamer.



    I followed it and solved it in texlive 2017 last year, however, I can not compile the code in texlive 2018 on Windows OS:



    enter image description here



    the bookmark is:



    enter image description here



    The code is as follows:



    documentclass{beamer}
    documentclass{beamer}
    hypersetup{
    bookmarksnumbered=true
    }

    setcounter{tocdepth}{4}

    % get numbering in section bookmarks
    usepackage{etoolbox}
    usepackage{bookmark}
    makeatletter

    newcounter{realsection}
    newififrealsection
    longdefbeamer@@ssection*#1{realsectionfalsebeamer@section[{#1}]{}}
    longdefbeamer@@@section#1{realsectiontruebeamer@section[{#1}]{#1}}

    patchcmd{beamer@section}%
    {refstepcounter{section}}%
    {ifrealsectionrefstepcounter{realsection}firefstepcounter{section}}%
    {}{errmessage{failed to patch}}

    patchcmd{beamer@section}%
    {Hy@writebookmark{thec@section}{secname}}%
    {Hy@writebookmark{thec@section}{numberline{therealsection}secname}}%
    {}{errmessage{failed to patch}}
    patchcmd{beamer@subsection}%
    {Hy@writebookmark{thec@subsection}{#2}}%
    {Hy@writebookmark{thec@subsection}{numberline{therealsection.thesubsection}#2}}%
    {}{errmessage{failed to patch}}
    patchcmd{beamer@subsubsection}%
    {Hy@writebookmark{thec@subsubsection}{#2}}%
    {Hy@writebookmark{thec@subsubsection}{numberline{therealsection.thesubsection.thesubsubsection}#2}}%
    {}{errmessage{failed to patch}}
    makeatother


    begin{document}

    section*{Intro}

    section{section}

    begin{frame}
    end{frame}

    subsection{subsection}
    begin{frame}
    end{frame}

    subsubsection{subsubsection}
    begin{frame}
    end{frame}

    section{section}
    begin{frame}
    end{frame}

    subsection{subsection}
    begin{frame}
    end{frame}

    subsubsection{subsubsection}
    begin{frame}
    end{frame}

    subsubsection{subsubsection}
    begin{frame}
    end{frame}
    end{document}


    So, how do i modify the code above and number the subsection and subsusection?



    Many thanks for your help.









    share







    New contributor




    learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.























      0












      0








      0








      I want to number the each section, subsection and subsubsecton in bookmarks of beamer using texlive 2018 version. This problem seems to have been solved many years ago according to the solutions provided by cybersingularity in question Adjust Bookmarks numbering in Beamer.



      I followed it and solved it in texlive 2017 last year, however, I can not compile the code in texlive 2018 on Windows OS:



      enter image description here



      the bookmark is:



      enter image description here



      The code is as follows:



      documentclass{beamer}
      documentclass{beamer}
      hypersetup{
      bookmarksnumbered=true
      }

      setcounter{tocdepth}{4}

      % get numbering in section bookmarks
      usepackage{etoolbox}
      usepackage{bookmark}
      makeatletter

      newcounter{realsection}
      newififrealsection
      longdefbeamer@@ssection*#1{realsectionfalsebeamer@section[{#1}]{}}
      longdefbeamer@@@section#1{realsectiontruebeamer@section[{#1}]{#1}}

      patchcmd{beamer@section}%
      {refstepcounter{section}}%
      {ifrealsectionrefstepcounter{realsection}firefstepcounter{section}}%
      {}{errmessage{failed to patch}}

      patchcmd{beamer@section}%
      {Hy@writebookmark{thec@section}{secname}}%
      {Hy@writebookmark{thec@section}{numberline{therealsection}secname}}%
      {}{errmessage{failed to patch}}
      patchcmd{beamer@subsection}%
      {Hy@writebookmark{thec@subsection}{#2}}%
      {Hy@writebookmark{thec@subsection}{numberline{therealsection.thesubsection}#2}}%
      {}{errmessage{failed to patch}}
      patchcmd{beamer@subsubsection}%
      {Hy@writebookmark{thec@subsubsection}{#2}}%
      {Hy@writebookmark{thec@subsubsection}{numberline{therealsection.thesubsection.thesubsubsection}#2}}%
      {}{errmessage{failed to patch}}
      makeatother


      begin{document}

      section*{Intro}

      section{section}

      begin{frame}
      end{frame}

      subsection{subsection}
      begin{frame}
      end{frame}

      subsubsection{subsubsection}
      begin{frame}
      end{frame}

      section{section}
      begin{frame}
      end{frame}

      subsection{subsection}
      begin{frame}
      end{frame}

      subsubsection{subsubsection}
      begin{frame}
      end{frame}

      subsubsection{subsubsection}
      begin{frame}
      end{frame}
      end{document}


      So, how do i modify the code above and number the subsection and subsusection?



      Many thanks for your help.









      share







      New contributor




      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      I want to number the each section, subsection and subsubsecton in bookmarks of beamer using texlive 2018 version. This problem seems to have been solved many years ago according to the solutions provided by cybersingularity in question Adjust Bookmarks numbering in Beamer.



      I followed it and solved it in texlive 2017 last year, however, I can not compile the code in texlive 2018 on Windows OS:



      enter image description here



      the bookmark is:



      enter image description here



      The code is as follows:



      documentclass{beamer}
      documentclass{beamer}
      hypersetup{
      bookmarksnumbered=true
      }

      setcounter{tocdepth}{4}

      % get numbering in section bookmarks
      usepackage{etoolbox}
      usepackage{bookmark}
      makeatletter

      newcounter{realsection}
      newififrealsection
      longdefbeamer@@ssection*#1{realsectionfalsebeamer@section[{#1}]{}}
      longdefbeamer@@@section#1{realsectiontruebeamer@section[{#1}]{#1}}

      patchcmd{beamer@section}%
      {refstepcounter{section}}%
      {ifrealsectionrefstepcounter{realsection}firefstepcounter{section}}%
      {}{errmessage{failed to patch}}

      patchcmd{beamer@section}%
      {Hy@writebookmark{thec@section}{secname}}%
      {Hy@writebookmark{thec@section}{numberline{therealsection}secname}}%
      {}{errmessage{failed to patch}}
      patchcmd{beamer@subsection}%
      {Hy@writebookmark{thec@subsection}{#2}}%
      {Hy@writebookmark{thec@subsection}{numberline{therealsection.thesubsection}#2}}%
      {}{errmessage{failed to patch}}
      patchcmd{beamer@subsubsection}%
      {Hy@writebookmark{thec@subsubsection}{#2}}%
      {Hy@writebookmark{thec@subsubsection}{numberline{therealsection.thesubsection.thesubsubsection}#2}}%
      {}{errmessage{failed to patch}}
      makeatother


      begin{document}

      section*{Intro}

      section{section}

      begin{frame}
      end{frame}

      subsection{subsection}
      begin{frame}
      end{frame}

      subsubsection{subsubsection}
      begin{frame}
      end{frame}

      section{section}
      begin{frame}
      end{frame}

      subsection{subsection}
      begin{frame}
      end{frame}

      subsubsection{subsubsection}
      begin{frame}
      end{frame}

      subsubsection{subsubsection}
      begin{frame}
      end{frame}
      end{document}


      So, how do i modify the code above and number the subsection and subsusection?



      Many thanks for your help.







      beamer numbering bookmarks





      share







      New contributor




      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.










      share







      New contributor




      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.








      share



      share






      New contributor




      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 40 secs ago









      learnTeXlearnTeX

      1




      1




      New contributor




      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      learnTeX is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















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


          }
          });






          learnTeX is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f478825%2fbookmarks-numbering-in-beamer-of-texlive-2018-version%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








          learnTeX is a new contributor. Be nice, and check out our Code of Conduct.










          draft saved

          draft discarded


















          learnTeX is a new contributor. Be nice, and check out our Code of Conduct.













          learnTeX is a new contributor. Be nice, and check out our Code of Conduct.












          learnTeX is a new contributor. Be nice, and check out our Code of Conduct.
















          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%2f478825%2fbookmarks-numbering-in-beamer-of-texlive-2018-version%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

          Paper upload error, “Upload failed: The top margin is 0.715 in on page 3, which is below the required...

          Emraan Hashmi Filmografia | Linki zewnętrzne | Menu nawigacyjneGulshan GroverGulshan...

          How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...