BibTeX, biblatex and biber ⇒ references misaligned
-
- Posts: 5
- Joined: Mon Jul 13, 2020 4:47 pm
references misaligned
can someone help me ?? thanks !!
- Attachments
-
- latex referenence.PNG (144.38 KiB) Viewed 5411 times
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
references misaligned
Can you post the content (or start) of the file
mylit.bbl
here, as code or as attachment?Stefan
-
- Posts: 5
- Joined: Mon Jul 13, 2020 4:47 pm
references misaligned
The attachment is mylit.bib, thanks for your quick reply.
- Attachments
-
- mylit.bib
- (30.68 KiB) Downloaded 260 times
-
- Posts: 5
- Joined: Mon Jul 13, 2020 4:47 pm
references misaligned
Stefan Kottwitz wrote:Welcome to the forum!
Can you post the content (or start) of the filemylit.bbl
here, as code or as attachment?
Stefan
Hi Stefan,
The attachment is mylit.bib, thanks for your quick reply.
- Attachments
-
- mylit.bib
- (30.68 KiB) Downloaded 286 times
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
references misaligned
Stefan
-
- Posts: 5
- Joined: Mon Jul 13, 2020 4:47 pm
references misaligned
ah, sorry.Stefan Kottwitz wrote:Well, that's the .bib file and not the .bbl file. Can you send that?
Stefan
- Attachments
-
- output (1).bbl
- (10.09 KiB) Downloaded 267 times
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
references misaligned
In line 69, there is an & symbol (ampersand) that is understood as alignment symbol in LaTeX:
Write \& instead in your bibliography.Structural role extraction & mining in large graphs.
And, in line 269 there is an underscore _, that forces math mode since it's a math command (for a subscript):
Write \_ for an underscore in text. That issue causes the misalignment.\newblock {\em Nucleic Acids Research}, 33(suppl_1):D433--D437, 01 2005.
Stefan
-
- Posts: 5
- Joined: Mon Jul 13, 2020 4:47 pm
references misaligned
Thank you so much !!Stefan Kottwitz wrote:In the .bbl file, I see two issues.
In line 69, there is an & symbol (ampersand) that is understood as alignment symbol in LaTeX:
Write \& instead in your bibliography.Structural role extraction & mining in large graphs.
And, in line 269 there is an underscore _, that forces math mode since it's a math command (for a subscript):
Write \_ for an underscore in text. That issue causes the misalignment.\newblock {\em Nucleic Acids Research}, 33(suppl_1):D433--D437, 01 2005.
Stefan