Closed recke96 closed 3 years ago
Example in question:
\DeclareAcronym{elisa}{
short = ELISA,
foreign = enzyme-linked immunosorbent assay,
foreign-babel=english,
foreign-locale=englisch
}
I'd probably just use the long form for this and set the long format to choose the correct babel
language:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[english,ngerman]{babel}
\usepackage{acro}
\babeltags{EN=english}
\DeclareAcronym{elisa}{
short = ELISA ,
long = enzyme-linked immunosorbent assay ,
long-format = \textEN ,
first-style = short-long
}
\begin{document}
Text auf deutsch bla bla aber \ac{elisa} \par
und später \ac{elisa}
\end{document}
Thank you.
I am writing in German and have an acronym that does not have a German long form, I think it would be nice to declare only an foreign form.