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.
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
- 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 248 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.