BibTeX, biblatex and biber ⇒ Problem using achemso style
Problem using achemso style
I'm trying to use the achemso style for my bibtex citation. When I cite a source, I see in the text, and in my bibliography list the all the authors names and publication year instead of simply a number:
In the text:
bla bla bla bla [Bronsted(1928)] bla bla bla bla
in the bibliography:
[Bronsted(1928)] Bronsted, J. N. Chemical Reviews 1928, 5, 231–338.
While what I need is:
In the text:
bla bla bla bla [1] bla bla bla bla
in the bibliography:
[1] Bronsted, J. N. Chemical Reviews 1928, 5, 231–338.
Also, is there a way for automatically abbreviating the journal names?
Thanks.
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
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Problem using achemso style
Re: Problem using achemso style
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: Problem using achemso style
Problem using achemso style
\documentclass{report}
Here is my .tex file:
Code: Select all
\begin{document}
Hello \cite{a} \cite{b}
\bibliographystyle{achemso}
\bibliography{a}
\begin{thebibliography}{9}
\bibitem{b}
Leslie Lamport,
\emph{\LaTeX: A Document Preparation System}.
Addison Wesley, Massachusetts,
2nd Edition,
1994.
\end{thebibliography}
\end{document}
Code: Select all
@article{a,
author = {Bohm, Andrew and Balbo, Paul B.},
doi = {10.1042/BJ20082019},
issn = {0264-6021},
journal = {Biochemical Journal},
keywords = {Folder - Bio},
mendeley-tags = {Folder - Bio},
number = {2},
pages = {229--238},
title = {{Proton transfer in the mechanism of polyadenylate polymerase}},
url = {http://www.biochemj.org/bj/420/bj4200229.htm},
volume = {420},
year = {2009}
}
I want the latter citation style to happen when I use a .bib file. Is that possible?
- Attachments
-
- a.pdf
- The resulting pdf
- (58.99 KiB) Downloaded 392 times
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Problem using achemso style
Code: Select all
\documentclass{article}
\usepackage{natbib}
\begin{document}
Hello \cite{a}
\bibliographystyle{achemso}
\bibliography{a}
\end{document}