Previous Contents Next
Issues in Science and Technology Librarianship
Summer 2009
DOI:10.5062/F4GH9FVM

URLs in this document have been updated. Links enclosed in {curly brackets} have been changed. If a replacement link was located, the new URL was added and the link is active; if a new site could not be identified, the broken link was removed.

[Board accepted]

Managing Biological Journal Citations: The Use of a BIBTeX Journal Titles and Abbreviations Database in Conjunction with LaTeX Type-Setting System

Xuejun Dong
North Dakota State University
Central Grasslands Research Extension Center
Streeter, North Dakota
xuejun.dong@ndsu.edu

Geoffrey W. Patton
U.S. Environmental Protection Agency
Washington, DC
gwpatton1@yahoo.com

Anne C. Nyren
North Dakota State University
Central Grasslands Research Extension Center
Streeter, North Dakota

Bob D. Patton
North Dakota State University
Central Grasslands Research Extension Center
Streeter, North Dakota

Paul E. Nyren
North Dakota State University
Central Grasslands Research Extension Center
Streeter, North Dakota

Copyright 2009, Xuejun Dong, Geoffrey W. Patton, Anne C. Nyren, Bob D. Patton, and Paul E. Nyren. Used with permission.

Required disclaimer: The views expressed here are those of the author and do not represent the position or endorsement of the U.S. EPA.

Abstract

We applied a method to automate bibliographic management for biomedical and environmental scientists/professionals using a BIBTeX database of the titles and abbreviations of 4,387 mostly biological journals. This database is readily usable to meet the requirements for journal title format by many of today's leading scientific publishers. This article also provides links to additional tools and tutorials for using the proposed database.

Introduction

