LyXCustomise citations created with JabRef

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
Ferghun
Posts: 2
Joined: Tue Aug 14, 2012 1:29 pm

Customise citations created with JabRef

Post by Ferghun »

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

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

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

Customise citations created with JabRef

Post by josephwright »

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
Ferghun
Posts: 2
Joined: Tue Aug 14, 2012 1:29 pm

Re: Customise citations created with JabRef

Post by Ferghun »

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 "³"?
Post Reply