Hello,
I searched several hours to answer this question but I can't find one. If this was asked before, could you please tell me where?
I use Lyx and JabRef and just inserted the complete list of references in my Lyx file. How can I modify the references? For example: Lyx generates "M. S. Kharasch and P. O. Tawney. J. Am. Chem. Soc., 63:2308-2316, 1941." but I want it to be "M. S. Kharasch, P. O. Tawney, J. Am. Chem. Soc. 1941, 63, 2308-2316" as exactly as possible.
And if I refer to this a "[1]" appears in the text. How can I turn this into superscript?
Thank you in advance,
Ferghun
LyX ⇒ Customise citations created with JabRef
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Customise citations created with JabRef
JabRef does not do the formatting: it simply manages the .bib file. You want to alter the BibTeX style. You don't say what you are using at the moment, but it looks like you want the Angewandte Chemie style
Code: Select all
\documentclass{article}
\usepackage{rsc}
\begin{document}
% Document body here
\bibliographystyle{angew}
\bibliography{your-bibtex-database}
\end{document}
Joseph Wright
Re: Customise citations created with JabRef
Thanks for the help! The "Angewandte Chemie" style is exactly what I needed.
I have only one question now. How can I turn the referring number to superscript? For example, in my pdf file it looks like this: "unsaturated ketone.[1]" because I have referred to [article]. How can I turn [1] to supercript like "²" or "³"?
I have only one question now. How can I turn the referring number to superscript? For example, in my pdf file it looks like this: "unsaturated ketone.[1]" because I have referred to [article]. How can I turn [1] to supercript like "²" or "³"?