I am using the apacite and hyperref packages and the apacite bibliography style to create the formatted bibliographic entries for my document in APA style on TexWorks using BibTex. I would like for the DOIs in my bibliography to link to their DOI URLs.
Using the package doi converts them to links, but every link in my bibliography now shows up as, e.g.
Author. (year). Title.Journal. Vol (Issue).pages. doi: doi:10.2214/ajr.12.9928
The entry in my .bib file contains
doi = {10.2214/ajr.12.9928},
How do I remove the extra 'doi:'?



https://doi.org/10.2214/ajr.12.9928__##. I'm not familiar with\newcommand,\href, etc. Could you clarify how these latter commands work? You have\href{https://doi.org/...in your code, but I still do not get the desired doi format in my output file – Euclides Nov 10 '21 at 17:02\newcommand{\doi@}[1]{\url{https://doi.org/#1}}instead of\newcommand{\doi@}[1]{\href{https://doi.org/#1}{#1}}in the third code example. – moewe Nov 10 '21 at 19:45