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

How did Captain America manage to do this?

Can we say “you can pay when the order gets ready”?

Do I have an "anti-research" personality?

What makes accurate emulation of old systems a difficult task?

I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?

"You've called the wrong number" or "You called the wrong number"

Alignment of various blocks in tikz

Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?

Why does nature favour the Laplacian?

Two field separators (colon and space) in awk

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

Don’t seats that recline flat defeat the purpose of having seatbelts?

Why must Chinese maps be obfuscated?

What does ゆーか mean?

Solving polynominals equations (relationship of roots)

Pulling the rope with one hand is as heavy as with two hands?

How does a program know if stdout is connected to a terminal or a pipe?

How to have a sharp product image?

Pre-plastic human skin alternative

How do I deal with a coworker that keeps asking to make small superficial changes to a report, and it is seriously triggering my anxiety?

Check if a string is entirely made of the same substring

Should the Death Curse affect an undead PC in the Tomb of Annihilation adventure?

Can an Area of Effect spell cast outside a Prismatic Wall extend inside it?

How exactly does Hawking radiation decrease the mass of black holes?



How to prevent page numbers from appearing on glossaries?


How to remove a dot and a page number in the environment 'glossaries'How to highlight important pages in glossaries page number listGlossaries: How to determine in which glossary an entry is defined?How to suppress certain defined entries from appearing in the acronym list using glossaries package?Errors when using glossaries packageGlossaries: customize number lists (page numbers) attached to each acronymGlossary entry not displayed in listIssue with glossary page numbersHow to suppress a glossary page number for an individual entry?Image on Glossary pageglossaries dual entries: prevent page from acronym list appearing in glossary number list













