From 13988327aec3c8d6e9e5e17f2685e32bd1a9517a Mon Sep 17 00:00:00 2001 From: Enrique Andrade Gonzalez Date: Tue, 21 Nov 2017 20:09:21 +0000 Subject: [PATCH] Update Update --- 06/thebibliography/thebibliography.tex | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 06/thebibliography/thebibliography.tex diff --git a/06/thebibliography/thebibliography.tex b/06/thebibliography/thebibliography.tex new file mode 100644 index 0000000..c987207 --- /dev/null +++ b/06/thebibliography/thebibliography.tex @@ -0,0 +1,27 @@ +\documentclass[a4paper,10pt]{article} +\usepackage[utf8]{inputenc} + +\title{Example Bibliography:\\\texttt{Computer tools in mathematican's work}} +\author{Enrique Andrade González} + +\begin{document} + +\maketitle + +\textbf{Thebibliography} environment is native to \LaTeX\ and may be preferred when the document will have few citations, when the document will be edited by different people and coordination becomes difficult, or when a library for \textbf{BibTEX} is not available with the required bibliography and for some reason you do not want to do one. +The bibliography should be published directly in the document with the \textbf{thebiblio-graphy} environment, which will be placed where you want the bibliography to appear. +Each bibliographic entry will be made through the \textbf{\textit{bibitem}} instruction. + +For example: +\newline + +This document is an example of \texttt{thebibliography} environment 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}. +\medskip + +\begin{thebibliography}{9} +\bibitem{latexcompanion} Michel Goossens, Frank Mittelbach, and Alexander Samarin. \textit{The \LaTeX\ Companion}. Addison-Wesley, Reading, Massachusetts, 1993. +\bibitem{einstein} Albert Einstein. \textit{Zur Elektrodynamik bewegter K{\"o}rper}. (German) [\textit{On the electrodynamics of moving bodies}]. Annalen der Physik, 322(10):891–921, 1905. +\bibitem{knuthwebsite} Knuth: Computers and Typesetting,\\\texttt{http://www-cs-faculty.stanford.edu/\~{}uno/abcde.html} +\end{thebibliography} + +\end{document}