BibTeX, biblatex and biberOverleaf Imported Mendeley Bibliography - dashed authors

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
xumbino
Posts: 2
Joined: Sat Oct 15, 2016 1:49 pm

Overleaf Imported Mendeley Bibliography - dashed authors

Post by xumbino »

Hello,

I have imported my mendeley bibliography to overleaf. I am using IEEEtran as my bibliographystyle, however, repeated authors are appearing dashed "-- --".

What should I do to make them appear?
Is there a bibliographystyle which shows author, title, url?

Best Regards,
Rúben Barros

Recommended reading 2024:

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

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

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Overleaf Imported Mendeley Bibliography - dashed authors

Post by Johannes_B »

IEEE does that on purpose. If you want, you can change the behaviour by using a customized bibliographystyle.

Code: Select all

\documentclass{article}
\usepackage[numbers]{natbib}
\begin{document}
\cite{aristotle:physics}
\cite{aristotle:anima}
\cite{aristotle:poetics}
\bibliographystyle{xumbinoIeeetran}
\bibliography{biblatex-examples}
\end{document}
Attachments
xumbinoIeeetran.bst
(56.36 KiB) Downloaded 462 times
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
xumbino
Posts: 2
Joined: Sat Oct 15, 2016 1:49 pm

Re: Overleaf Imported Mendeley Bibliography - dashed authors

Post by xumbino »

Wow. That was it. I am still a newbie in LaTeX.

Thank you very much.
Post Reply