Using theabspage from the 'perpage' packageBib page number in my index and bibtitle distance from the topBug...

Question about Goedel's incompleteness Proof

A Journey Through Space and Time

Book about a traveler who helps planets in need

How to add power-LED to my small amplifier?

DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?

Theorems that impeded progress

How old can references or sources in a thesis be?

Infinite past with a beginning?

How is it possible to have an ability score that is less than 3?

How can I automatically replace [[ and ]] with the [LeftDoubleBracket] and [RightDoubleBracket] operators?

Accidentally leaked the solution to an assignment, what to do now? (I'm the prof)

Shell script can be run only with sh command

How can I hide my bitcoin transactions to protect anonymity from others?

Do airline pilots ever risk not hearing communication directed to them specifically, from traffic controllers?

Why don't electron-positron collisions release infinite energy?

How does one intimidate enemies without having the capacity for violence?

Continuity at a point in terms of closure

Banach space and Hilbert space topology

How do we improve the relationship with a client software team that performs poorly and is becoming less collaborative?

Prevent a directory in /tmp from being deleted

What typically incentivizes a professor to change jobs to a lower ranking university?

Why is the design of haulage companies so “special”?

Why is an old chain unsafe?

What would happen to a modern skyscraper if it rains micro blackholes?



Using theabspage from the 'perpage' package


Bib page number in my index and bibtitle distance from the topBug in glossaries package while using hyperref?Total page numbers not shown correctly using beamer presentation packageBegin page counting from a given pageturn off frame number in certain slides using the beamer packagePage numbering is starting from 2how to remove the page numbering from the first slidePage numbering from roman to arabicExclude page numbering from certain pagesPagenumbering using alphalph package













2















After two compilations of the following example with pdflatex:



documentclass{article}
usepackage{lipsum}
usepackage{perpage}

begin{document}
lipsum[1-5]
lipsum[6][2]
Page~theabspage, theabspage, theabspage, theabspage, arabic{abspage}.
end{document}


I obtain this:



enter image description here



However, I would have expected to see the number 2 printed twice at the top of page 2, after the second compilation run. Am I having wrong expectations, or somehow misusing theabspage?



In a kind of desperate attempt, I've also tried to put AddAbsoluteCounter{page} in the preamble, same result.



My TeX distribution is TeX Live as shipped in current Debian unstable (texlive-base version 2018.20190227-2) and the log file written by pdfTeX says perpage 2014/10/25 2.0.










share|improve this question


















  • 1





    Presumably abspage has the same issue as the normal page counter: texfaq.org/FAQ-wrongpn

    – moewe
    10 hours ago











  • @moewe Thanks for your comment! I believe I know what happens with the page counter, how paragraphs and pages are broken, etc. (read the TeXbook 'till chapter 27). From reading the perpage manual, I expected that after two passes, theabspage would be up-to-date, but I'm not sure I really understand its textual definition from the perpage manual (it mentions page, what's that? A typo, I guess). So, maybe I just don't understand the purpose of theabspage, after all. That was the question. :)

    – frougon
    10 hours ago






  • 1





    no you can't use theabspage like this, and the perpage package is for other counters, e.g. to get footnote references by pages.

    – Ulrike Fischer
    10 hours ago






  • 1





    If I understand the documentation of perpage correctly then abspage is defined as AddAbsoluteCounter{page}. And AddAbsoluteCounter{<counter>} just defines a counter abs<counter> that is stepped up each time <counter> is stepped up. Since it is not reset by resets to <counter> it holds the absolute/total counter value. For page that seems to imply that abspage has the exact same issues as page w.r.t. its value in the first paragraph on a new page. theabspage and page could differ if you started your document with Roman page numbers and only later switched to Arabic 1

    – moewe
    10 hours ago








  • 1





    If you want to call this negative page numbers, then yes. It is not that unusual for people to want to reset their page numbers at certain points, so a robust and truly unique counter like abspage can be useful. This is especially useful for other objects where it is much more common to reset counters (like footnote counters per chapter or the like) particularly in the context of the perpage package, which resets all kinds of things per page.

    – moewe
    10 hours ago
















2















After two compilations of the following example with pdflatex:



documentclass{article}
usepackage{lipsum}
usepackage{perpage}

begin{document}
lipsum[1-5]
lipsum[6][2]
Page~theabspage, theabspage, theabspage, theabspage, arabic{abspage}.
end{document}


I obtain this:



enter image description here



However, I would have expected to see the number 2 printed twice at the top of page 2, after the second compilation run. Am I having wrong expectations, or somehow misusing theabspage?



In a kind of desperate attempt, I've also tried to put AddAbsoluteCounter{page} in the preamble, same result.



My TeX distribution is TeX Live as shipped in current Debian unstable (texlive-base version 2018.20190227-2) and the log file written by pdfTeX says perpage 2014/10/25 2.0.










share|improve this question


















  • 1





    Presumably abspage has the same issue as the normal page counter: texfaq.org/FAQ-wrongpn

    – moewe
    10 hours ago











  • @moewe Thanks for your comment! I believe I know what happens with the page counter, how paragraphs and pages are broken, etc. (read the TeXbook 'till chapter 27). From reading the perpage manual, I expected that after two passes, theabspage would be up-to-date, but I'm not sure I really understand its textual definition from the perpage manual (it mentions page, what's that? A typo, I guess). So, maybe I just don't understand the purpose of theabspage, after all. That was the question. :)

    – frougon
    10 hours ago






  • 1





    no you can't use theabspage like this, and the perpage package is for other counters, e.g. to get footnote references by pages.

    – Ulrike Fischer
    10 hours ago






  • 1





    If I understand the documentation of perpage correctly then abspage is defined as AddAbsoluteCounter{page}. And AddAbsoluteCounter{<counter>} just defines a counter abs<counter> that is stepped up each time <counter> is stepped up. Since it is not reset by resets to <counter> it holds the absolute/total counter value. For page that seems to imply that abspage has the exact same issues as page w.r.t. its value in the first paragraph on a new page. theabspage and page could differ if you started your document with Roman page numbers and only later switched to Arabic 1

    – moewe
    10 hours ago








  • 1





    If you want to call this negative page numbers, then yes. It is not that unusual for people to want to reset their page numbers at certain points, so a robust and truly unique counter like abspage can be useful. This is especially useful for other objects where it is much more common to reset counters (like footnote counters per chapter or the like) particularly in the context of the perpage package, which resets all kinds of things per page.

    – moewe
    10 hours ago














2












2








2








After two compilations of the following example with pdflatex:



documentclass{article}
usepackage{lipsum}
usepackage{perpage}

begin{document}
lipsum[1-5]
lipsum[6][2]
Page~theabspage, theabspage, theabspage, theabspage, arabic{abspage}.
end{document}


I obtain this:



enter image description here



However, I would have expected to see the number 2 printed twice at the top of page 2, after the second compilation run. Am I having wrong expectations, or somehow misusing theabspage?



In a kind of desperate attempt, I've also tried to put AddAbsoluteCounter{page} in the preamble, same result.



My TeX distribution is TeX Live as shipped in current Debian unstable (texlive-base version 2018.20190227-2) and the log file written by pdfTeX says perpage 2014/10/25 2.0.










share|improve this question














After two compilations of the following example with pdflatex:



documentclass{article}
usepackage{lipsum}
usepackage{perpage}

begin{document}
lipsum[1-5]
lipsum[6][2]
Page~theabspage, theabspage, theabspage, theabspage, arabic{abspage}.
end{document}


I obtain this:



enter image description here



However, I would have expected to see the number 2 printed twice at the top of page 2, after the second compilation run. Am I having wrong expectations, or somehow misusing theabspage?



In a kind of desperate attempt, I've also tried to put AddAbsoluteCounter{page} in the preamble, same result.



My TeX distribution is TeX Live as shipped in current Debian unstable (texlive-base version 2018.20190227-2) and the log file written by pdfTeX says perpage 2014/10/25 2.0.







page-numbering perpage






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 10 hours ago









frougonfrougon

850711




850711








  • 1





    Presumably abspage has the same issue as the normal page counter: texfaq.org/FAQ-wrongpn

    – moewe
    10 hours ago











  • @moewe Thanks for your comment! I believe I know what happens with the page counter, how paragraphs and pages are broken, etc. (read the TeXbook 'till chapter 27). From reading the perpage manual, I expected that after two passes, theabspage would be up-to-date, but I'm not sure I really understand its textual definition from the perpage manual (it mentions page, what's that? A typo, I guess). So, maybe I just don't understand the purpose of theabspage, after all. That was the question. :)

    – frougon
    10 hours ago






  • 1





    no you can't use theabspage like this, and the perpage package is for other counters, e.g. to get footnote references by pages.

    – Ulrike Fischer
    10 hours ago






  • 1





    If I understand the documentation of perpage correctly then abspage is defined as AddAbsoluteCounter{page}. And AddAbsoluteCounter{<counter>} just defines a counter abs<counter> that is stepped up each time <counter> is stepped up. Since it is not reset by resets to <counter> it holds the absolute/total counter value. For page that seems to imply that abspage has the exact same issues as page w.r.t. its value in the first paragraph on a new page. theabspage and page could differ if you started your document with Roman page numbers and only later switched to Arabic 1

    – moewe
    10 hours ago








  • 1





    If you want to call this negative page numbers, then yes. It is not that unusual for people to want to reset their page numbers at certain points, so a robust and truly unique counter like abspage can be useful. This is especially useful for other objects where it is much more common to reset counters (like footnote counters per chapter or the like) particularly in the context of the perpage package, which resets all kinds of things per page.

    – moewe
    10 hours ago














  • 1





    Presumably abspage has the same issue as the normal page counter: texfaq.org/FAQ-wrongpn

    – moewe
    10 hours ago











  • @moewe Thanks for your comment! I believe I know what happens with the page counter, how paragraphs and pages are broken, etc. (read the TeXbook 'till chapter 27). From reading the perpage manual, I expected that after two passes, theabspage would be up-to-date, but I'm not sure I really understand its textual definition from the perpage manual (it mentions page, what's that? A typo, I guess). So, maybe I just don't understand the purpose of theabspage, after all. That was the question. :)

    – frougon
    10 hours ago






  • 1





    no you can't use theabspage like this, and the perpage package is for other counters, e.g. to get footnote references by pages.

    – Ulrike Fischer
    10 hours ago






  • 1





    If I understand the documentation of perpage correctly then abspage is defined as AddAbsoluteCounter{page}. And AddAbsoluteCounter{<counter>} just defines a counter abs<counter> that is stepped up each time <counter> is stepped up. Since it is not reset by resets to <counter> it holds the absolute/total counter value. For page that seems to imply that abspage has the exact same issues as page w.r.t. its value in the first paragraph on a new page. theabspage and page could differ if you started your document with Roman page numbers and only later switched to Arabic 1

    – moewe
    10 hours ago








  • 1





    If you want to call this negative page numbers, then yes. It is not that unusual for people to want to reset their page numbers at certain points, so a robust and truly unique counter like abspage can be useful. This is especially useful for other objects where it is much more common to reset counters (like footnote counters per chapter or the like) particularly in the context of the perpage package, which resets all kinds of things per page.

    – moewe
    10 hours ago








1




1





Presumably abspage has the same issue as the normal page counter: texfaq.org/FAQ-wrongpn

– moewe
10 hours ago





Presumably abspage has the same issue as the normal page counter: texfaq.org/FAQ-wrongpn

– moewe
10 hours ago













@moewe Thanks for your comment! I believe I know what happens with the page counter, how paragraphs and pages are broken, etc. (read the TeXbook 'till chapter 27). From reading the perpage manual, I expected that after two passes, theabspage would be up-to-date, but I'm not sure I really understand its textual definition from the perpage manual (it mentions page, what's that? A typo, I guess). So, maybe I just don't understand the purpose of theabspage, after all. That was the question. :)

– frougon
10 hours ago





@moewe Thanks for your comment! I believe I know what happens with the page counter, how paragraphs and pages are broken, etc. (read the TeXbook 'till chapter 27). From reading the perpage manual, I expected that after two passes, theabspage would be up-to-date, but I'm not sure I really understand its textual definition from the perpage manual (it mentions page, what's that? A typo, I guess). So, maybe I just don't understand the purpose of theabspage, after all. That was the question. :)

– frougon
10 hours ago




1




1





no you can't use theabspage like this, and the perpage package is for other counters, e.g. to get footnote references by pages.

– Ulrike Fischer
10 hours ago





no you can't use theabspage like this, and the perpage package is for other counters, e.g. to get footnote references by pages.

– Ulrike Fischer
10 hours ago




1




1





If I understand the documentation of perpage correctly then abspage is defined as AddAbsoluteCounter{page}. And AddAbsoluteCounter{<counter>} just defines a counter abs<counter> that is stepped up each time <counter> is stepped up. Since it is not reset by resets to <counter> it holds the absolute/total counter value. For page that seems to imply that abspage has the exact same issues as page w.r.t. its value in the first paragraph on a new page. theabspage and page could differ if you started your document with Roman page numbers and only later switched to Arabic 1

– moewe
10 hours ago







If I understand the documentation of perpage correctly then abspage is defined as AddAbsoluteCounter{page}. And AddAbsoluteCounter{<counter>} just defines a counter abs<counter> that is stepped up each time <counter> is stepped up. Since it is not reset by resets to <counter> it holds the absolute/total counter value. For page that seems to imply that abspage has the exact same issues as page w.r.t. its value in the first paragraph on a new page. theabspage and page could differ if you started your document with Roman page numbers and only later switched to Arabic 1

– moewe
10 hours ago






1




1





If you want to call this negative page numbers, then yes. It is not that unusual for people to want to reset their page numbers at certain points, so a robust and truly unique counter like abspage can be useful. This is especially useful for other objects where it is much more common to reset counters (like footnote counters per chapter or the like) particularly in the context of the perpage package, which resets all kinds of things per page.

– moewe
10 hours ago





If you want to call this negative page numbers, then yes. It is not that unusual for people to want to reset their page numbers at certain points, so a robust and truly unique counter like abspage can be useful. This is especially useful for other objects where it is much more common to reset counters (like footnote counters per chapter or the like) particularly in the context of the perpage package, which resets all kinds of things per page.

– moewe
10 hours ago










1 Answer
1






active

oldest

votes


















3














You can get the absolute page number e.g. with the zref package:



documentclass{article}
usepackage{lipsum}
usepackage{zref-user,zref-abspage}

begin{document}
lipsum[1-5]
lipsum[6][2]
Page~zlabel{A}zref[abspage]{A}, zlabel{B}zref[abspage]{B}, zlabel{C}zref[abspage]{C}, zlabel{D}zref[abspage]{D}, zlabel{E}zref[abspage]{E}.
end{document}





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%2f483665%2fusing-theabspage-from-the-perpage-package%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









    3














    You can get the absolute page number e.g. with the zref package:



    documentclass{article}
    usepackage{lipsum}
    usepackage{zref-user,zref-abspage}

    begin{document}
    lipsum[1-5]
    lipsum[6][2]
    Page~zlabel{A}zref[abspage]{A}, zlabel{B}zref[abspage]{B}, zlabel{C}zref[abspage]{C}, zlabel{D}zref[abspage]{D}, zlabel{E}zref[abspage]{E}.
    end{document}





    share|improve this answer




























      3














      You can get the absolute page number e.g. with the zref package:



      documentclass{article}
      usepackage{lipsum}
      usepackage{zref-user,zref-abspage}

      begin{document}
      lipsum[1-5]
      lipsum[6][2]
      Page~zlabel{A}zref[abspage]{A}, zlabel{B}zref[abspage]{B}, zlabel{C}zref[abspage]{C}, zlabel{D}zref[abspage]{D}, zlabel{E}zref[abspage]{E}.
      end{document}





      share|improve this answer


























        3












        3








        3







        You can get the absolute page number e.g. with the zref package:



        documentclass{article}
        usepackage{lipsum}
        usepackage{zref-user,zref-abspage}

        begin{document}
        lipsum[1-5]
        lipsum[6][2]
        Page~zlabel{A}zref[abspage]{A}, zlabel{B}zref[abspage]{B}, zlabel{C}zref[abspage]{C}, zlabel{D}zref[abspage]{D}, zlabel{E}zref[abspage]{E}.
        end{document}





        share|improve this answer













        You can get the absolute page number e.g. with the zref package:



        documentclass{article}
        usepackage{lipsum}
        usepackage{zref-user,zref-abspage}

        begin{document}
        lipsum[1-5]
        lipsum[6][2]
        Page~zlabel{A}zref[abspage]{A}, zlabel{B}zref[abspage]{B}, zlabel{C}zref[abspage]{C}, zlabel{D}zref[abspage]{D}, zlabel{E}zref[abspage]{E}.
        end{document}






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 10 hours ago









        Ulrike FischerUlrike Fischer

        198k9306692




        198k9306692






























            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%2f483665%2fusing-theabspage-from-the-perpage-package%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 /...