Natbib : Bibliografi Natural untuk database daftar pustaka
Natbib merupakan paket dari LaTeX yang memudahkan dalam membuat suatu daftar pustaka atau dengan kata lain, paket ini menjadi paket yang menyimpan database daftar pustaka dan dapat kita gunakan lagi. File daftar pustaka dengan ekstensi .bib, berikut ini sampel dari bibliograpfi dan namakan dengan nama : sample01 dan simpan dengan ekstensi .bib :
@article{einstein, author = {Albert Einstein}, title = {{Zur Elektrodynamik bewegter K{\"o}rper}. ({German}) [{On} the electrodynamics of moving bodies]}, journal = {Annalen der Physik}, volume = {322}, number = {10}, pages = [891--921}, year = {1905}, DOI = {http://dx.doi.org/10.1002/andp.19053221004}, keywords = {physics} } @book{dirac, title={The Principles of Quantum Mechanics}, author={Paul Adrien Maurice Dirac}, isbn={9780198520115}, series={International series of monographs on physics}, year={1981}, publisher={Clarendon Press}, keywords = {physics} } @online{knuthwebsite, author = {Donald Knuth}, title = {Knuth: Computers and Typesetting}, url = {http://www-cs-faculty.stanford.edu/~uno/abcde.html}, keywords = {latex,knuth} } @Misc{ANO, Title = {{LaTeX Editor/IDEs}}, Author = {Anonim}, Year = {2013}, Booktitle = {latexexchange.com}, Url = {http://tex.stackexchange.com/equations/339/latex-editors-ideas} } @Misc{BIBA, Title = {{BibTeX Style Examples}}, Author = {Anonim}, Year = {2010}, Booktitle = {cs.stir.ac.uk}, Url = {http://www.cs.stir.ac.uk/~kjt/software/latex/showbst.html} } @Book{PAN13, Title = {Panduan Penulisan TA FMIPA UGM}, Author = {Chairil Anwar}, Publisher = {Universitas Gadjah Mada, Yogyakarta}, Year = {2009} } @Book{DNA2013, Title = {The Cancel Package, 12 April 2013}, Author = {Donald Arseneau}, Publisher = {GNU General Public License}, Year = {2013} } @Book{MOR12, Title = {{\LaTeX} 2012}, Author = {Alexander Borbon.A and Walter Mora. F }, Publisher = {Escuela de Matematica,Instituto Tecnologico de Costa Rica }, Year = {2012} } @Book{UCC2001, Title = {Beginners LATEX}, Author = {UCC Computer Centre}, Publisher = {Electronic Publishing Unit}, Year = {2001} } @Book{FIA2001, Title = {The smartdiagram package,4 April 2013 }, Author = {Claudio Fiandrino}, Publisher = {GNU General Public License}, Year = {2013} } @Book{MAR2013, Title = {The mhchem Bundle Documentation for the Packages mhchem v3.13, hpstatement v1.01 and rsphrase v3.11}, Author = {Martin Hensel}, Publisher = {GPL, Cambridge}, Year = {2013} } @Book{HAR13, Title = {YOUR GUIDE TO HARVARD STYLE REFERENCING}, Author = {University Library}, Publisher = {The University of Sydney}, Year = {2013} } @Misc{WK13, Title = {{\LaTeX}}, Author = {Creative Commons Attribution-ShareAlike License}, HowPublished = {Wikipedia Inc.}, Month = {14 September}, Year = {2013}, Source = {Wikipedia} } @Misc{WK12, Title = {Panduan Pengenalan {\LaTeX}}, Author = {Creative Commons Attribution-ShareAlike License}, HowPublished = {Wikipedia Inc, Wikibuku Indonesia.}, Month = {27 Mei }, Year = {2012}, Source = {Wikipedia} } @Book{FML2014, Title = {An environment for multicolomn output}, Author = {Frank Mittelbach}, Publisher = {GNU General Public License}, Year = {2014} } @Book{FMR2001, Title = {The amscd package Version 2.0,29 November 1999 }, Author = {Frank Mittelbach and Rainer Schopf and Samarin}, Publisher = {GNU General Public License}, Year = {1999} } @Book{TO08, Title = {The Not So Short Introduction to {\LaTeX} 2e }, Author = {T. Oetiker }, Publisher = {GNU General Public Licenses, Cambridge}, Year = {2008} } @Book{XXX2013, Title = {The LATEX 3 Interfaces, The LATEX3 Project, 13 2013}, Author = {The LaTeX 3 Project}, Publisher = {GNU General Public License}, Year = {2013} } @Misc{RAH13, Title = {{Contoh daftar pustaka yang baik dan benar}}, Author = {Rahimawati}, Year = {2013}, Booktitle = {Contohsuratku.com}, Url = {http://contohsuratku.com/contoh-daftar-pustaka-yang-baik-dan-benar/} } @Misc{ROB13, Title = {{LaTeX/Bibliography Management}}, Author = {Andy Roberts}, Year = {2014}, Url = {http://en.wikibooks.org/w/index.php?title=LaTeX/Bibliography Management} } @Book{ANS2013, Title = {The knot Package v1.0 : Documentation}, Author = {Andrew Stacey}, Publisher = {GNU General Public License}, Year = {2013} } @Book{TAN13, Title = {The Beamer Class Use Guide version 3.26}, Author = {Till Tantau}, Publisher = {GNU General Public Licenses,Cambridge}, Year = {2013} } @Book{ZAN10, Title = {The fancyvrb package Fancy Verbatims in {\LaTeX}}, Author = {Timothy Van Zandt }, Publisher = {GNU General Public Licenses,Cambridge}, Year = {2010} } @Book{SAS2013, Title = {Forest : a pgf /TikZ-based package for drawing linguistic trees v1.03, 28 Januari 2013}, Author = {Saso Zivanovic}, Publisher = {GNU General Public License}, Year = {2013} } @Book{FMDC2013, Title = {A new implementation of \LaTeX\ 's tabular and array environment*, 6 September 2014}, Author = {Frank Mittelbach and David Carlisle}, Publisher = {GNU General Public License}, Year = {2014} } @inbook{knuth-fa, author = "Donald E. Knuth", title = "Fundamental Algorithms", publisher = "Addison-Wesley", year = "1973", chapter = "1.2", keywords = "knuth,programming" }Selanjutnya kita akan membuat dokumen LaTeX yang memuat bibliografi diatas, berikut contoh dokumennya,
\documentclass{article} \usepackage[indonesian]{babel} \usepackage{natbib} %\bibliographystyle{abbrvnat} %\bibliographystyle{plainnat} %\bibliographystyle{unsrtnat} \bibliographystyle{alpha} \usepackage{lipsum} \title{Bibliography management: \texttt{natbib} package} \author{Share\LaTeX} \date {\today} \begin{document} \maketitle \lipsum[1-3] \Citep{ANO},\Citep{ANS2013}, \Citep{FIA2001}, \Citep{DNA2013} \medskip \bibliography{sample01} \end{document}Maka akan menghasilkan daftar pustaka seperti ini :
bibliografi dengan paket NATBIB |
Komentar
Posting Komentar