To create an index you need the following things.
\usepackage{makeidx}
The Matterhorn\index{Matterhorn} is a famous mountain in Switzerland.
The text inside the brackets isn't displayed, it is only used for the index. In this case you have to rewrite the word twice (what is sad), on the other hand you can use another form of it (like a singular) for the index
\printindex
You need:
\bibliographystyle{plain}
where plain may be replaced by many different ref-style files. Some of them are defined by default for all the others you need a refstyle.bst file. Remark: Inside the \bibliographystyle
statement the file name is written without the extension .bst.
\begin{thebibliography}
\bibitem{ref}The name of the reference
\end{thebibliography}
wos2bib savedrec.txt >> diss_ref.bib
. At the first call use >
instead of >>
\cite{ref}
where ref is mostly composed by the first name of the first author and the year of publication (eg:Tell:1291).
\bibliography{diss_ref}
which will create the reference index Remark: Also here .bib is not used. Multiple files may be separated by comma (without spaces between).
With \label{name}
you can mark any kind of object (or location).
After that you can use \pageref{name}
to refer to the page of the named item
or \ref{name}
for the chapter-numbering (or figure/table if it is used inside their environment).
Just include \tableofcontents
, \listoftables
resp. \listoffigures
at the place where it should appear.
-- JoergMaeder - 20 Dec 2010