I have settled on natbib with agsm style. And have a problem similar to the ones in the postings Removing the quotations marks from the bibliography using harvard style (agsm) and Fine tuning natbib for agsm bibliography style, and adding links. You can have a look at the answers given for these posts. That is, changing the agsm.bst file does work for the article form. After changing the agsm.bst file according to the answers, I do not have any single quote mark anymore on my bibliography for articles. But for the @inproceedings, I still have the single quote mark around the booktitle field. It looks like, for example:
Herman, G. (1974), Reconstruction of binary patterns from a few projections, in ‘International Computing Symposium 1973’, North-Holland Publ. Co., Amsterdam, pp. 371–378.
You can see the single quote marks.
I looked at the agsm.bst file of the proceedings part but I don't know which part to change. Can anyone help me with this? Thanks in advance!
You can try this as sss.tex:
\documentclass[]{article}
\usepackage{natbib}
\bibliographystyle{agsm}
\begin{document}
\title{Title}
\author{Author}
\date{Today}
\maketitle
\citep{sss}
\bibliography{sss}
\end{document}
and this is my sss.bib:
@inproceedings{sss,
author = "G. Herman",
title = "Reconstruction of binary patterns from a few projections",
booktitle = "International Computing Symposium 1973",
publisher = "North-Holland Publ. Co.",
address = "Amsterdam",
pages = "371-378",
year = "1973"
}
How can I get rid of the single quote mark around 'International Computing Symposium 1973' in the References section?
