I have some table
\documentclass{article}
\usepackage{siunitx}
\begin{document}
\begin{table}
\begin{tabular}{S[ table-alignment=right,
table-format=5.1,
round-mode=places,
round-precision=1,
round-minimum=1]}
{title} \\
11111 \\
11.11 \\
0.11 \\
\end{tabular}
\end{table}
\end{document}
in which I would like to show all values below one as <1. I believe to have understood that the argument round-minimum of siunitx can achieve this. However, when using the argument as done above, it prints the last number as 0.1 rather than <1. I wonder what I have misunderstood. Using the argument in \sisetup rather than S[...] does not help, neither does removing the round-precision or round-mode arguments, or both.