22















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





























    22















    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



























      22












      22








      22


      6






      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

      193k54597723




      193k54597723










      asked Mar 10 '11 at 18:17









      WesleiWeslei

      1,66552136




      1,66552136






















          4 Answers
          4






          active

          oldest

          votes


















          34














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



          So change:



          printglossary[type=main,style=long]


          to:



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





          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








          • 3





            This works in my case: usepackage[acronym,nonumberlist]{glossaries}

            – Khaaba
            May 31 '16 at 4:39













          • @Khaaba This is the correct answer. Would you mind posting it as such?

            – Toivo Säwén
            18 hours ago











          • @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

            – Khaaba
            9 mins ago



















          15














          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

































            2














            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































              0














              @Toivo Säwén, here is the sample. You may play removing nonumberlist in the package option of glossaries and see what happens.



              documentclass{article}
              usepackage{lipsum,hyperref}

              usepackage[acronym, nonumberlist]{glossaries}
              makenoidxglossaries
              newglossaryentry{potato}{name={potato},plural={potatoes},description={starchy tuber}}
              newglossaryentry{cabbage}{name={cabbage},description={vegetable with thick green or purple leaves}}
              newglossaryentry{carrot}{name={carrot},description={orange root}}

              setacronymstyle{long-short}
              newacronym{svm}{SVM}{support vector machine}
              newacronym{nehu}{NEHU}{North-Eastern Hill University}

              begin{document}
              lipsum[1-3]

              Chop the gls{cabbage} and glspl*{carrot}. First meaning less appearance in gls{svm} and then gls{svm} and gls{nehu}

              lipsum[1-6]

              Slice the gls{cabbage} and glspl{potato}. Second appearance in gls{svm} and then gls{svm} and gls{nehu}

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

                Post as a guest















                Required, but never shown

























                4 Answers
                4






                active

                oldest

                votes








                4 Answers
                4






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                34














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



                So change:



                printglossary[type=main,style=long]


                to:



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





                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








                • 3





                  This works in my case: usepackage[acronym,nonumberlist]{glossaries}

                  – Khaaba
                  May 31 '16 at 4:39













                • @Khaaba This is the correct answer. Would you mind posting it as such?

                  – Toivo Säwén
                  18 hours ago











                • @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

                  – Khaaba
                  9 mins ago
















                34














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



                So change:



                printglossary[type=main,style=long]


                to:



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





                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








                • 3





                  This works in my case: usepackage[acronym,nonumberlist]{glossaries}

                  – Khaaba
                  May 31 '16 at 4:39













                • @Khaaba This is the correct answer. Would you mind posting it as such?

                  – Toivo Säwén
                  18 hours ago











                • @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

                  – Khaaba
                  9 mins ago














                34












                34








                34







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



                So change:



                printglossary[type=main,style=long]


                to:



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





                share|improve this answer















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



                So change:



                printglossary[type=main,style=long]


                to:



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






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Dec 26 '18 at 20:47









                vy32

                1,66742235




                1,66742235










                answered Mar 10 '11 at 18:33









                locksteplockstep

                193k54597723




                193k54597723








                • 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








                • 3





                  This works in my case: usepackage[acronym,nonumberlist]{glossaries}

                  – Khaaba
                  May 31 '16 at 4:39













                • @Khaaba This is the correct answer. Would you mind posting it as such?

                  – Toivo Säwén
                  18 hours ago











                • @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

                  – Khaaba
                  9 mins ago














                • 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








                • 3





                  This works in my case: usepackage[acronym,nonumberlist]{glossaries}

                  – Khaaba
                  May 31 '16 at 4:39













                • @Khaaba This is the correct answer. Would you mind posting it as such?

                  – Toivo Säwén
                  18 hours ago











                • @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

                  – Khaaba
                  9 mins ago








                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






                3




                3





                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















                @Khaaba This is the correct answer. Would you mind posting it as such?

                – Toivo Säwén
                18 hours ago





                @Khaaba This is the correct answer. Would you mind posting it as such?

                – Toivo Säwén
                18 hours ago













                @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

                – Khaaba
                9 mins ago





                @Toivo Säwén, give a check below. Added as an answer for your reference only since the question has marked answered already.

                – Khaaba
                9 mins ago











                15














                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






























                  15














                  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




























                    15












                    15








                    15







                    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

                    42.2k950166




                    42.2k950166










                    answered Dec 4 '14 at 23:55









                    user67464user67464

                    15112




                    15112























                        2














                        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




























                          2














                          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


























                            2












                            2








                            2







                            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













                            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












                            share|improve this answer



                            share|improve this answer










                            answered Nov 29 '18 at 23:10









                            DylonDylon

                            1407




                            1407























                                0














                                @Toivo Säwén, here is the sample. You may play removing nonumberlist in the package option of glossaries and see what happens.



                                documentclass{article}
                                usepackage{lipsum,hyperref}

                                usepackage[acronym, nonumberlist]{glossaries}
                                makenoidxglossaries
                                newglossaryentry{potato}{name={potato},plural={potatoes},description={starchy tuber}}
                                newglossaryentry{cabbage}{name={cabbage},description={vegetable with thick green or purple leaves}}
                                newglossaryentry{carrot}{name={carrot},description={orange root}}

                                setacronymstyle{long-short}
                                newacronym{svm}{SVM}{support vector machine}
                                newacronym{nehu}{NEHU}{North-Eastern Hill University}

                                begin{document}
                                lipsum[1-3]

                                Chop the gls{cabbage} and glspl*{carrot}. First meaning less appearance in gls{svm} and then gls{svm} and gls{nehu}

                                lipsum[1-6]

                                Slice the gls{cabbage} and glspl{potato}. Second appearance in gls{svm} and then gls{svm} and gls{nehu}

                                printnoidxglossaries
                                end{document}





                                share|improve this answer




























                                  0














                                  @Toivo Säwén, here is the sample. You may play removing nonumberlist in the package option of glossaries and see what happens.



                                  documentclass{article}
                                  usepackage{lipsum,hyperref}

                                  usepackage[acronym, nonumberlist]{glossaries}
                                  makenoidxglossaries
                                  newglossaryentry{potato}{name={potato},plural={potatoes},description={starchy tuber}}
                                  newglossaryentry{cabbage}{name={cabbage},description={vegetable with thick green or purple leaves}}
                                  newglossaryentry{carrot}{name={carrot},description={orange root}}

                                  setacronymstyle{long-short}
                                  newacronym{svm}{SVM}{support vector machine}
                                  newacronym{nehu}{NEHU}{North-Eastern Hill University}

                                  begin{document}
                                  lipsum[1-3]

                                  Chop the gls{cabbage} and glspl*{carrot}. First meaning less appearance in gls{svm} and then gls{svm} and gls{nehu}

                                  lipsum[1-6]

                                  Slice the gls{cabbage} and glspl{potato}. Second appearance in gls{svm} and then gls{svm} and gls{nehu}

                                  printnoidxglossaries
                                  end{document}





                                  share|improve this answer


























                                    0












                                    0








                                    0







                                    @Toivo Säwén, here is the sample. You may play removing nonumberlist in the package option of glossaries and see what happens.



                                    documentclass{article}
                                    usepackage{lipsum,hyperref}

                                    usepackage[acronym, nonumberlist]{glossaries}
                                    makenoidxglossaries
                                    newglossaryentry{potato}{name={potato},plural={potatoes},description={starchy tuber}}
                                    newglossaryentry{cabbage}{name={cabbage},description={vegetable with thick green or purple leaves}}
                                    newglossaryentry{carrot}{name={carrot},description={orange root}}

                                    setacronymstyle{long-short}
                                    newacronym{svm}{SVM}{support vector machine}
                                    newacronym{nehu}{NEHU}{North-Eastern Hill University}

                                    begin{document}
                                    lipsum[1-3]

                                    Chop the gls{cabbage} and glspl*{carrot}. First meaning less appearance in gls{svm} and then gls{svm} and gls{nehu}

                                    lipsum[1-6]

                                    Slice the gls{cabbage} and glspl{potato}. Second appearance in gls{svm} and then gls{svm} and gls{nehu}

                                    printnoidxglossaries
                                    end{document}





                                    share|improve this answer













                                    @Toivo Säwén, here is the sample. You may play removing nonumberlist in the package option of glossaries and see what happens.



                                    documentclass{article}
                                    usepackage{lipsum,hyperref}

                                    usepackage[acronym, nonumberlist]{glossaries}
                                    makenoidxglossaries
                                    newglossaryentry{potato}{name={potato},plural={potatoes},description={starchy tuber}}
                                    newglossaryentry{cabbage}{name={cabbage},description={vegetable with thick green or purple leaves}}
                                    newglossaryentry{carrot}{name={carrot},description={orange root}}

                                    setacronymstyle{long-short}
                                    newacronym{svm}{SVM}{support vector machine}
                                    newacronym{nehu}{NEHU}{North-Eastern Hill University}

                                    begin{document}
                                    lipsum[1-3]

                                    Chop the gls{cabbage} and glspl*{carrot}. First meaning less appearance in gls{svm} and then gls{svm} and gls{nehu}

                                    lipsum[1-6]

                                    Slice the gls{cabbage} and glspl{potato}. Second appearance in gls{svm} and then gls{svm} and gls{nehu}

                                    printnoidxglossaries
                                    end{document}






                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered 13 mins ago









                                    KhaabaKhaaba

                                    9421027




                                    9421027






























                                        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%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

                                        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...