BibTeX, biblatex and biberCitation style as Nature journal

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Mathilde
Posts: 1
Joined: Tue Jul 26, 2016 11:55 am

Citation style as Nature journal

Post by Mathilde »

Hi everybody,
I created a bibliography in my file and I used the ACS style with this command "\usepackage{achemso}". However I would like to use the Nature journal style instead of the ACS. Which command should I use? Because "\usepackage{nature}" does not work.
Thanks in advance for your help!
Mathilde

Here is the .tex file

Code: Select all

\documentclass[12pt,oneside,liststotoc,bibtotoc,tablecaptionabove,UKenglish,numbers=noenddot,dvipng]{scrartcl}
\usepackage[a4paper]{geometry}

% Bibliography 
\usepackage{nature} 	                % Style for references
\setlength\bibsep{0.0 pt} 		% No space between two references in the bibliography
\makeatletter
\renewcommand\@biblabel[1]{(#1)}
\makeatother

\begin{document}
\cite{Jeon2015}	
\cite{Nie2014}
\cite{Im2014}
\bibliography{xample_biblio}  	
\end{document}
and here the attached .bib file

Code: Select all

@article{Im2014,
	author = {Im, Jeong-Hyeok and Jang, In-Hyuk and Pellet, Norman and Gr\"{a}tzel, Michael and Park, Nam-Gyu},
	doi = {10.1038/nnano.2014.181},
	file = {:H$\backslash$:/01\_Literature/2014/2014\_Im\_Nature\_Nanotechnology.pdf:pdf},
	issn = {1748-3395},
	journal = {Nature nanotechnology},
	month = aug,
	number = {November},
	pmid = {25173829},
	pages = {927--932},
	title = {{Growth of CH3NH3PbI3 cuboids with controlled size for high-efficiency perovskite solar cells.}},
	url = {http://www.ncbi.nlm.nih.gov/pubmed/25173829},
	volume = {9},
	year = {2014}}
	
@article{Jeon2015,
		author = {Jeon, Nam Joong and Noh, Jun Hong and Yang, Woon Seok and Kim, Young Chan and Ryu, Seungchan and Seo, Jangwon and Seok, Sang Il},
		doi = {10.1038/nature14133},
		file = {:H$\backslash$:/01\_Literature/2015/2015\_Jeon\_Nature.pdf:pdf},
		issn = {1476-4687},
		journal = {Nature},
		month = jan,
		pages = {1--6},
		publisher = {Nature Publishing Group},
		title = {{Compositional engineering of perovskite materials for high-performance solar cells.}},
		year = {2015}}
	
@article{Nie2014,
		author = {Nie, Wanyi and Tsai, Hsinhan and Asadpour, Reza and Blancon, Jean-Christophe and Neukirch, Amanda J. and Gupta, Gautam and Crochet, Jared J. and Chhowalla, Manish and Tretiak, Sergei and Alam, Muhammad A. and Wang, Hsing-Lin and Mohite, Aditya D.},
		doi = {10.1126/science.aaa0472},
		file = {:H$\backslash$:/01\_Literature/2015/2015\_Nie\_Science.pdf:pdf},
		journal = {Science},
		number = {6221},
		pages = {522--525},
		title = {{High-efficiency solution-processed perovskite solar cells with millimeter-scale grains}},
		volume = {347},
		year = {2014}}
Last edited by Mathilde on Tue Jul 26, 2016 3:08 pm, edited 2 times in total.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Citation style as Nature journal

Post by Johannes_B »

Please provide a minimal working example so we can reproduce your issue.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply