I want to do something similar to this link, which adds a word between two citations. When I have a range of citations (more than 2 in a row), it like to change the hyphen to the word "to". For some reason changing the \compcitedelim doesn't work for me. Thanks for any suggestions.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[backend=biber, sorting=none, style=numeric-comp]{biblatex}
\addbibresource{test.bib}
\title{Test}
\author{T. Est }
\date{November 2019}
\renewcommand*{\compcitedelim}{\bibstring{to}}
\renewcommand*{\multicitedelim}{\bibstring{to}
\begin{document}
\maketitle
\section{Introduction}
Test \cite{key1, key2, key3}.
\printbibliography
\end{document}
The bibliography, test.bib, has three entries
@misc{key1,
author = {Author, O.},
title = {The First Citation},
year = {2019},
howpublished = {Unpublished},
}
@misc{key2,
author = {Author, T.},
title = {The Second Citation},
year = {2019},
howpublished = {Unpublished},
}
@misc{key3,
author = {Author, T.},
title = {The Third Citation},
year = {2019},
howpublished = {Unpublished},
}
![Test [1 to 3].](../../images/98672aef5a3e025d62cd6da4b1380e9d.webp)

authoryear-comp,authortitle-compand friends) and separates citations where thecompfeature was used and the author name dropped. See the edit please. – moewe Nov 19 '19 at 05:52