I am using the APA style of biblatex for a document written in Spanish. Here is a MWE:
\documentclass{article}
\usepackage{filecontents}
\usepackage[spanish]{babel}
\begin{filecontents}{\jobname.bib}
@book{book,
author = {Author Name},
year = {2013},
title = {Title},
edition = {3},
address = {City},
publisher = {Publisher},
}
\end{filecontents}
\usepackage[backend=biber,style=apa]{biblatex}
\addbibresource{\jobname.bib}
\DeclareLanguageMapping{spanish}{spanish-apa}
\begin{document}
\autocite{book}
\printbibliography
\end{document}
The MWE produces the following output in the list of references:
Name, A. (2013). Title (3.a ed.). City: Publisher.
The dot between the number '3' and the superscript 'a' does not make any sense to me and I would like to remove it.
I can change the bib file to get my desired output, with something like this:
edition = {3\textsuperscript{a} ed\adddot},
This produces an output like:
Name, A. (2013). Title (3a ed.). City: Publisher.
Is there a way to reach this without changing my bib file?
