Repeated Entry Error Message - Bibtex
up vote
1
down vote
favorite
As soon as I include bibliography{Literature}
in my code, I get the following error message:
Transcript written on THESISSS.log.
This is BibTeX, Version 0.99d (MiKTeX 2.9.6730 64-bit)
The top-level auxiliary file: THESISSS.aux
The style file: ecca.bst
I couldn't open database file LIT.bib
---line 112 of file THESISSS.aux
: bibdata{LIT
: }
I'm skipping whatever remains of this command
I found no database files---while reading file THESISSS.aux
Frankly speaking, I have no idea where to find the THESISSS.aux file (I only
know how to delete it).
Any help would be much appreciated!
Best
targa
bibtex
New contributor
|
show 4 more comments
up vote
1
down vote
favorite
As soon as I include bibliography{Literature}
in my code, I get the following error message:
Transcript written on THESISSS.log.
This is BibTeX, Version 0.99d (MiKTeX 2.9.6730 64-bit)
The top-level auxiliary file: THESISSS.aux
The style file: ecca.bst
I couldn't open database file LIT.bib
---line 112 of file THESISSS.aux
: bibdata{LIT
: }
I'm skipping whatever remains of this command
I found no database files---while reading file THESISSS.aux
Frankly speaking, I have no idea where to find the THESISSS.aux file (I only
know how to delete it).
Any help would be much appreciated!
Best
targa
bibtex
New contributor
The leading comma in@Book{,
is the problem, as moewe says you must have the citation key before that comma so@Book{yermack,
then in the tex file you can usecite{yermack}
to reference this work. With no usable key you can not reference it and if you have that error twice you will have two entries with the empty string as key so get the error that you state.
– David Carlisle
Nov 26 at 10:54
you have tagged this biblatex but the error message suggests that you are using bibtex
– David Carlisle
Nov 26 at 10:55
Thank you for your quick feedback! moewe: unfortunately this does not help :/ David Carlisle: interestingly, the code works if I run it as pdfLateX. But it does not work with pdfLateX+MakeIndex+BibTex
– targa
Nov 26 at 11:10
You need a different key for each entry. I can assure you that if you add a key the error message will be different.
– moewe
Nov 26 at 11:11
1
The file was indeed in the wrong folder. THANK YOU for your help! It is much appreciated.
– targa
Nov 26 at 14:46
|
show 4 more comments
up vote
1
down vote
favorite
up vote
1
down vote
favorite
As soon as I include bibliography{Literature}
in my code, I get the following error message:
Transcript written on THESISSS.log.
This is BibTeX, Version 0.99d (MiKTeX 2.9.6730 64-bit)
The top-level auxiliary file: THESISSS.aux
The style file: ecca.bst
I couldn't open database file LIT.bib
---line 112 of file THESISSS.aux
: bibdata{LIT
: }
I'm skipping whatever remains of this command
I found no database files---while reading file THESISSS.aux
Frankly speaking, I have no idea where to find the THESISSS.aux file (I only
know how to delete it).
Any help would be much appreciated!
Best
targa
bibtex
New contributor
As soon as I include bibliography{Literature}
in my code, I get the following error message:
Transcript written on THESISSS.log.
This is BibTeX, Version 0.99d (MiKTeX 2.9.6730 64-bit)
The top-level auxiliary file: THESISSS.aux
The style file: ecca.bst
I couldn't open database file LIT.bib
---line 112 of file THESISSS.aux
: bibdata{LIT
: }
I'm skipping whatever remains of this command
I found no database files---while reading file THESISSS.aux
Frankly speaking, I have no idea where to find the THESISSS.aux file (I only
know how to delete it).
Any help would be much appreciated!
Best
targa
bibtex
bibtex
New contributor
New contributor
edited Nov 26 at 13:36
New contributor
asked Nov 26 at 10:48
targa
62
62
New contributor
New contributor
The leading comma in@Book{,
is the problem, as moewe says you must have the citation key before that comma so@Book{yermack,
then in the tex file you can usecite{yermack}
to reference this work. With no usable key you can not reference it and if you have that error twice you will have two entries with the empty string as key so get the error that you state.
– David Carlisle
Nov 26 at 10:54
you have tagged this biblatex but the error message suggests that you are using bibtex
– David Carlisle
Nov 26 at 10:55
Thank you for your quick feedback! moewe: unfortunately this does not help :/ David Carlisle: interestingly, the code works if I run it as pdfLateX. But it does not work with pdfLateX+MakeIndex+BibTex
– targa
Nov 26 at 11:10
You need a different key for each entry. I can assure you that if you add a key the error message will be different.
– moewe
Nov 26 at 11:11
1
The file was indeed in the wrong folder. THANK YOU for your help! It is much appreciated.
– targa
Nov 26 at 14:46
|
show 4 more comments
The leading comma in@Book{,
is the problem, as moewe says you must have the citation key before that comma so@Book{yermack,
then in the tex file you can usecite{yermack}
to reference this work. With no usable key you can not reference it and if you have that error twice you will have two entries with the empty string as key so get the error that you state.
– David Carlisle
Nov 26 at 10:54
you have tagged this biblatex but the error message suggests that you are using bibtex
– David Carlisle
Nov 26 at 10:55
Thank you for your quick feedback! moewe: unfortunately this does not help :/ David Carlisle: interestingly, the code works if I run it as pdfLateX. But it does not work with pdfLateX+MakeIndex+BibTex
– targa
Nov 26 at 11:10
You need a different key for each entry. I can assure you that if you add a key the error message will be different.
– moewe
Nov 26 at 11:11
1
The file was indeed in the wrong folder. THANK YOU for your help! It is much appreciated.
– targa
Nov 26 at 14:46
The leading comma in
@Book{,
is the problem, as moewe says you must have the citation key before that comma so @Book{yermack,
then in the tex file you can use cite{yermack}
to reference this work. With no usable key you can not reference it and if you have that error twice you will have two entries with the empty string as key so get the error that you state.– David Carlisle
Nov 26 at 10:54
The leading comma in
@Book{,
is the problem, as moewe says you must have the citation key before that comma so @Book{yermack,
then in the tex file you can use cite{yermack}
to reference this work. With no usable key you can not reference it and if you have that error twice you will have two entries with the empty string as key so get the error that you state.– David Carlisle
Nov 26 at 10:54
you have tagged this biblatex but the error message suggests that you are using bibtex
– David Carlisle
Nov 26 at 10:55
you have tagged this biblatex but the error message suggests that you are using bibtex
– David Carlisle
Nov 26 at 10:55
Thank you for your quick feedback! moewe: unfortunately this does not help :/ David Carlisle: interestingly, the code works if I run it as pdfLateX. But it does not work with pdfLateX+MakeIndex+BibTex
– targa
Nov 26 at 11:10
Thank you for your quick feedback! moewe: unfortunately this does not help :/ David Carlisle: interestingly, the code works if I run it as pdfLateX. But it does not work with pdfLateX+MakeIndex+BibTex
– targa
Nov 26 at 11:10
You need a different key for each entry. I can assure you that if you add a key the error message will be different.
– moewe
Nov 26 at 11:11
You need a different key for each entry. I can assure you that if you add a key the error message will be different.
– moewe
Nov 26 at 11:11
1
1
The file was indeed in the wrong folder. THANK YOU for your help! It is much appreciated.
– targa
Nov 26 at 14:46
The file was indeed in the wrong folder. THANK YOU for your help! It is much appreciated.
– targa
Nov 26 at 14:46
|
show 4 more comments
1 Answer
1
active
oldest
votes
up vote
1
down vote
As it turned out in the comments there was a confusion about which
.bib
file was or should be read by BibTeX (there were several files with similar names in different directories).
This answer is about an earlier version of the question where the
.bib
file snippet read
year = {2018},
date = {2018-07-30},
url = {https://www.coinmarketcap.com},
}
@Book{,
author = {David Yermack},
title = {Handbook of Digital Currency},
Each entry in your .bib
file must have a unique entry key. This entry key can be used to reference the work in the .tex
document with cite{<entry key>}
. The key is given in the .bib
entry directly after the opening curly bracket in @<type>{
as in the scheme
@<type>{<entry key>,
<field_1> = {<value_1>},
<field_2> = {<value_2>},
...
<field_n> = {<value_n>},
}
So you should have something like @Book{yermack
, instead of @Book{,
Technically it is possible to have an empty entry key in a .bib
file (with BibTeX, Biber won't like empty keys), but since keys must be unique you can't have two or more entries with an empty key. Additionally citing empty keys might be problematic.
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
@targa Please update your question wit the new file. Then delete the.aux
and.bbl
files and recompile again. Upload also the.blg
file/the log message.
– moewe
Nov 26 at 11:20
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown.bib
file works with BibTeX'splain
style just fine. If you are still getting theRepeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.
– moewe
Nov 26 at 12:01
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
As it turned out in the comments there was a confusion about which
.bib
file was or should be read by BibTeX (there were several files with similar names in different directories).
This answer is about an earlier version of the question where the
.bib
file snippet read
year = {2018},
date = {2018-07-30},
url = {https://www.coinmarketcap.com},
}
@Book{,
author = {David Yermack},
title = {Handbook of Digital Currency},
Each entry in your .bib
file must have a unique entry key. This entry key can be used to reference the work in the .tex
document with cite{<entry key>}
. The key is given in the .bib
entry directly after the opening curly bracket in @<type>{
as in the scheme
@<type>{<entry key>,
<field_1> = {<value_1>},
<field_2> = {<value_2>},
...
<field_n> = {<value_n>},
}
So you should have something like @Book{yermack
, instead of @Book{,
Technically it is possible to have an empty entry key in a .bib
file (with BibTeX, Biber won't like empty keys), but since keys must be unique you can't have two or more entries with an empty key. Additionally citing empty keys might be problematic.
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
@targa Please update your question wit the new file. Then delete the.aux
and.bbl
files and recompile again. Upload also the.blg
file/the log message.
– moewe
Nov 26 at 11:20
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown.bib
file works with BibTeX'splain
style just fine. If you are still getting theRepeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.
– moewe
Nov 26 at 12:01
add a comment |
up vote
1
down vote
As it turned out in the comments there was a confusion about which
.bib
file was or should be read by BibTeX (there were several files with similar names in different directories).
This answer is about an earlier version of the question where the
.bib
file snippet read
year = {2018},
date = {2018-07-30},
url = {https://www.coinmarketcap.com},
}
@Book{,
author = {David Yermack},
title = {Handbook of Digital Currency},
Each entry in your .bib
file must have a unique entry key. This entry key can be used to reference the work in the .tex
document with cite{<entry key>}
. The key is given in the .bib
entry directly after the opening curly bracket in @<type>{
as in the scheme
@<type>{<entry key>,
<field_1> = {<value_1>},
<field_2> = {<value_2>},
...
<field_n> = {<value_n>},
}
So you should have something like @Book{yermack
, instead of @Book{,
Technically it is possible to have an empty entry key in a .bib
file (with BibTeX, Biber won't like empty keys), but since keys must be unique you can't have two or more entries with an empty key. Additionally citing empty keys might be problematic.
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
@targa Please update your question wit the new file. Then delete the.aux
and.bbl
files and recompile again. Upload also the.blg
file/the log message.
– moewe
Nov 26 at 11:20
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown.bib
file works with BibTeX'splain
style just fine. If you are still getting theRepeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.
– moewe
Nov 26 at 12:01
add a comment |
up vote
1
down vote
up vote
1
down vote
As it turned out in the comments there was a confusion about which
.bib
file was or should be read by BibTeX (there were several files with similar names in different directories).
This answer is about an earlier version of the question where the
.bib
file snippet read
year = {2018},
date = {2018-07-30},
url = {https://www.coinmarketcap.com},
}
@Book{,
author = {David Yermack},
title = {Handbook of Digital Currency},
Each entry in your .bib
file must have a unique entry key. This entry key can be used to reference the work in the .tex
document with cite{<entry key>}
. The key is given in the .bib
entry directly after the opening curly bracket in @<type>{
as in the scheme
@<type>{<entry key>,
<field_1> = {<value_1>},
<field_2> = {<value_2>},
...
<field_n> = {<value_n>},
}
So you should have something like @Book{yermack
, instead of @Book{,
Technically it is possible to have an empty entry key in a .bib
file (with BibTeX, Biber won't like empty keys), but since keys must be unique you can't have two or more entries with an empty key. Additionally citing empty keys might be problematic.
As it turned out in the comments there was a confusion about which
.bib
file was or should be read by BibTeX (there were several files with similar names in different directories).
This answer is about an earlier version of the question where the
.bib
file snippet read
year = {2018},
date = {2018-07-30},
url = {https://www.coinmarketcap.com},
}
@Book{,
author = {David Yermack},
title = {Handbook of Digital Currency},
Each entry in your .bib
file must have a unique entry key. This entry key can be used to reference the work in the .tex
document with cite{<entry key>}
. The key is given in the .bib
entry directly after the opening curly bracket in @<type>{
as in the scheme
@<type>{<entry key>,
<field_1> = {<value_1>},
<field_2> = {<value_2>},
...
<field_n> = {<value_n>},
}
So you should have something like @Book{yermack
, instead of @Book{,
Technically it is possible to have an empty entry key in a .bib
file (with BibTeX, Biber won't like empty keys), but since keys must be unique you can't have two or more entries with an empty key. Additionally citing empty keys might be problematic.
edited Nov 27 at 12:46
answered Nov 26 at 10:55
moewe
83.6k8107321
83.6k8107321
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
@targa Please update your question wit the new file. Then delete the.aux
and.bbl
files and recompile again. Upload also the.blg
file/the log message.
– moewe
Nov 26 at 11:20
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown.bib
file works with BibTeX'splain
style just fine. If you are still getting theRepeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.
– moewe
Nov 26 at 12:01
add a comment |
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
@targa Please update your question wit the new file. Then delete the.aux
and.bbl
files and recompile again. Upload also the.blg
file/the log message.
– moewe
Nov 26 at 11:20
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown.bib
file works with BibTeX'splain
style just fine. If you are still getting theRepeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.
– moewe
Nov 26 at 12:01
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
I changed the Literature.bib code according to your structure, This results in the same error message. Now there are two of them :/
– targa
Nov 26 at 11:17
@targa Please update your question wit the new file. Then delete the
.aux
and .bbl
files and recompile again. Upload also the .blg
file/the log message.– moewe
Nov 26 at 11:20
@targa Please update your question wit the new file. Then delete the
.aux
and .bbl
files and recompile again. Upload also the .blg
file/the log message.– moewe
Nov 26 at 11:20
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
I deleted the .aux files but I do not know how to delete the .bbl files and how to find the .blg file. Do you think this is crucial for the problem solving here? Btw: I ran the code with bibtstyle plain (ecca before) but it did not work :/ (same error message as above)
– targa
Nov 26 at 11:53
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown
.bib
file works with BibTeX's plain
style just fine. If you are still getting the Repeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.– moewe
Nov 26 at 12:01
@targa It should not be crucial, no. But it would help if we could make sure that nothing interferes. The next best thing is to run your example document in a new clean folder. As you can see at v1.overleaf.com/read/gkhbzzkwjqdg (new Overleaf link) the shown
.bib
file works with BibTeX's plain
style just fine. If you are still getting the Repeated entry
errors either your file contains more than you have shown in the question or BibTeX does not pick up the right file.– moewe
Nov 26 at 12:01
add a comment |
targa is a new contributor. Be nice, and check out our Code of Conduct.
targa is a new contributor. Be nice, and check out our Code of Conduct.
targa is a new contributor. Be nice, and check out our Code of Conduct.
targa 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%2f461802%2frepeated-entry-error-message-bibtex%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
The leading comma in
@Book{,
is the problem, as moewe says you must have the citation key before that comma so@Book{yermack,
then in the tex file you can usecite{yermack}
to reference this work. With no usable key you can not reference it and if you have that error twice you will have two entries with the empty string as key so get the error that you state.– David Carlisle
Nov 26 at 10:54
you have tagged this biblatex but the error message suggests that you are using bibtex
– David Carlisle
Nov 26 at 10:55
Thank you for your quick feedback! moewe: unfortunately this does not help :/ David Carlisle: interestingly, the code works if I run it as pdfLateX. But it does not work with pdfLateX+MakeIndex+BibTex
– targa
Nov 26 at 11:10
You need a different key for each entry. I can assure you that if you add a key the error message will be different.
– moewe
Nov 26 at 11:11
1
The file was indeed in the wrong folder. THANK YOU for your help! It is much appreciated.
– targa
Nov 26 at 14:46