Page Layout ⇒ Problem in bibliography
-
- Posts: 8
- Joined: Wed Nov 01, 2017 4:02 pm
Problem in bibliography
I have some problems with bibliography style.
1- Any idea to generate "\shortcite"?
2- When I reference more than three authors, usually "xxx et al" just should appear in the text, but for me, it aooears the same in the list of bibliography! Would you please guide me to solve this issue?
Thanks,
Ben
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
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Problem in bibliography
What is the bibliography style you are using?Ahmadnia2011 wrote:I have some problems with bibliography style.
Use theAhmadnia2011 wrote:1- Any idea to generate "\shortcite"?
natbib
package, the named
package, apacite
or biblatex
. That depends on the bibliography style. Please tell us details of your code, show the code, the template (and what changes you made), and your document preamble. There are too many possibilities.Ahmadnia2011 wrote:2- When I reference more than three authors, usually "xxx et al" just should appear in the text
Stefan
-
- Posts: 8
- Joined: Wed Nov 01, 2017 4:02 pm
Problem in bibliography
I'm using the default bibliography style pf Master/Doctoral thesis package.
"\usepackage[backend=bibtex,style=authoryear,maxnames=3,natbib=true]{biblatex}"
Any idea for appearing them names of all the authors in the bibliography?
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
-
- Posts: 8
- Joined: Wed Nov 01, 2017 4:02 pm
Problem in bibliography
When I cite a reference with more than three authors, I can see (bla et al. 2222) in body the text and it's ok, while as far as I know, in the main bibliography page, it should not appear the same! I mean in the bibliography page the names of all authors should appear instead of (bla et al. 2222, with rest of information).
It should be (bla, bla, bla, bla 2222, ...) in bibliography page, but in mine is (bla et al 2222 ...).
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Problem in bibliography
maxnames
, which controls the maximum amount of names in both cites and the bibliography, maxcitenames
, which just controls the amount of names in a cite (main body) and maxbibnames
, which just controls the amount of names in a the bibliography. If you are interested, there is also a Quick guide to the template
-
- Posts: 8
- Joined: Wed Nov 01, 2017 4:02 pm
Problem in bibliography
Thank you both guys.