Do it yourself - a bibtex entry

For information on the bibtex entry structure consult Wikipedia.

If you do not know how to encode Polish letters in LaTeX, use a`,c`,e`,...,z`,z| instead; If you do not know how to encode German letters in LaTeX, use a|, o|, u|, s| ;

What you type in here, will not be stored anywhere

For the list of types of bib-entries click here.

Please do not use unbalanced {} nor = sign nor & sign in the bibtex entries.

Back to laboratory home page

article

Blue fields do not need to be filled in.

id 
author
title
journal
year
volume
number
pages
month
note
abstract
keywords
source
url

book

Blue fields do not need to be filled in.

id 
author
editor
title
publisher
year
volume
number
series
address
edition
month
note
abstract
isbn
price
keywords
source
url

inbook

Blue fields do not need to be filled in.

id 
author
editor
title
chapter
pages
publisher
year
volume
number
series
type
address
edition
month
note
abstract
keywords
url

proceedings

Blue fields do not need to be filled in.

id 
title
year
editor
publisher
volume
number
series
organization
address
month
note
abstract
isbn
price
keywords
source
url

inproceedings

Blue fields do not need to be filled in.

id 
author
title
booktitle
year
editor
volume
number
series
pages
address
month
organization
publisher
note
abstract
keywords
url

booklet

Blue fields do not need to be filled in.

id 
title
author
howpublished
address
month
year
note
abstract
keywords
source
url

manual

Blue fields do not need to be filled in.

id 
title
author
organization
address
edition
month
year
note
abstract
keywords
source
url

techreport

Blue fields do not need to be filled in.

id 
author
title
institution
year
type
number
address
month
note
abstract
keywords
source
url

conference

Blue fields do not need to be filled in.

id 
author
title
booktitle
year
editor
volume
series
pages
address
month
organization
publisher
note
key
crossref
annote
url

phdthesis

Blue fields do not need to be filled in.

id 
author
title
school
year
type
address
month
note
abstract
keywords
source
url

mastersthesis

Blue fields do not need to be filled in.

id 
author
title
school
year
type
address
month
note
abstract
keywords
source
url

misc

Blue fields do not need to be filled in.

id 
author
title
howpublished
year
month
note
abstract
keywords
source
url

unpublished

Blue fields do not need to be filled in.

id 
author
title
note
year
month
abstract
keywords
source
url

Types of bib-entries

  1. article
  2. book
  3. inbook
  4. proceedings
  5. inproceedings
  6. booklet
  7. manual
  8. techreport
  9. conference
  10. phdthesis
  11. mastersthesis
  12. misc
  13. unpublished

How to use bibtex

Assume you have created a bibligraphy file ZPSIipipan.bib like this:

@InProceedings{BEATCA:ECWeb,
author={M. K{\l}opotek and S. Wierzcho\'{n} and K. Ciesielski and M. Drami\'{n}ski and D. Czerski},
title={Map-based recommendation of hyperlinked document collections},
editor={K. Bauknecht and B. Pröll and H. Werthner},
booktitle={7th International Conference on Electronic Commerce and Web Technologies (EC-Web '06)},
address={Kraków, Poland},
publisher={Springer-Verlag, LNCS 4082},
year={2006},
pages={1--10}
}

@Book{BEATCA:BOOK,
author={M. K{\l}opotek and S. Wierzcho\'{n} and K. Ciesielski and M. Drami\'{n}ski and D. Czerski},
title={Conceptual Maps of Document Collections in Internet and Intranet. Coping with the Technological Challenge},
publisher={IPI PAN Publishing House},
address={Warszawa},
year={2007},
note={139 pages}
}

You write a tex file, named e.g. sample.tex

\documentclass{article}
\begin{document}
In this document we cite this: \cite{BEATCA:BOOK}. 
\bibliographystyle{plain}
\bibliography{ZPSIipipan}
\end{document}
You need to compile the file with the commands (in a batch file)

set kniga=sample
call latex %kniga%	- compiling once to get required references 
call bibtex %kniga%     - running bibtex to extract the needed bibitems
call latex %kniga%	- compiling twice to get the references in proper order 
call latex %kniga%
call dvipdfm %kniga%	- now converting to pdf
%kniga%.pdf		- showing pdf under windows