BibTeX, biblatex and biber ⇒ Overleaf Imported Mendeley Bibliography - dashed authors
Overleaf Imported Mendeley Bibliography - dashed authors
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
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
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
Re: Overleaf Imported Mendeley Bibliography - dashed authors
Thank you very much.