I am using the acronym package. It happens often in my texts that I have something like:
1. We first use a \ac{NA} \citep{exocom2019} and then the text continues.
- We learn a \ac{VL} (i.e., something we did not know before).
What will look like the following in a text.
We first use a New Acronym (NA) (Exocom, 2019) and then the text continues.
We learn a Valuable Lesson (VL) (i.e., something we did not know before).
Is there a way in the acronym package to do this so that I can merge the parentheses? In a way the output becomes something like:
We first use a New Acronym (NA; Exocom, 2019) and then the text continues.
We learn a Valuable Lesson (VL; i.e., something we did not know before).
In case somebody has another good solution or workaround to the problem, please let me know.
PS: I tried to update the examples and add code as asked. I hope that helps.
PPS: An MWE
--- mwe.tex ---
\documentclass[12pt]{book}
\usepackage[printonlyused]{acronym} % used for the nice acronyms
\usepackage[style=authoryear-comp,citestyle=authoryear,natbib=true,backend=bibtex,maxbibnames=99,maxcitenames=1]{biblatex} %NEW BIB: needed so that bibentry works
\bibliography{mweBib}
\begin{document}
\begin{acronym}
\acro{NA}{New Acronym}
\acro{VL}{Valuable Lesson}
\end{acronym}
We first use a \ac{NA} \citep{exocom2019} and then the text continues.
We learn a \ac{VL} (i.e., something we did not know before).
\end{document}
--- mweBib.bib ---
@inproceedings{exocom2019,
title={My title},
author={Exocom},
year={2019},
booktitle = {Proc. Stackexchange}
}
--- command ---
latexmk -pvc mwe.tex

normalparenthesis you could solve the problem by hand with explicit commands:\acl{NA} (\acs{NA}; ....)– Ignasi Aug 14 '19 at 08:40acrosupports with thecitekey/group-citationpackage option, though I've never used it. See this question/answer for an example. – Dai Bowen Aug 14 '19 at 09:41\acusedcommand to prevent the acronym being fully printed twice. – Ignasi Aug 14 '19 at 09:46