In latex, I would like to know how can I create a command so that it cites the name of the journal. It does not has to hyper referenced. For ex. if I have the following document
documentclass{article}
usepackage{filecontents}
% Sample bibliography
begin{filecontents}{jobname.bib}
@article{AUTH2024,
author = {Author, A. and Author, B. and Author, C.},
title = {Title of the Article},
journal = {Journal Name},
year = {2024},
volume = {1},
pages = {1-10},
}
end{filecontents}
begin{document}
citejournal{AUTH2024}
bibliographystyle{plain}
bibliography{jobname}
end{document}
In the above document, only the name of the journal should be printed which will come from the journal
element in the bibtex of a citekey.
Thank you.