Page numbers appear only on chapter start pages. How to get them on all the pagesPage numbers only appear on...

What to do when being responsible for data protection in your lab, yet advice is ignored?

What happens if a wizard reaches level 20 but has no 3rd-level spells that they can use with the Signature Spells feature?

Finding the number of integers that are a square and a cube at the same time

What is the wife of a henpecked husband called?

How would an AI self awareness kill switch work?

How do you enable SQL Server 2019's result set caching?

c++ How can I make an algorithm for finding variations of a set without repetition (i.e. n elements, choose k)?

Is it a fallacy if someone claims they need an explanation for every word of your argument to the point where they don't understand common terms?

How to add multiple differently colored borders around a node?

ip vs ifconfig commands pros and cons

What's the rationale behind the objections to these measures against human trafficking?

Linux File Manager: Restore previous open session (folders and tab)

Can the Count of Monte Cristo's calculation of poison dosage be explained?

Can luacode be used in the preamble of a standalone-type document?

What is the purpose of easy combat scenarios that don't need resource expenditure?

Metadata API deployments are failing in Spring '19

Connecting top and bottom of adjacent circles

4 Spheres all touching each other??

Auto Insert date into Notepad

How to properly claim credit for peer review?

How do I add a variable to this curl command?

Incompressible fluid definition

Dilemma of explaining to interviewer that he is the reason for declining second interview

Do authors have to be politically correct in article-writing?



Page numbers appear only on chapter start pages. How to get them on all the pages


Page numbers only appear on pages where a chapter startsInitial page numbers wrongfancyhdr: Wrong page number for chapter* in the prefixMake amsbook consistently place page numbers in header or footer but not mixedRoman page numbers before table of contents which also appear in itpage numbering appearing only for pages containing chapter titlePage number is centered even though it should be left/rightPage numbers only on even pageschanging page numbering style from Arabic to roman doesn't workForce page style on all pages













0















I know that pagestyle{empty} put page numbers only on 1st page of the chapter. But i commented the same and i still dont get page numbers execpt on chapter's 1st page.



%This is the main file.  This is where you set up your preferences, name the packages you need, and use the "input" command to order the chapters and other major components of your thesis, most of which are set up as separate .tex files.  To see other project files, click the "Project" tab on the upper left.  If you click on a section in the pdf preview, you will jump to that file (Overleaf)
documentclass[12pt]{report} %12 point font is set - Times New Roman is the default

%These are a bunch of packages that may or may not be needed for features I use later
usepackage{graphicx}
usepackage[table]{xcolor}
usepackage{amsmath}
usepackage{amsthm}
usepackage{amssymb}
usepackage{hyperref}
usepackage{url}
usepackage{multicol}
usepackage{booktabs}
usepackage[toc,page]{appendix}
usepackage{glossaries}
input{glossary}
renewcommandbibname{References}
usepackage{setspace}
usepackage[letterpaper,left=1in,right=1in,top=1in,bottom=1in]{geometry} %margin of bound side 1.5 in, rest of margins 1 in, per Creighton Thesis guideline formats
usepackage{pdflscape}
usepackage{subfigure}
usepackage{pdfpages}
widowpenalty10000% This automatically groups lines so there is at least 2 from each paragraph on a page. Optional
clubpenalty10000 %see above comment
usepackage{indentfirst} %This makes the first paragraph of a section indented. Optional.

usepackage{breqn}
usepackage{gensymb}

%To float image where the syntax is%
usepackage{float}
%For algorithm%
usepackage[]{algorithm2e}
%For theorem environment
theoremstyle{definition}
newtheorem{theorem} {Theorem}

begin{document}
pagestyle{plain}
frenchspacing

newpage
%thispagestyle{empty}

mbox{}
clearpage %blank page at beginning of pdf. not numbered

input{approval} %Have this page printed and signed, then delete from your thesis and insert the signed version.

%includepdf[scale=1.0]{Sig2.pdf} % After the dean signs the approval page, LuAnn Schwery sends you a pdf, which you insert into your thesis

