How to prevent page numbers from appearing on glossaries?











up vote
22
down vote

favorite
4












I am using the glossaries package to make a glossary. However I don't want the page numbers where the entry is referenced to be shown after the description in the glossary. How can I do that? Actually I use in preamble:



usepackage[acronym]{glossaries}
makeglossaries


and inside the document:



printglossary[type=main,style=long]


I don't want the page numbers to be displayed because there are entries that are added in preamble with the command glsadd{entry} and it will appear as present on page 1. And sometimes the page numbers list won't be complete, that is, there will be parts of the text which will contain one term and it won't reference directly the glossary.



How to prevent the page number to appear on glossary?










share|improve this question




























    up vote
    22
    down vote

    favorite
    4












    I am using the glossaries package to make a glossary. However I don't want the page numbers where the entry is referenced to be shown after the description in the glossary. How can I do that? Actually I use in preamble:



    usepackage[acronym]{glossaries}
    makeglossaries


    and inside the document:



    printglossary[type=main,style=long]


    I don't want the page numbers to be displayed because there are entries that are added in preamble with the command glsadd{entry} and it will appear as present on page 1. And sometimes the page numbers list won't be complete, that is, there will be parts of the text which will contain one term and it won't reference directly the glossary.



    How to prevent the page number to appear on glossary?










    share|improve this question


























      up vote
      22
      down vote

      favorite
      4









      up vote
      22
      down vote

      favorite
      4






      4





      I am using the glossaries package to make a glossary. However I don't want the page numbers where the entry is referenced to be shown after the description in the glossary. How can I do that? Actually I use in preamble:



      usepackage[acronym]{glossaries}
      makeglossaries


      and inside the document:



      printglossary[type=main,style=long]


      I don't want the page numbers to be displayed because there are entries that are added in preamble with the command glsadd{entry} and it will appear as present on page 1. And sometimes the page numbers list won't be complete, that is, there will be parts of the text which will contain one term and it won't reference directly the glossary.



      How to prevent the page number to appear on glossary?










      share|improve this question















      I am using the glossaries package to make a glossary. However I don't want the page numbers where the entry is referenced to be shown after the description in the glossary. How can I do that? Actually I use in preamble:



      usepackage[acronym]{glossaries}
      makeglossaries


      and inside the document:



      printglossary[type=main,style=long]


      I don't want the page numbers to be displayed because there are entries that are added in preamble with the command glsadd{entry} and it will appear as present on page 1. And sometimes the page numbers list won't be complete, that is, there will be parts of the text which will contain one term and it won't reference directly the glossary.



      How to prevent the page number to appear on glossary?







      page-numbering glossaries






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited May 24 '12 at 19:13









      lockstep

      189k52585718




      189k52585718










      asked Mar 10 '11 at 18:17









      Weslei

      1,63052036




      1,63052036






















          3 Answers
          3






          active

          oldest

          votes

















          up vote
          33
          down vote



          accepted










          Throwing a glance at p. 90 of the glossaries manual, I suppose that the package option nonumberlist does the trick.






          share|improve this answer



















          • 1




            Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
            – Weslei
            Mar 10 '11 at 18:42








          • 2




            This works in my case: usepackage[acronym,nonumberlist]{glossaries}
            – Khaaba
            May 31 '16 at 4:39




















          up vote
          14
          down vote













          put option nonumberlist as option of printglossary



          printglossary[type=main,style=long,nonumberlist]


          if print the glossary using printnoidxglossary use option nonumberlist as well



          printnoidxglossary[type=acronymtype,title=Abreviations,nonumberlist]

          printnoidxglossary[title=Symbol,nonumberlist]





          share|improve this answer






























            up vote
            0
            down vote













            The glossaries package now has a command, glsaddallunused, that will add all unused terms to the glossary without including a phantom page number. Place it in your document after its content but before you print the glossaries. It will print accurate page numbers for terms used in your document but no page number for those that were not. Please see the latest documentation for more details.






            share|improve this answer








            New contributor




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


















              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',
              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%2f13162%2fhow-to-prevent-page-numbers-from-appearing-on-glossaries%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              33
              down vote



              accepted










              Throwing a glance at p. 90 of the glossaries manual, I suppose that the package option nonumberlist does the trick.






              share|improve this answer



















              • 1




                Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
                – Weslei
                Mar 10 '11 at 18:42








              • 2




                This works in my case: usepackage[acronym,nonumberlist]{glossaries}
                – Khaaba
                May 31 '16 at 4:39

















              up vote
              33
              down vote



              accepted










              Throwing a glance at p. 90 of the glossaries manual, I suppose that the package option nonumberlist does the trick.






              share|improve this answer



















              • 1




                Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
                – Weslei
                Mar 10 '11 at 18:42








              • 2




                This works in my case: usepackage[acronym,nonumberlist]{glossaries}
                – Khaaba
                May 31 '16 at 4:39















              up vote
              33
              down vote



              accepted







              up vote
              33
              down vote



              accepted






              Throwing a glance at p. 90 of the glossaries manual, I suppose that the package option nonumberlist does the trick.






              share|improve this answer














              Throwing a glance at p. 90 of the glossaries manual, I suppose that the package option nonumberlist does the trick.







              share|improve this answer














              share|improve this answer



              share|improve this answer








              edited Feb 7 at 19:46









              elBradford

              1646




              1646










              answered Mar 10 '11 at 18:33









              lockstep

              189k52585718




              189k52585718








              • 1




                Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
                – Weslei
                Mar 10 '11 at 18:42








              • 2




                This works in my case: usepackage[acronym,nonumberlist]{glossaries}
                – Khaaba
                May 31 '16 at 4:39
















              • 1




                Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
                – Weslei
                Mar 10 '11 at 18:42








              • 2




                This works in my case: usepackage[acronym,nonumberlist]{glossaries}
                – Khaaba
                May 31 '16 at 4:39










              1




              1




              Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
              – Weslei
              Mar 10 '11 at 18:42






              Thanks for pointing the solution. The option nonumberlist gives the following error: ! LaTeX Error: Option clash for package glossaries. However I made it to work using: renewcommand*{glossaryentrynumbers}[1]{}
              – Weslei
              Mar 10 '11 at 18:42






              2




              2




              This works in my case: usepackage[acronym,nonumberlist]{glossaries}
              – Khaaba
              May 31 '16 at 4:39






              This works in my case: usepackage[acronym,nonumberlist]{glossaries}
              – Khaaba
              May 31 '16 at 4:39












              up vote
              14
              down vote













              put option nonumberlist as option of printglossary



              printglossary[type=main,style=long,nonumberlist]


              if print the glossary using printnoidxglossary use option nonumberlist as well



              printnoidxglossary[type=acronymtype,title=Abreviations,nonumberlist]

              printnoidxglossary[title=Symbol,nonumberlist]





              share|improve this answer



























                up vote
                14
                down vote













                put option nonumberlist as option of printglossary



                printglossary[type=main,style=long,nonumberlist]


                if print the glossary using printnoidxglossary use option nonumberlist as well



                printnoidxglossary[type=acronymtype,title=Abreviations,nonumberlist]

                printnoidxglossary[title=Symbol,nonumberlist]





                share|improve this answer

























                  up vote
                  14
                  down vote










                  up vote
                  14
                  down vote









                  put option nonumberlist as option of printglossary



                  printglossary[type=main,style=long,nonumberlist]


                  if print the glossary using printnoidxglossary use option nonumberlist as well



                  printnoidxglossary[type=acronymtype,title=Abreviations,nonumberlist]

                  printnoidxglossary[title=Symbol,nonumberlist]





                  share|improve this answer














                  put option nonumberlist as option of printglossary



                  printglossary[type=main,style=long,nonumberlist]


                  if print the glossary using printnoidxglossary use option nonumberlist as well



                  printnoidxglossary[type=acronymtype,title=Abreviations,nonumberlist]

                  printnoidxglossary[title=Symbol,nonumberlist]






                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Dec 5 '14 at 0:05









                  Kurt

                  34.1k846156




                  34.1k846156










                  answered Dec 4 '14 at 23:55









                  user67464

                  14112




                  14112






















                      up vote
                      0
                      down vote













                      The glossaries package now has a command, glsaddallunused, that will add all unused terms to the glossary without including a phantom page number. Place it in your document after its content but before you print the glossaries. It will print accurate page numbers for terms used in your document but no page number for those that were not. Please see the latest documentation for more details.






                      share|improve this answer








                      New contributor




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






















                        up vote
                        0
                        down vote













                        The glossaries package now has a command, glsaddallunused, that will add all unused terms to the glossary without including a phantom page number. Place it in your document after its content but before you print the glossaries. It will print accurate page numbers for terms used in your document but no page number for those that were not. Please see the latest documentation for more details.






                        share|improve this answer








                        New contributor




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




















                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          The glossaries package now has a command, glsaddallunused, that will add all unused terms to the glossary without including a phantom page number. Place it in your document after its content but before you print the glossaries. It will print accurate page numbers for terms used in your document but no page number for those that were not. Please see the latest documentation for more details.






                          share|improve this answer








                          New contributor




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









                          The glossaries package now has a command, glsaddallunused, that will add all unused terms to the glossary without including a phantom page number. Place it in your document after its content but before you print the glossaries. It will print accurate page numbers for terms used in your document but no page number for those that were not. Please see the latest documentation for more details.







                          share|improve this answer








                          New contributor




                          Dylon 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 answer



                          share|improve this answer






                          New contributor




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









                          answered 4 hours ago









                          Dylon

                          1033




                          1033




                          New contributor




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





                          New contributor





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






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






























                              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%2f13162%2fhow-to-prevent-page-numbers-from-appearing-on-glossaries%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

                              Contact image not getting when fetch all contact list from iPhone by CNContact

                              count number of partitions of a set with n elements into k subsets

                              A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks