How to make a numeration of the rows in the table(tabularx) automatically?
I have a table, and in the first column I have numbers of the rows, right now I just type this numbers manually, but is there is any command which can do it automatically?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[russian]{babel} % Включаем пакет для поддержки русского
\usepackage{multirow,tabularx}
\usepackage[a4paper,margin=1in,landscape]{geometry}
\begin{tabularx}{\textwidth}{ |X|X|X| }
\hline
№ & Характер работ & Ответственные лица \\ \hline
1. & Покрасить стену & Иванов И.И. \\ \hline
2. & Покрасить стену & Петров И.И. \\ \hline
3. & Сидоров & Сидоров А.О. \\ \hline
\end{tabularx}
\end{document}

