BibTeX, biblatex and biberHelp for a simple achemso adjustment

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
kid1000002000
Posts: 2
Joined: Sat Oct 09, 2010 5:15 am

Help for a simple achemso adjustment

Post by kid1000002000 »

I am trying to write a review, chemically-related paper using the achemso bibliography style. I need to modify achemso so that it displays article titles in my bibliography. I have read that I should use the "usetitle" feature, but do not know how to do this. I've included my code below.

Thank you for your help.

Code: Select all

\documentclass[letterpaper,12pt,final,notitlepage]{article}
\usepackage[numbers,super]{natbib}
\topmargin 0pt
\advance \topmargin by -\headheight
\advance \topmargin by -\headsep
     
\textheight 8.9in
     
\oddsidemargin 0pt
\evensidemargin \oddsidemargin
\marginparwidth 0.5in
     
\textwidth 6.5in

\begin{document}
\begin{titlepage}
\title{atilte}
\maketitle
\thispagestyle{empty}
\newpage
\pagestyle{empty}
\tableofcontents
\newpage
\end{titlepage}
\setcounter{page}{1}
\begin{abstract}
text
\end{abstract}

body

\newpage
\nocite{*}
\bibliographystyle{achemso}
\bibliography{references}
\end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Help for a simple achemso adjustment

Post by josephwright »

This is most easily done using the achemso package:

Code: Select all

\usepackage{achemso}
\setkeys{acs}{usetitle = true}
Joseph Wright
kid1000002000
Posts: 2
Joined: Sat Oct 09, 2010 5:15 am

Re: Help for a simple achemso adjustment

Post by kid1000002000 »

Perfect. However, using your solution has generated a new issue: I can no longer use nocite to list all of my sources, regardless of whether one is cited. Do you have any suggestions?

I really appreciate the help.
(I'd paypal you if it weren't for that being bad form)
Post Reply