[Tex/LaTex] Removing [Author Year] Tags from Reference List using ACM Journal Style

acmbibtex

How can I remove the tags before each bibliographic entry in the list (and also remove the paragraph indentation if possible? Also, is the version without theĀ [Author Year] a valid ACM bibliography style at all?

(See image attached please)

My code for the bibliography is this:

\bibliographystyle{ACM-Reference-Format-Journals}
\bibliography{library}  

Thanks.enter image description here

Best Answer

Assuming your copy of the style file ACM-Reference-Format-Journals.bst is more or less the same as the one I was able to obtain from this GitHub site, you can get rid of the bracketd citation labels by loading the natbib package (in the preamble):

\usepackage{natbib}

To get rid of the handing indentation, use the instruction

\setlength\bibhang{0pt}

You don't mention the document class you use or if you load any packages that perform citation management chores, so this is as far as I can go in giving advice.