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 5829 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- 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 282 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 306 times
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- 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 287 times
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- 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