Let's say I've created a large numbered list of items with some cyrillic characters, but now I want to reorder them alphabetically. By the way the numbers at each item should also be reordered. I have read the Alphabetically display the items in itemize article, but the method here was shown to fail in my case (perhaps I did smth wrong). Isn't it just easier to put the whole code into Excel and be happy with its sorting tool?
Here is what I have:
1) БВГ
2) АБВ
3) ДЕЖ
4) ХАУ
There is what I need:
1) АБВ
2) БВГ
3) ДЕЖ
4) ХАУ
The code to work with:
\documentclass{article}
\usepackage[T2A]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english,russian]{babel}
\begin{document}
\begin{enumerate}
\item БВГ
\item АБВ
\item ДЕЖ
\item ХАУ
\end{enumerate}
\end{document}

xindy, got to try. – Rubisko Jun 08 '20 at 05:44