BibTeX, biblatex and biberreferences do not align

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
miss_sarinha
Posts: 3
Joined: Thu Apr 18, 2019 2:49 pm

references do not align

Post by miss_sarinha »

Hello everyone!

I'm working on Overleaf and with the biblatex package.

I defined this configuration to my references:

Code: Select all

\usepackage[
    backend=biber,
    style=numeric,
    sorting=none
    ]{biblatex}
\bibliography{refs.bib}
And my references are appearing with the wrong alignment (red line - all my text is fully aligned). Everything should be aligned like reference 10.

Image

Code: Select all

@inproceedings{vallis,
  author={Matthew Bruce Vallis, and Acir Mércio Loredo-Souza, and Larissa Cassol Watrin},
  title={A review of Brazilian wind data},
  booktitle = {The 13th Americas Conference on Wind Engineering (13ACWE)},
  address = {Florida, USA},
  year = {May 21-24, 2017}
}

@ARTICLE {Pes,
    author  = "Marcelo P. Pes and Enio B. Pereira and Jose A. Marengo and Fernando R. Martins and Detlev Heinemann and Michael Schmidt",
    title   = "Climate trends on the extreme winds in Brazil",
    journal = "Renewable Energy",
    year    = "2016"
}
Any suggestions for solving the problem? Thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

user22741
Posts: 35
Joined: Fri Nov 09, 2018 12:03 pm

references do not align

Post by user22741 »

Your underlined code seems not to break lines. How do you underline? With the soul package, line breaks are possible in underlined text
miss_sarinha
Posts: 3
Joined: Thu Apr 18, 2019 2:49 pm

references do not align

Post by miss_sarinha »

Actually, I'm not underlining manually my references. It is somehow automatic and I also do not understand why.

Yes! I'm using the soul package to underline and highlight some things in my main text and it's working perfectly.
user22741
Posts: 35
Joined: Fri Nov 09, 2018 12:03 pm

references do not align

Post by user22741 »

Code: Select all

\documentclass{article}

\usepackage[
    backend=biber,
    style=numeric,
    sorting=none
    ]{biblatex}
\bibliography{refs.bib}

\begin{document}

\nocite{*}

\printbibliography

\end{document}
does not underline the titles, so there must be something in the code you not show
miss_sarinha
Posts: 3
Joined: Thu Apr 18, 2019 2:49 pm

references do not align

Post by miss_sarinha »

No, I'm printing references as you recommended:

Code: Select all

% References

\newpage
\printbibliography
 
\end{document}
However, I solved the problem deactivating the ulem package:

Image

Sorry, I didn't know that this package was interacting with biblatex.

Thank you for your time, it helped to solve!!
Post Reply