Today, various software packages, such as EndNote (Combs 1998; Siegler and Simboli 2002), ProCite (Rohmann 1999; Wachtel 1987), Reference Manager (Neal 1993; Shmaefsky 2000; Wachtel 1987), and BIBTeX (Harrison and Munson 1989; Lamport 1994), etc., are widely used to aid the management of scientific literature citations. In this article, we describe the use of a BIBTeX-based journal title and abbreviations database, which was translated from the biological journals database of Patton (2006), in order to assist writing and publishing in biomedical and environmental sciences. The method for the automated handling of literature citations based on BIBTeX was perhaps first proposed by Patashnik (1988) and there are discussions on the Internet on the use of this method (such as at http://www.latex-community.org/forum/viewtopic.php?f=5&t=690). However, to our best knowledge, Patashnik's idea has not been turned into a full-scale application for the management of citations of the rapidly expanding biological journals using LaTeX. We believe that our work is a first attempt to fill this gap for the benefit of the biological research community.

Scope and Methods

The journal titles and abbreviations database needs to be used in combination with a literature database within the LaTeX type-setting system (Figure 1). There are three components for using the proposed database in LaTeX: (1) the LaTeX template and source code for generating the document; (2) the journal titles and abbreviations database; and (3) the literature database. We briefly describe how to use the database, but will not discuss in detail the basics of using LaTeX, because this is available elsewhere (Lamport 1994; Williams 2001; Dodson 2001; Greenberg 2005).


Figure 1. A schematic diagram for the relationship among the journal titles/abbreviations Database, the literature Database and the LaTeX type-setting system.

Table 1. A list of additional documents downloadable from {https://web.archive.org/web/20130311160032/http://www.infoclearinghouse.com/tiki-index.php?page=LaTeX+Applications}

File name

Description

BioJournalsOK.pdf

Detailed instructions

Supplementary 1.txt

A sample file for the literature database (MyRef.bib)

Supplementary 2.txt

Abbreviated version of the journal titles database (Jshort.bib)

Supplementary 3.txt

Abbreviated and dotted version of the journal titles database (Jshort_dot.bib)

Supplementary 4.txt

Full version of the journal titles database (JLong.bib)

Supplementary 5.txt

An expanded version of MyRef.bib (with bibliographic entries of 835 papers in plant ecophysiology)

Supplementary 6.pdf

LaTeX/BIBTex style files for selected ecology/biology journals.

Supplementary 7.pdf

Instructions on how to update the literature database file MyRef.bib

A typical LaTeX source file for producing a technical document can be something like:

Box 1:
\documentclass[a4paper,12pt]{article} %Line 1
\usepackage{natbib} %Line 2
\begin{document} %Line 3
In grasslands, surface soil dryness can greatly influence %Line 4
respiration~\citep{Redmann:Aa1978a}. %Line 5 
\bibliographystyle{kluwer} %Line 6
\bibliography{Jshort,MyRef} %Line 7
\end{document} %Line 8 

Line 1 is for document type, font size and paper size; line 2 evokes the “natbib” package, which is a LaTeX macro able to handle both the author-year and the numerical styles of literature citations. Lines 3 and 8 mark the beginning and end of the document, respectively. Line 5 is to parenthetically cite a paper located in the literature database (Supplementary 1 of Table 1). Line 6 instructs BIBTeX to use a popular author-year bibliography style of kluwer.bst (see BioJournalOK.pdf of Table 1). Line 7 is especially important because it instructs BIBTeX to use an abbreviated version of the journal title database (Jshort.bib, see Supplementary Material 2) and a literature database. One important thing to note here is that the journal name database file should always be followed by the literature database file. The LaTeX output is shown in Box 2.

Box 2:
In grasslands, surface soil dryness can greatly influence respiration (Redmann, 1978).

References

Redmann, R.E.: 1978a, Seasonal dynamics of carbon dioxide exchange in a mixed grassland ecosystem, Can J Bot 56,1999-2005.

In Box 2, we find that the cited paper is listed at the end of the document automatically with only one instruction: “\bibliography{Jshort,MyRef}” from Box 1. Also note that the journal titles are abbreviated. When necessary, the author can also use two other versions of the journal titles: the abbreviated-dotted version (Jshort_dot.bib as listed in Supplementary Material 3) or the full version (JLong.bib as listed in Supplementary Material 4). In the latter two cases, the listed journal titles will be changed accordingly with the rest of the citation remaining the same. Now let's extract a portion of the bibliography file Jshort.bib to see what it looks like.

Box 3:
 ...
 ...
 @string{CanJBot = {Can J Bot}}
 ...
 @string{CanJSoilSci = {Can J Soil Sci}}
 ...

All the entries have a common format: “@string{A={B}}”, where A is the title key (a unique nickname for the particular journal), and B is for the abbreviated name for this journal. Next, let's show how the database MyRef.bib looks in Box 4.

Box 4:
...
@ARTICLE{Redmann:Aa1978a,
AUTHOR = {R. E. Redmann},
TITLE = {Seasonal dynamics of carbon dioxide exchange in a mixed grassland ecosystem},
YEAR = {1978},
JOURNAL = CanJBot,
volume = {56},
number = {},
pages = {1999--2005},
month = {},
}
...

Box 4 lists only one article that is cited in this sample document fragment of Box 2; however, one can have hundreds of articles and other reference materials listed in this same file (see Supplementary Material 5). After “LaTeXing” the source file, only those papers (or other materials) that are actually cited in the main text will be listed under the reference section of the document. While most of the entries are self-explanatory, two points in particular are important here. First, each article has a unique “key” that is to be referred to in the main text (this is different from the title key of a journal). These keys help LaTeX to find the correct papers from the literature database. Here the key for the cited article is: “Redmann:Aa1978a”.

One important entry in Box 4 is the journals' title key, namely, “Journal = CanJBot”. This unique title key is where the literature database and the journal title database are linked (see Figure 1). The statement of “Journal = CanJSoilSci” provides all the information LaTeX/BIBTeX needs in order to find the real name of the journal, whether it is a full name, abbreviated, or abbreviated-dotted, in the journal title database. The reason the literature database should be preceded by the journal title database in Box 1 line 7 (namely, first Jshort, then MyRef) is that LaTeX first needs a definition of which journal each of the journal nicknames represents before it can find the complete information for each of the cited papers as listed in Box 4. Most of the title keys (nicknames) are simply the concatenated version of the abbreviated journal titles as used by Patton (2006). However, when the journal titles are very long, the concatenated words are shortened, but still uniquely defined.

The bibliography style file used in Box 1 is "kluwer" (visit http://bst.maururu.net/faq.html for an explanation of how to use different types of style files). The style file determines the appearance of all the bibliography items in an article in both the in-text citation and the bibliography listing. It can be obtained from various web sites or can be generated easily (see Supplementary Material 6).

What about Citing Books and Documents?

Titles of books and technical reports usually are not abbreviated in the bibliography listings of scientific journals. So, these reference materials are cited in the LaTeX's usual way as shown in details elsewhere (Williams 2001). As a result, only the literature database matters in citing technical documents other than journal articles.

Advantages and Disadvantages

There are a few apparent advantages in using the proposed journal titles/abbreviations database introduced in this paper:

There are disadvantages of using the proposed database for citation management:

Future Plans

For those in biomedical and environmental sciences, the journal titles and abbreviations database is probably already quite inclusive. In the meantime, we hope to include more journal titles in wider disciplines so that this database will be useful for a larger number of researchers. For example, we may want to include all the over 6,000 journals covered by the Journal Citation Report of Thomson Reuters. Furthermore, we need to develop a stand-alone computer program to enable the automated generation of the literature database, to save time for those who manually prepare their literature databases.

References

Combs, Jr., J. 1998. Endnote 3: Reference database management, bibliography generation, and Z39.50 search and retrieval software in one package from Niles Software, Inc. Library Software Review, 17(2): 149-156.

Dodson, C.T.J. 2001. PDF LaTeX tutorial for scientific word processing. [Online]. Available: http://www.maths.manchester.ac.uk/~kd/latextut/pdfbyex.htm [April 30, 2009]

Greenberg, H.J. 2005. A simplified introduction to LaTeX. [Online]. Available: http://www.ctan.org/tex-archive/info/simplified-latex/ [April 30, 2009].

Harrison, M.A. & Munson, E.V. 1989. On integrated bibliography processing.Electronic Publishing, 2(4), 193–209.

Lamport, L. 1994. LaTeX: A Document Preparation System. 2nd ed. Reading MA: Addison-Wesley Publishing Company.

Neal, P.R. 1993. Personal bibliographic softwares- a comparative review.BioScience, 43(1), 44–51.

Patashnik, O. 1988. BIBTEXing. [Online]. Available: {http://bibtexml.sourceforge.net/btxdoc.pdf} [April 30, 2009].

Patton, G. 2006. Biological journals and abbreviations. [Online]. Available: {http://home.ncifcrf.gov/research/bja/} [April 30, 2009]

Rohmann, G. 1999. ProCite and EndNote: bibliographic management software.Information Technology, Learning and Performance Journal, 17(1), 51–53.

Shmaefsky, B.R. 2000. e-reference tool. Science, 288(5473), 1981.

Siegler, S. & Simboli, B. 2002. EndNote at Lehigh. Issues in Science and Technology Librarianship. [Online]. Available: http://www.istl.org/02-spring/article4.html [Accessed August 19, 2009].

Wachtel, R.E. 1987. Personal bibliographic database. Science, 235(4792), 1093-1095.

Williams, J. 2001. How to use BIBTeX. [Online]. Available: {https://web-beta.archive.org/web/20081104091124/http://www.hep.manchester.ac.uk/u/jenny/jcwdocs/latex/bibtexbasics.html} [April 30, 2009].

Previous Contents Next

W3C 4.0 
Checked!