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

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

User avatar
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 467 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