BibTeX, biblatex and biber ⇒ Harvard style bibliography using »natbib«
Harvard style bibliography using »natbib«
Heather J. Adam, Nancy M. Laing, C. R. King, Ben Lulashnyk, Daryl J. Hoban, and
George G. Zhanel. In vitro activity of nemonoxacin, a novel nonfluorinated quinolone,
against 2,440 clinical isolates. Antimicrobial Agents and Chemotherapy, 53(11):
4915–4920, 11 2009. URL http://search.ebscohost.com/login.aspx? ... ehost-live.
Accession Number: 19738018.
Language: English. Date Created: 20091019. Date Completed: 20100208. Update
Code: 20100208. Publication Type: Journal Article; Research Support, Non-U.S.
Gov’t. Journal ID: 0315061. Publication Model: Print-Electronic. Cited Medium:
Internet. NLM ISO Abbr: Antimicrob. Agents Chemother.. PubMed Central ID:
PMC2772340 [Available on 05/01/10] Linking ISSN: 00664804. Subset: IM. Date of
Electronic Publication: 2009 Sep 08; ID: 19738018.
This is a ridiculous output for my thesis.
My question is how might I produce a harvard style bibliography using natbib and in the standard format below:
ADAM, H.J. et al., 2009. In vitro activity of nemonoxacin, a novel nonfluorinated quinolone, against 2,440 clinical isolates. Antimicrobial Agents and Chemotherapy, 53(11), pp. 4915-4920
Kind regards, David
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Harvard style bibliography using »natbib«
please post the corresponding entry exactly as it appears in your .bib file and a minimal document (something like the example code I below) allowing us to reproduce the behaviour mentioned.
Code: Select all
\documentclass{article}
\usepackage{natbib}
% some other relevant packages
\begin{document}
\cite{...}
\bibliographystyle{...}
\bibliography{...}
\end{document}
Re: Harvard style bibliography using »natbib«
@article{RefWorks:63,
author={Heather J. Adam and Nancy M. Laing and C. R. King and Ben Lulashnyk and Daryl J. Hoban and George G. Zhanel},
year={2009},
month={11},
title={In vitro activity of nemonoxacin, a novel nonfluorinated quinolone, against 2,440 clinical isolates},
journal={Antimicrobial Agents and Chemotherapy},
volume={53},
number={11},
pages={4915-4920},
note={Accession Number: 19738018. Language: English. Date Created: 20091019. Date Completed: 20100208. Update Code: 20100208. Publication Type: Journal Article; Research Support, Non-U.S. Gov't. Journal ID: 0315061. Publication Model: Print-Electronic. Cited Medium: Internet. NLM ISO Abbr: Antimicrob. Agents Chemother.. PubMed Central ID: PMC2772340 [Available on 05/01/10] Linking ISSN: 00664804. Subset: IM. Date of Electronic Publication: 2009 Sep 08; ID: 19738018},
abstract={The in vitro activity of nemonoxacin (TG-873870), a novel nonfluorinated quinolone, was tested against 2,440 clinical isolates. Nemonoxacin was at least fourfold more active than levofloxacin and moxifloxacin against most gram-positive cocci tested (shown by the following MIC(90)/range [microg/ml] values; community-associated methicillin [meticillin]-resistant Staphylococcus aureus, 0.5/0.015 to 2; Staphylococcus epidermidis, 0.5/0.015 to 4 for methicillin-susceptible staphylococci and 2/0.12 to 2 for methicillin-resistant staphylococci; Streptococcus pneumoniae, 0.015/ or = 512; Klebsiella pneumoniae, 2/ or = 512; Pseudomonas aeruginosa, 32/ or = 512; Acinetobacter baumannii, 1/0.12 to 16).},
keywords={Anti-Infective Agents/*pharmacology; Bacteria/*drug effects; Quinolones/*pharmacology; Fluoroquinolones/pharmacology; Humans; Microbial Sensitivity Tests},
isbn={1098-6596},
url={http://search.ebscohost.com/login.aspx?direct=true&db=cmedm&AN=19738018&site=ehost-live}
}
.Tex minimal
\usepackage[square, numbers, comma, sort&compress]{natbib} % Use the "Natbib" style for the references in the Bibliography
\cite{RefWorks:63}
\label{Bibliography}
\lhead{\emph{Bibliography}} % Change the left side page header to "Bibliography"
\bibliographystyle{unsrtnat} % Use the "unsrtnat" BibTeX style for formatting the Bibliography
\bibliography{Bibliography} % The references (bibliography) information are stored in the file named "Bibliography.bib"
Will this do?
I am now content doing vacouver style but still need the bibligraphy in the form in original post.