In LaTeX, one can use a number of different bibliography styles. This style defines the layout of the pointers in the body text (e.g. ``[1]''), as well as the layout of the reference list. For your convenience, we put here a sample output result for a few bibliography styles (look for other ones in ~texmf/bibtex/bst/*.bst). Most common are abbrv, acm, alpha, apalike, ieeetr, plain, siam and unsrt. My personal choice is using the "apalike" style.
This is how the LaTeX-source might look like:
...
\bibliographystyle{ieeetr}
% or: plain,unsrt,alpha,abbrv,acm,apalike,...
...
\begin{document}
...
Reference to a paper in
proceedings \cite{fanty:icassp93},
to an article \cite{linde:tcom80},
and to a book \cite{abut:book90}.
...
\bibliography{abbr_long,pubext}
% expansion macro's + entries from pubext.bib
...
\end{document}
|
ieeetr
|
|
|
|
Reference to a paper in proceedings [1], to an article [2], and to a book [3].
|
[1]
|
M.
Fanty, P. Schmid, and R. Cole, ``City name recognition over the telephone,''
in Proc. International Conference on Acoustics, Speech and Signal Processing,
vol. I, (Minneapolis, U.S.A.), pp. 549-552, April 1993.
|
|
[2]
|
Y.
Linde, A. Buzo and R.M. Gray, ``An algorithm for vector quantizer design,''
IEEE Transactions on Communications, vol. 28, pp. 84-95, January
1980.
|
|
[3]
|
H.
Abut, ed., Vector Quantization. IEEE Press, 1990.
|
|
plain,
abbrv
|
|
|
|
Reference to a paper in proceedings [2], to an article [3], and to a book [1].
|
[1]
|
H.
Abut, editor. Vector Quantization. IEEE Press, 1990.
|
|
[2]
|
M.
Fanty, Ph. Schmid, and R. Cole. City name recognition over the telephone.
In Proc. International Conference on Acoustics, Speech and Signal Processing,
volume I, pages 549-552, Minneapolis, U.S.A., April 1993.
|
|
[3]
|
Y.
Linde, A. Buzo and R.M. Gray. An algorithm for vector quantizer design.
IEEE Transactions on Communications, 28(1):84-95, January 1980.
|
|
acm
|
|
|
|
Reference to a paper in proceedings [2], to an article [3], and to a book [1].
|
[1]
|
ABUT,
H., Ed. Vector Quantization. IEEE Press, 1990.
|
|
[2]
|
FANTY,
M., SCHMID, P., AND COLE, R. City name recognition over the telephone.
In Proc. International Conference on Acoustics, Speech and Signal Processing
(Minneapolis, U.S.A., April 1993), vol. I, pp. 549-552.
|
|
[3]
|
LINDE,
Y., BUZO, A., AND GRAY, R.M. An algorithm for vector quantizer design.
IEEE Transactions on Communications 28, 1 (January 1980), 84-95.
|
|
unsrt
|
|
|
|
Reference to a paper in proceedings [1], to an article [2], and to a book [3].
|
[1]
|
M.
Fanty, Ph. Schmid, and R. Cole, City name recognition over the telephone.
In Proc. International Conference on Acoustics, Speech and Signal Processing,
volume I, pages 549-552, Minneapolis, U.S.A., April 1993.
|
|
[2]
|
Y.
Linde, A. Buzo and R.M. Gray. An algorithm for vector quantizer design.
IEEE Transactions on Communications, 28(1):84-95, January 1980.
|
|
[3]
|
H.
Abut, editor. Vector Quantization. IEEE Press, 1990.
|
|
alpha
|
|
|
|
Reference to a paper in proceedings [FSC93], to an article [LBG80], and to a book [Abu90].
|
[Abu90]
|
H.
Abut, editor. Vector Quantization. IEEE Press, 1990.
|
|
[FSC93]
|
M.
Fanty, Ph. Schmid, and R. Cole. City name recognition over the telephone.
In Proc. International Conference on Acoustics, Speech and Signal Processing,
volume I, pages 549-552, Minneapolis, U.S.A., April 1993.
|
|
[LBG80]
|
Y.
Linde, A. Buzo and R.M. Gray. An algorithm for vector quantizer design.
IEEE Transactions on Communications, 28(1):84-95, January 1980.
|
|
apalike
|
|
|
|
Reference to a paper in proceedings [Fanty et al., 1993], to an article [Linde et al., 1980], and to a book [Abut, 1990].
|
[Abut,
1990] H. Abut, editor. Vector Quantization. IEEE Press, 1990.
[Fanty et al., 1993] Fanty,
M., Schmid, P., and Cole., R. (1993). City name recognition
[Linde et al, 1980] Y. Linde,
A. Buzo and R.M. Gray. An algorithm for vector quantizer
|
|
siam
|
|
|
|
Reference to a paper in proceedings [2], to an article [3], and to a book [1].
|
[1]
|
H.
ABUT, ed., Vector Quantization, IEEE Press, 1990.
|
|
[2]
|
M.
FANTY, P. SCHMID, AND R. COLE. City name recognition over the telephone,
in Proc. International Conference on Acoustics, Speech and Signal Processing,
vol.I, Minneapolis, U.S.A., April 1993, pp. 549-552.
|
|
[3]
|
Y.
LINDE, A. BUZO, AND R.M. GRAY, An algorithm for vector quantizer design,
IEEE Transactions on Communications, 28 (1980), pp. 84-95.
|
You can also use a bibliography
style and another for citations. In this case use the \bibliographystyle
just before the including the bibliography file
\begin{document}
...
\bibliographystyle{ieeetr}
% or: plain,unsrt,alpha,abbrv,acm,apalike,...
\bibliography{abbr_long,pubext}
...
\end{document}
I
like to use the author(year) citation style in my documents instead of
the "[1]" like citations . There may be different options but I found the
following very interesting.
The NATBIB Citation commands
The natbib package defines a number of very useful citation commands which replace the usual \cite. These are really necessary in any author-year citation system, where you don't always cite a reference using the same format for the citation. These commands and their output are illustrated below. The most frequently used are \citet (textual cite) and \citep (parenthetical cite). \cite is equivalent to \citet, but this shouldn't be used because it is often defined by other style files.
You can use optional arguments to get text before and after the citation(s):
usepackage[
Usage
Just
include the package natbib with the proper options before \begin{document}
like
\documentclass[11pt]{psuthesis}
.....
%% optional packages, in
case you want AMS math macros and AMS symbols
\usepackage[comma,authoryear]{natbib} %%
Here goes the natbib declaration ( Other options can be given)
....
\begin{document}
...
\bibliographystyle{ieeetr}
% or: plain,unsrt,alpha,abbrv,acm,apalike,...
\bibliography{abbr_long,pubext}
...
\end{document}
Useful
websites for Natbib Help
http://www.tug.org.in/tutorial/chap10-prn.pdf
http://www.linmpi.mpg.de/english/services/software/latex/localtex/doc/natbib.pdf
Professional
Page| Resume
| Personal Page
| Stat 401 | Contact
PSU Main page
| Statistics Department