I'm looking for the bibliography style where "references should be numbered in order of citation and cited in the text by numbers in square brackets. They should be listed in the reference list in the form prescribed in the Uniform Requirements (giving the names and initials of all authors, unless there are more than six, when the first three should be given, followed by et al.)". Any ideas? Thank you.
Asked
Active
Viewed 437 times
3
1 Answers
3
I suggest, like @cfr, using biblatex and biber. You should write, e.g.:
...........................
\usepackage[backend=biber, style=numeric,first inits,maxnames=6,minnames=3]{biblatex}
\addbibresource{your_bibliofile.bib}
............................
\begin{document}
.....................
\printbibliography
Bernard
- 271,350
unsrt. For a posting that discusses how one might modifyunsrt.bstso that just the first few authors of a bibliographic entry are shown, see BibTeX: How can I automatically reduce long author lists to “xxx et al.”. – Mico Apr 16 '14 at 22:25biblatexandbiber? – cfr Apr 16 '14 at 22:37makebstutility. This utility, which can be run by typinglatex makebstat a command prompt, lets users create custom styles from scratch. It's entirely menu-driven, i.e., you'll get a lot of questions and multiple-choice type answers. Follow the prompts and create yourself a custom.bstfile. – Mico Apr 16 '14 at 23:38