pagenumbering{roman} %begin roman numeral page numbers for the front matter
input{cover} %title page

doublespacing

newpage %insert blank page, counted in page numbers
%thispagestyle{empty} % do not display page number
mbox{}
clearpage

addcontentsline{toc}{chapter}{Abstract}
input{abstract} %Abstract is the first thing in the thesis after the title

clearpage

addcontentsline{toc}{chapter}{Acknowledgments}
input{acknowledgments} %optional

clearpage

addcontentsline{toc}{chapter}{Dedication
input{dedication} %optional

clearpage


tableofcontents %automatically generate TOC
clearpage

listoftables %automatically generates list of tables
clearpage
listoffigures%automatically generates list of figures

clearpage

pagenumbering{arabic} % start normal numbering on the first page of chapter 1
input{chapter1}

input{chapter2}

input{chapter3}

input{chapter4}

input{chapter5}
clearpage

appendix %begin appendix section
chapter{Style guide} label{sec:appa}
input{appendixa}
clearpage



end{document}









share|improve this question







New contributor




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

























    0















    I know that pagestyle{empty} put page numbers only on 1st page of the chapter. But i commented the same and i still dont get page numbers execpt on chapter's 1st page.



    %This is the main file.  This is where you set up your preferences, name the packages you need, and use the "input" command to order the chapters and other major components of your thesis, most of which are set up as separate .tex files.  To see other project files, click the "Project" tab on the upper left.  If you click on a section in the pdf preview, you will jump to that file (Overleaf)
    documentclass[12pt]{report} %12 point font is set - Times New Roman is the default

    %These are a bunch of packages that may or may not be needed for features I use later
    usepackage{graphicx}
    usepackage[table]{xcolor}
    usepackage{amsmath}
    usepackage{amsthm}
    usepackage{amssymb}
    usepackage{hyperref}
    usepackage{url}
    usepackage{multicol}
    usepackage{booktabs}
    usepackage[toc,page]{appendix}
    usepackage{glossaries}
    input{glossary}
    renewcommandbibname{References}
    usepackage{setspace}
    usepackage[letterpaper,left=1in,right=1in,top=1in,bottom=1in]{geometry} %margin of bound side 1.5 in, rest of margins 1 in, per Creighton Thesis guideline formats
    usepackage{pdflscape}
    usepackage{subfigure}
    usepackage{pdfpages}
    widowpenalty10000% This automatically groups lines so there is at least 2 from each paragraph on a page. Optional
    clubpenalty10000 %see above comment
    usepackage{indentfirst} %This makes the first paragraph of a section indented. Optional.

    usepackage{breqn}
    usepackage{gensymb}

    %To float image where the syntax is%
    usepackage{float}
    %For algorithm%
    usepackage[]{algorithm2e}
    %For theorem environment
    theoremstyle{definition}
    newtheorem{theorem} {Theorem}

    begin{document}
    pagestyle{plain}
    frenchspacing

    newpage
    %thispagestyle{empty}

    mbox{}
    clearpage %blank page at beginning of pdf. not numbered

    input{approval} %Have this page printed and signed, then delete from your thesis and insert the signed version.

    %includepdf[scale=1.0]{Sig2.pdf} % After the dean signs the approval page, LuAnn Schwery sends you a pdf, which you insert into your thesis

    pagenumbering{roman} %begin roman numeral page numbers for the front matter
    input{cover} %title page

    doublespacing

    newpage %insert blank page, counted in page numbers
    %thispagestyle{empty} % do not display page number
    mbox{}
    clearpage

    addcontentsline{toc}{chapter}{Abstract}
    input{abstract} %Abstract is the first thing in the thesis after the title

    clearpage

    addcontentsline{toc}{chapter}{Acknowledgments}
    input{acknowledgments} %optional

    clearpage

    addcontentsline{toc}{chapter}{Dedication
    input{dedication} %optional

    clearpage


    tableofcontents %automatically generate TOC
    clearpage

    listoftables %automatically generates list of tables
    clearpage
    listoffigures%automatically generates list of figures

    clearpage

    pagenumbering{arabic} % start normal numbering on the first page of chapter 1
    input{chapter1}

    input{chapter2}

    input{chapter3}

    input{chapter4}

    input{chapter5}
    clearpage

    appendix %begin appendix section
    chapter{Style guide} label{sec:appa}
    input{appendixa}
    clearpage



    end{document}









    share|improve this question







    New contributor




    Harshal Karande 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 know that pagestyle{empty} put page numbers only on 1st page of the chapter. But i commented the same and i still dont get page numbers execpt on chapter's 1st page.



      %This is the main file.  This is where you set up your preferences, name the packages you need, and use the "input" command to order the chapters and other major components of your thesis, most of which are set up as separate .tex files.  To see other project files, click the "Project" tab on the upper left.  If you click on a section in the pdf preview, you will jump to that file (Overleaf)
      documentclass[12pt]{report} %12 point font is set - Times New Roman is the default

      %These are a bunch of packages that may or may not be needed for features I use later
      usepackage{graphicx}
      usepackage[table]{xcolor}
      usepackage{amsmath}
      usepackage{amsthm}
      usepackage{amssymb}
      usepackage{hyperref}
      usepackage{url}
      usepackage{multicol}
      usepackage{booktabs}
      usepackage[toc,page]{appendix}
      usepackage{glossaries}
      input{glossary}
      renewcommandbibname{References}
      usepackage{setspace}
      usepackage[letterpaper,left=1in,right=1in,top=1in,bottom=1in]{geometry} %margin of bound side 1.5 in, rest of margins 1 in, per Creighton Thesis guideline formats
      usepackage{pdflscape}
      usepackage{subfigure}
      usepackage{pdfpages}
      widowpenalty10000% This automatically groups lines so there is at least 2 from each paragraph on a page. Optional
      clubpenalty10000 %see above comment
      usepackage{indentfirst} %This makes the first paragraph of a section indented. Optional.

      usepackage{breqn}
      usepackage{gensymb}

      %To float image where the syntax is%
      usepackage{float}
      %For algorithm%
      usepackage[]{algorithm2e}
      %For theorem environment
      theoremstyle{definition}
      newtheorem{theorem} {Theorem}

      begin{document}
      pagestyle{plain}
      frenchspacing

      newpage
      %thispagestyle{empty}

      mbox{}
      clearpage %blank page at beginning of pdf. not numbered

      input{approval} %Have this page printed and signed, then delete from your thesis and insert the signed version.

      %includepdf[scale=1.0]{Sig2.pdf} % After the dean signs the approval page, LuAnn Schwery sends you a pdf, which you insert into your thesis

      pagenumbering{roman} %begin roman numeral page numbers for the front matter
      input{cover} %title page

      doublespacing

      newpage %insert blank page, counted in page numbers
      %thispagestyle{empty} % do not display page number
      mbox{}
      clearpage

      addcontentsline{toc}{chapter}{Abstract}
      input{abstract} %Abstract is the first thing in the thesis after the title

      clearpage

      addcontentsline{toc}{chapter}{Acknowledgments}
      input{acknowledgments} %optional

      clearpage

      addcontentsline{toc}{chapter}{Dedication
      input{dedication} %optional

      clearpage


      tableofcontents %automatically generate TOC
      clearpage

      listoftables %automatically generates list of tables
      clearpage
      listoffigures%automatically generates list of figures

      clearpage

      pagenumbering{arabic} % start normal numbering on the first page of chapter 1
      input{chapter1}

      input{chapter2}

      input{chapter3}

      input{chapter4}

      input{chapter5}
      clearpage

      appendix %begin appendix section
      chapter{Style guide} label{sec:appa}
      input{appendixa}
      clearpage



      end{document}









      share|improve this question







      New contributor




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












      I know that pagestyle{empty} put page numbers only on 1st page of the chapter. But i commented the same and i still dont get page numbers execpt on chapter's 1st page.



      %This is the main file.  This is where you set up your preferences, name the packages you need, and use the "input" command to order the chapters and other major components of your thesis, most of which are set up as separate .tex files.  To see other project files, click the "Project" tab on the upper left.  If you click on a section in the pdf preview, you will jump to that file (Overleaf)
      documentclass[12pt]{report} %12 point font is set - Times New Roman is the default

      %These are a bunch of packages that may or may not be needed for features I use later
      usepackage{graphicx}
      usepackage[table]{xcolor}
      usepackage{amsmath}
      usepackage{amsthm}
      usepackage{amssymb}
      usepackage{hyperref}
      usepackage{url}
      usepackage{multicol}
      usepackage{booktabs}
      usepackage[toc,page]{appendix}
      usepackage{glossaries}
      input{glossary}
      renewcommandbibname{References}
      usepackage{setspace}
      usepackage[letterpaper,left=1in,right=1in,top=1in,bottom=1in]{geometry} %margin of bound side 1.5 in, rest of margins 1 in, per Creighton Thesis guideline formats
      usepackage{pdflscape}
      usepackage{subfigure}
      usepackage{pdfpages}
      widowpenalty10000% This automatically groups lines so there is at least 2 from each paragraph on a page. Optional
      clubpenalty10000 %see above comment
      usepackage{indentfirst} %This makes the first paragraph of a section indented. Optional.

      usepackage{breqn}
      usepackage{gensymb}

      %To float image where the syntax is%
      usepackage{float}
      %For algorithm%
      usepackage[]{algorithm2e}
      %For theorem environment
      theoremstyle{definition}
      newtheorem{theorem} {Theorem}

      begin{document}
      pagestyle{plain}
      frenchspacing

      newpage
      %thispagestyle{empty}

      mbox{}
      clearpage %blank page at beginning of pdf. not numbered

      input{approval} %Have this page printed and signed, then delete from your thesis and insert the signed version.

      %includepdf[scale=1.0]{Sig2.pdf} % After the dean signs the approval page, LuAnn Schwery sends you a pdf, which you insert into your thesis

      pagenumbering{roman} %begin roman numeral page numbers for the front matter
      input{cover} %title page

      doublespacing

      newpage %insert blank page, counted in page numbers
      %thispagestyle{empty} % do not display page number
      mbox{}
      clearpage

      addcontentsline{toc}{chapter}{Abstract}
      input{abstract} %Abstract is the first thing in the thesis after the title

      clearpage

      addcontentsline{toc}{chapter}{Acknowledgments}
      input{acknowledgments} %optional

      clearpage

      addcontentsline{toc}{chapter}{Dedication
      input{dedication} %optional

      clearpage


      tableofcontents %automatically generate TOC
      clearpage

      listoftables %automatically generates list of tables
      clearpage
      listoffigures%automatically generates list of figures

      clearpage

      pagenumbering{arabic} % start normal numbering on the first page of chapter 1
      input{chapter1}

      input{chapter2}

      input{chapter3}

      input{chapter4}

      input{chapter5}
      clearpage

      appendix %begin appendix section
      chapter{Style guide} label{sec:appa}
      input{appendixa}
      clearpage



      end{document}






      page-numbering pagestyle






      share|improve this question







      New contributor




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











      share|improve this question







      New contributor




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









      share|improve this question




      share|improve this question






      New contributor




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









      asked 24 mins ago









      Harshal KarandeHarshal Karande

      1




      1




      New contributor




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





      New contributor





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






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


          }
          });






          Harshal Karande 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%2f477620%2fpage-numbers-appear-only-on-chapter-start-pages-how-to-get-them-on-all-the-page%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








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










          draft saved

          draft discarded


















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













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












          Harshal Karande 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%2f477620%2fpage-numbers-appear-only-on-chapter-start-pages-how-to-get-them-on-all-the-page%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

          IEEEtran - How to include ORCID in TeX/PDF with PdfLatexIs there a standard way to include ORCID in TeX /...

          Cicindela nigrior Przypisy | Menu nawigacyjneCicindela varians unicolorManual for the Identification of the...

          Glossaries-extra: Adding glossaries package to “Clas­sicTh­e­sis” template by Dr. André Miede v. 4.6 ...