BibTeX, biblatex and biberBibliography: manual without an author

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
lieselotter
Posts: 8
Joined: Wed Jan 21, 2009 1:24 pm

Bibliography: manual without an author

Post by lieselotter »

Hi,
I have some problems with representing references (in the text and also in the bibliography itself), when there is no author specified, for instance in a user manual. It gives an (???) instead... How can I fix this?

part of the bibfile:

@manual{equitensiometer:99,
title = {Equitensiometer. Soil matric potential sensor, Type EQ2, User Manual},
organization = {Delta-T Devices},
adress = {128 Low Road, Burwell, Cambridge CB5 0EJ, England},
year = {1999}
}

I tried already to put the company as an author, but it gives problems because it exists of different words

Regards
Lieselotter

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

marco_d
Posts: 57
Joined: Tue Jan 20, 2009 7:49 pm

Re: Bibliography: manual without an author

Post by marco_d »

Hello,

a manual has an editor. In your case I would say the editor is Delta-T Devices. You can use an other strink like misc. There you don't need an author.

Marco
i am German. I can not use difficult words. :-)
lieselotter
Posts: 8
Joined: Wed Jan 21, 2009 1:24 pm

Re: Bibliography: manual without an author

Post by lieselotter »

Thanks for the answer!

It works indeed like this to put everything in the bibliography, but still the name 'Delta-T Devices' doesn't appear when I refer to it in my text. The problem is that it takes only 1 word or not even the whole word...

Lieselotter
marco_d
Posts: 57
Joined: Tue Jan 20, 2009 7:49 pm

Bibliography: manual without an author

Post by marco_d »

Hello,

you can put the editor in extra brackets: Here an example:

Code: Select all

\documentclass[a4paper,12pt,english,parskip=half]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\def\clap#1{\hbox to 0pt{\hss #1\hss}}
\usepackage{blindtext}
\begin{filecontents}{buch.bib}
 @manual{equitensiometer:99,
editor={{Delta-T Devices}},
title = {Equitensiometer. Soil matric potential sensor, Type EQ2, User Manual},
organization = {Delta-T Devices},
adress = {128 Low Road, Burwell, Cambridge CB5 0EJ, England},
year = {1999}
}
\end{filecontents}
\usepackage{natbib}
\begin{document}
\chapter{Kapitel}
\blindtext
\citet{equitensiometer:99}

\bibliographystyle{chicago}
\bibliography{buch}

\end{document}
Marco
i am German. I can not use difficult words. :-)
Post Reply