This commit is contained in:
Enrique Andrade Gonzalez 2017-11-21 20:37:33 +00:00
parent 26b8e518ae
commit af0d8b541c

View File

@ -0,0 +1,28 @@
\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\title{Example BibTeX\\\texttt{Computer tools in mathematican's work}}
\author{Enrique Andrade González}
\begin{document}
\maketitle
\textbf{BibTeX}, a powerful sister tool of \textbf{LATEX} specially designed to support bibliography, can also be used to create the bibliography. This tool is recommended for very extensive bibliographies or when some resources are cited frequently since the work of capturing a bibliographic reference is done only once and can be used as many times as necessary in all the documents that are desired.
The only thing we need to use \textbf{BibTEX} is a virtual library, that is, a file (or a collection of files) with the extension ".bib" in which the bibliography that our document requires. We will call these files bookstores.
$$ bibliography(sample1,sameple2, samepleN) $$
\newline
\medskip
For example:
\newline
Then, just indicate in the document the libraries that will be used. If they are more than one, they should be separated by commas. For example, suppose that we have two files where the bibliography to be used is, sample1.bib and sample2.bib, then, to indicate to BibTEX that the bibliography has to be searched in such files it is necessary to add the following line.
This document is an example of BibTeX using in bibliography management. Three items are cited: \textit{The \LaTeX\ Companion} book \cite{latexcompanion}, the Einstein journal paper \cite{einstein}, and the Donald Knuth's website \cite{knuthwebsite}. The \LaTeX\ related items are \cite{latexcompanion,knuthwebsite}.
\newline
\medskip
\bibliographystyle{unsrt}%Used BibTeX style is unsrt
\bibliography{sample}
\end{document}