BibTeX, biblatex and biber ⇒ Last reference not indented properly
-
- Posts: 6
- Joined: Sun Jan 02, 2011 7:11 am
Last reference not indented properly
I'm using TeXLive 2010. I'm trying to generate a bibliography using BiBTeX. However, with the ieeetr style, the last reference is not indented properly. If I use plain style, the last couple of references are not indented properly. Any idea what the problem might be?
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Last reference not indented properly
Re: Last reference not indented properly
I am very new to Latex. I am using it on my windows 7 machine (Miktex 2.7 + winedt 5.--). In my tex file, I am using command "\bibliography{filename.bib}" and I have ".bib" file. If I run LaTex (Shift+Ctrl+L), there is no error message then I run BibTex (Shift+Ctrl+L) again there is no error. But If I again run LaTex (Shift+Ctrl+L), this I have to run to include references, I got following error
Missing character: There is no Ì in font cmr12!
Missing character: There is no ˆ in font cmr12!
[15] [16]
! Missing } inserted.
<inserted text>
}
l.128 \end{thebibliography}
after this if I press 'q' I end up at the intermediate file ".bbl" and following command "\end{thebibliography}" in ".bbl file" becomes highlighted in red colour.
Does any one has idea, what is wrong ? This file was working fine just a day back. then I added some text and now it is not working. I tried to undo the things I did but still I am not able to get it work.
Last reference not indented properly
-
- Posts: 6
- Joined: Sun Jan 02, 2011 7:11 am
Re: Last reference not indented properly
-
- Posts: 6
- Joined: Sun Jan 02, 2011 7:11 am
Last reference not indented properly
Code: Select all
@incollection{springerlink:10.1007/978-3-540-89965-5_31,
Affiliation = {University of Southampton},
Author = {Moreau, Luc and Freire, Juliana and Futrelle, Joe and McGrath, Robert and Myers, Jim and Paulson, Patrick},
Booktitle = {Provenance and Annotation of Data and Processes},
Editor = {Freire, Juliana and Koop, David and Moreau, Luc},
Note = {10.1007/978-3-540-89965-5_31},
Pages = {323-326},
Publisher = {Springer Berlin / Heidelberg},
Series = {Lecture Notes in Computer Science},
Title = {The {O}pen {P}rovenance {M}odel: An Overview},
Url = {http://dx.doi.org/10.1007/978-3-540-89965-5_31},
Volume = {5272},
Year = {2008}
}
Last reference not indented properly
Try something like:
Code: Select all
@incollection{springerlink:moreauetal2008,
Affiliation = {University of Southampton},
Author = {Moreau, Luc and Freire, Juliana and Futrelle, Joe and McGrath, Robert and Myers, Jim and Paulson, Patrick},
Booktitle = {Provenance and Annotation of Data and Processes},
Editor = {Freire, Juliana and Koop, David and Moreau, Luc},
Note = {10.1007/978-3-540-89965-5{\_}31},
Pages = {323--326},
Publisher = {Springer Berlin / Heidelberg},
Series = {Lecture Notes in Computer Science},
Title = {The {O}pen {P}rovenance {M}odel: An Overview},
Url = {http://dx.doi.org/10.1007/978-3-540-89965-5_31},
Volume = {5272},
Year = {2008}
}
-
- Posts: 6
- Joined: Sun Jan 02, 2011 7:11 am
Re: Last reference not indented properly
Re: Last reference not indented properly
And of course, that's not even to mention that I'd prefer to use citation keys I might actually remember and/or are meaningful or suggestive, rather than a number which means nothing to me!
-
- Posts: 6
- Joined: Sun Jan 02, 2011 7:11 am
Re: Last reference not indented properly
