BibTeX, biblatex and biberStyle of reference choice

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
betbetbet
Posts: 14
Joined: Thu Jan 22, 2009 10:15 am

Style of reference choice

Post by betbetbet »

Hi,

I am using bibteX in order to create references for my document:

Part of my bibTeX file looks like this:

Code: Select all

@inbook{scheduling,
  author={Bacak, G. and Ufuktepe, U.},
  title={Applications of Graph Coloring},
  year={2005},
  booktitle={Computational Science and Its Applications - ICCSA 2005},
  chapter={Symbolic Computation, SC 2005 Workshop},
  pages={522-528},
  publisher={Springer Berlin / Heidelberg},
  volume={3482},
  series={Lecture Notes in Computer Science}
}

@article{hungary,
  author={Bacso, G. and Tuza, Zs.},
  year={1990},
  title={Dominating cliques in P5-free graphs},
  journal={Periodica Mathematica Hungarica},
  volume={21},
  pages={303 - 308},
  number={4}
  month = {December}
}
If I write the following winEdt code:

Code: Select all

\usepackage{epsfig}
\usepackage{appendix}
%\usepackage{amsart}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{amsmath}
%\usepackage{amscls}
\usepackage{fontenc}
\usepackage{amssymb}
\usepackage{dsfont}
%\usepackage{floats}
%\usepackage{figlatex}
%\usepackage{dvips}
%\usepackage{latex}
%\usepackage{epsf}
\usepackage{epsf}

\begin{document}

Trial \cite{scheduling}

\bibliographystyle{alpha}
\bibliography{MN3P5bibfileThesis}

\end{document} 
Compiling the winEdt code to .pdf in LaTeX gets:

On the first page:

Code: Select all

Trial [BU05]
On the second page:

Code: Select all

Bibliography
[BU05] G. Bacak and U. Ufuktepe. Applications of Graph Coloring, volume 3482 of
Lecture Notes in Computer Science, chapter Symbolic Computation, SC 2005
Workshop, pages 522{528. Springer Berlin / Heidelberg, 2005.
How do I change the [BU05] to a [1]? How do I change to this style of references?

Recommended reading 2024:

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

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Style of reference choice

Post by frabjous »

Use a different bibliography style. I.e., change:

\bibliographystyle{alpha}

to

\bibliographystyle{plain}

or something else you prefer.

For a list of how various styles look, check out this webpage.
betbetbet
Posts: 14
Joined: Thu Jan 22, 2009 10:15 am

Re: Style of reference choice

Post by betbetbet »

It worked,

Thanks
Post Reply