How to prevent page numbers from appearing on glossaries?
up vote
22
down vote
favorite
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
add a comment |
up vote
22
down vote
favorite
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
add a comment |
up vote
22
down vote
favorite
up vote
22
down vote
favorite
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
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
page-numbering glossaries
edited May 24 '12 at 19:13
lockstep
189k52585718
189k52585718
asked Mar 10 '11 at 18:17
Weslei
1,63052036
1,63052036
add a comment |
add a comment |
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.
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
add a comment |
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]
add a comment |
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.
New contributor
add a comment |
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.
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
add a comment |
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.
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
add a comment |
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.
Throwing a glance at p. 90 of the glossaries
manual, I suppose that the package option nonumberlist
does the trick.
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
add a comment |
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
add a comment |
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]
add a comment |
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]
add a comment |
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]
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]
edited Dec 5 '14 at 0:05
Kurt
34.1k846156
34.1k846156
answered Dec 4 '14 at 23:55
user67464
14112
14112
add a comment |
add a comment |
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.
New contributor
add a comment |
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.
New contributor
add a comment |
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.
New contributor
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.
New contributor
New contributor
answered 4 hours ago
Dylon
1033
1033
New contributor
New contributor
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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