How to effectively use List of Symbols for a thesis using .bib files?
Actually, this question has been already asked here:
How to effectively use List of Symbols for a thesis?
And there is a very good answer with 4 methods.
However...
Thank you very much for the post, very interesting! I am trying to implement the method 4 on Overleaf.com, but I meet some problems... Would be someone so kind to help me?
I have followed the example here above creating a file 'greek-symbols.bib' exactly as described above. Then I have a created a "symbols.tex" file:
usepackage[symbols,nogroupskip,
record % using 'bib2gls'
]{glossaries-extra}
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
In the main.tex, I call this file, the settings, and build the document (for example):
input{head/settings.tex} % place your packages, etc... in this file!
input{symbols.tex}
begin{document}
tableofcontents
listoftables
% Symbols
printunsrtglossary[type=symbols,style=long,title={List of Symbols}]
chapter{Mathematics}
Some symbols
Reference symbols: $gls{x}$, $gls{v}$, $gls{a}$, $gls{t}$, $gls{F}$.
end{document}
But the problem is that I obtain the following error:
Package gloassaries-extra Warning: No file 'output.glstex' on input
line 13.
If I look at line 13, it corresponds to the end of command
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
What is going on? Why following strictly the example, it does not work?
I would be very thankful if someone can help me.
Best regards, Elfo
table-of-contents symbols glossaries-extra
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Actually, this question has been already asked here:
How to effectively use List of Symbols for a thesis?
And there is a very good answer with 4 methods.
However...
Thank you very much for the post, very interesting! I am trying to implement the method 4 on Overleaf.com, but I meet some problems... Would be someone so kind to help me?
I have followed the example here above creating a file 'greek-symbols.bib' exactly as described above. Then I have a created a "symbols.tex" file:
usepackage[symbols,nogroupskip,
record % using 'bib2gls'
]{glossaries-extra}
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
In the main.tex, I call this file, the settings, and build the document (for example):
input{head/settings.tex} % place your packages, etc... in this file!
input{symbols.tex}
begin{document}
tableofcontents
listoftables
% Symbols
printunsrtglossary[type=symbols,style=long,title={List of Symbols}]
chapter{Mathematics}
Some symbols
Reference symbols: $gls{x}$, $gls{v}$, $gls{a}$, $gls{t}$, $gls{F}$.
end{document}
But the problem is that I obtain the following error:
Package gloassaries-extra Warning: No file 'output.glstex' on input
line 13.
If I look at line 13, it corresponds to the end of command
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
What is going on? Why following strictly the example, it does not work?
I would be very thankful if someone can help me.
Best regards, Elfo
table-of-contents symbols glossaries-extra
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Unfortunately Overleaf currently doesn't supportbib2glssee Problem with the Glossary+bib2gls on Overleaf.
– Nicola Talbot
5 hours ago
Ooh Gosh! That explains a lot of things! This is the reason why the bibliography is not working then! Thanks a lot. How to do then? Did you find a way to overcome that problem?
– Elfo2285
5 hours ago
You could ask Overleaf if they're going to add support forbib2gls. Perhaps if enough people ask they may add it.
– Nicola Talbot
3 hours ago
add a comment |
Actually, this question has been already asked here:
How to effectively use List of Symbols for a thesis?
And there is a very good answer with 4 methods.
However...
Thank you very much for the post, very interesting! I am trying to implement the method 4 on Overleaf.com, but I meet some problems... Would be someone so kind to help me?
I have followed the example here above creating a file 'greek-symbols.bib' exactly as described above. Then I have a created a "symbols.tex" file:
usepackage[symbols,nogroupskip,
record % using 'bib2gls'
]{glossaries-extra}
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
In the main.tex, I call this file, the settings, and build the document (for example):
input{head/settings.tex} % place your packages, etc... in this file!
input{symbols.tex}
begin{document}
tableofcontents
listoftables
% Symbols
printunsrtglossary[type=symbols,style=long,title={List of Symbols}]
chapter{Mathematics}
Some symbols
Reference symbols: $gls{x}$, $gls{v}$, $gls{a}$, $gls{t}$, $gls{F}$.
end{document}
But the problem is that I obtain the following error:
Package gloassaries-extra Warning: No file 'output.glstex' on input
line 13.
If I look at line 13, it corresponds to the end of command
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
What is going on? Why following strictly the example, it does not work?
I would be very thankful if someone can help me.
Best regards, Elfo
table-of-contents symbols glossaries-extra
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Actually, this question has been already asked here:
How to effectively use List of Symbols for a thesis?
And there is a very good answer with 4 methods.
However...
Thank you very much for the post, very interesting! I am trying to implement the method 4 on Overleaf.com, but I meet some problems... Would be someone so kind to help me?
I have followed the example here above creating a file 'greek-symbols.bib' exactly as described above. Then I have a created a "symbols.tex" file:
usepackage[symbols,nogroupskip,
record % using 'bib2gls'
]{glossaries-extra}
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
In the main.tex, I call this file, the settings, and build the document (for example):
input{head/settings.tex} % place your packages, etc... in this file!
input{symbols.tex}
begin{document}
tableofcontents
listoftables
% Symbols
printunsrtglossary[type=symbols,style=long,title={List of Symbols}]
chapter{Mathematics}
Some symbols
Reference symbols: $gls{x}$, $gls{v}$, $gls{a}$, $gls{t}$, $gls{F}$.
end{document}
But the problem is that I obtain the following error:
Package gloassaries-extra Warning: No file 'output.glstex' on input
line 13.
If I look at line 13, it corresponds to the end of command
GlsXtrLoadResources[
src={greek-symbols},% entries in 'greek-symbols.bib'
type=symbols,% put these entries in the 'symbols' glossary
save-locations=false% don't save locations
]
What is going on? Why following strictly the example, it does not work?
I would be very thankful if someone can help me.
Best regards, Elfo
table-of-contents symbols glossaries-extra
table-of-contents symbols glossaries-extra
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 5 hours ago
Elfo2285Elfo2285
61
61
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Elfo2285 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1
Unfortunately Overleaf currently doesn't supportbib2glssee Problem with the Glossary+bib2gls on Overleaf.
– Nicola Talbot
5 hours ago
Ooh Gosh! That explains a lot of things! This is the reason why the bibliography is not working then! Thanks a lot. How to do then? Did you find a way to overcome that problem?
– Elfo2285
5 hours ago
You could ask Overleaf if they're going to add support forbib2gls. Perhaps if enough people ask they may add it.
– Nicola Talbot
3 hours ago
add a comment |
1
Unfortunately Overleaf currently doesn't supportbib2glssee Problem with the Glossary+bib2gls on Overleaf.
– Nicola Talbot
5 hours ago
Ooh Gosh! That explains a lot of things! This is the reason why the bibliography is not working then! Thanks a lot. How to do then? Did you find a way to overcome that problem?
– Elfo2285
5 hours ago
You could ask Overleaf if they're going to add support forbib2gls. Perhaps if enough people ask they may add it.
– Nicola Talbot
3 hours ago
1
1
Unfortunately Overleaf currently doesn't support
bib2gls see Problem with the Glossary+bib2gls on Overleaf.– Nicola Talbot
5 hours ago
Unfortunately Overleaf currently doesn't support
bib2gls see Problem with the Glossary+bib2gls on Overleaf.– Nicola Talbot
5 hours ago
Ooh Gosh! That explains a lot of things! This is the reason why the bibliography is not working then! Thanks a lot. How to do then? Did you find a way to overcome that problem?
– Elfo2285
5 hours ago
Ooh Gosh! That explains a lot of things! This is the reason why the bibliography is not working then! Thanks a lot. How to do then? Did you find a way to overcome that problem?
– Elfo2285
5 hours ago
You could ask Overleaf if they're going to add support for
bib2gls. Perhaps if enough people ask they may add it.– Nicola Talbot
3 hours ago
You could ask Overleaf if they're going to add support for
bib2gls. Perhaps if enough people ask they may add it.– Nicola Talbot
3 hours ago
add a comment |
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
});
}
});
Elfo2285 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f469227%2fhow-to-effectively-use-list-of-symbols-for-a-thesis-using-bib-files%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
Elfo2285 is a new contributor. Be nice, and check out our Code of Conduct.
Elfo2285 is a new contributor. Be nice, and check out our Code of Conduct.
Elfo2285 is a new contributor. Be nice, and check out our Code of Conduct.
Elfo2285 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.
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%2f469227%2fhow-to-effectively-use-list-of-symbols-for-a-thesis-using-bib-files%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
1
Unfortunately Overleaf currently doesn't support
bib2glssee Problem with the Glossary+bib2gls on Overleaf.– Nicola Talbot
5 hours ago
Ooh Gosh! That explains a lot of things! This is the reason why the bibliography is not working then! Thanks a lot. How to do then? Did you find a way to overcome that problem?
– Elfo2285
5 hours ago
You could ask Overleaf if they're going to add support for
bib2gls. Perhaps if enough people ask they may add it.– Nicola Talbot
3 hours ago