BibTeX, biblatex and biber ⇒ Techreport Author Initials only singular
Techreport Author Initials only singular
For some reason I cannot get a techreport to list all the authors initials, eg instead of Rantz, SE (1982) it only displays Rantz, S (1982). I can't find anything to change this in makebst. Some help on this one would be great.
Thanks.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Techreport Author Initials only singular
Best regards
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Techreport Author Initials only singular
I hope this helps
An example Tex file is:
Code: Select all
\documentclass{article}
\usepackage{graphicx}
\usepackage{natbib}
\begin{document}
\bibliographystyle{Refstyle}
\def\bibname{Reference List}
\citep{rant1982}
\bibliography{literature}
\end{document}
Code: Select all
@techreport{
rant1982,
Author = {Rantz, S.E.},
Title = {Measurement and Computation of Streamflow: Volume 1. Measurement of stage and discharge},
Institution = {US Government Printing Office},
Address = {Washington, DC},
Series = {Geological Survey Water-Supply Paper 2175},
Year = {1982}
}
- Attachments
-
- spbasic.bst.zip
- The according BibTeX style.
- (7.03 KiB) Downloaded 257 times
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Techreport Author Initials only singular
Code: Select all
Author = {Rantz, S. E.}
Please use the »Code« environment when posting code for more clarity.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Techreport Author Initials only singular
Cheers.