Hello everyone,
First experience with BibTeX, I don't quite understand how it handles multiple authors. I separate the authors with AND, but in my output there's a comma followed by "and". I only want to have the comma but don't want it to be followed by the word "and".
http://image.noelshack.com/fichiers/201 ... -latex.png
Also, is there any way to get my output in a standard reference style (American Chemical Society, Modern Language Association of America, American Psychological Association, the Vancouver system ...)? My main issue with the current input is that now I have forename surname when ideally I'd want surname first letter of the forename. In a perfect situation, I'd want the first name in bold, the forename automatically abbreviated to the first letter and the year before the volume, issue and pages.
For example:
Boccard J, Veuthey J-L, Rudaz S. Knowledge discovery in metabolomics: An overview of MS data handling. J. Sep. Sci. 2010; 33(3):290–304.
Thanks in advance,
paeschli
BibTeX, biblatex and biber ⇒ BibTeX: replace ", and" with ","
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
BibTeX: replace ", and" with ","
Welcome, this is called the Oxford and.
In order to help you to remove that, we need to see a minimal working example, and if the
In order to help you to remove that, we need to see a minimal working example, and if the
bst
file is not on CTAN, we need a link to it as well (or upload to the forum server).The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
BibTeX: replace ", and" with ","
LaTeX code:
BiBTeX code:
The current output of this can be seen above, what I want is this:
Gad H, El-Ahmady S, Abou-Shoer M, Al-Azizi M. Application of chemometrics in authentication of herbal medicines: A review. Phytochem. Anal. 2013; 24(1):1–24.
Code: Select all
\documentclass[a4paper, 12pt, oneside]{article}
\usepackage[dutch]{babel}
\usepackage[ansinew]{inputenc}
\begin{document}
\cite{ref4}
\bibliographystyle{unsrt}
\bibliography{bibli}
\end{document}
Code: Select all
@article{ref4,
author={Gad, Haidy A. AND El-Ahmady, Sherweit H. AND Abou-Shoer, Mohamed I. AND Al-Azizi, Mohamed M.},
journal={Phytochemcial Analysis},
title={Application of Chemometrics in Authentication of Herbal Medicines: A Review},
year={2013},
volume={24},
number={1},
pages={1--24},
}
Gad H, El-Ahmady S, Abou-Shoer M, Al-Azizi M. Application of chemometrics in authentication of herbal medicines: A review. Phytochem. Anal. 2013; 24(1):1–24.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
BibTeX: replace ", and" with ","
Code: Select all
\begin{filecontents}{\jobname.bib}
@article{gad2013,
author={Gad, Haidy A. AND El-Ahmady, Sherweit H. AND Abou-Shoer, Mohamed I. AND Al-Azizi, Mohamed M.},
journal={Phytochemcial Analysis},
title={Application of Chemometrics in Authentication of Herbal Medicines: A Review},
year={2013},
volume={24},
number={1},
pages={1--24},
}
\end{filecontents}
\documentclass[a4paper, 12pt, oneside]{article}
\usepackage[dutch]{babel}
\begin{document}
\cite{gad2013}
\bibliographystyle{paeschliUnsrt}
\bibliography{\jobname}
\end{document}
- Attachments
-
- paeschliUnsrt.bst
- (17.2 KiB) Downloaded 754 times
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.