[Tex/LaTex] Remove the indentation of the footnote marker

footnotes

How to remove the following indentation (selected red) of the footnote marker?
enter image description here

My minimal example:

\documentclass[a4paper,12pt]{article}

\usepackage{cmap}               
\usepackage[T2A]{fontenc}       
\usepackage[utf8]{inputenc}     
\usepackage[english,russian]{babel}
\usepackage{multicol}


\author{Имя Автора}
\title{1.1 Наш первый документ}
\date{\today}

\begin{document}

\maketitle

Привет, мир!

\section*{Введение}
m quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi\footnote{Sed ut perspiciatis, unde omnis iste natus error si} optio, cumque nihil impedit, quo minus id, quod maxime placeat, facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet, ut et voluptates repudi 

\end{document}

\end{document} 

Best Answer

I suggest you load the footmisc package with the option hang to achieve your objective. The distance between the footnote marker and the start of the footnote text is determined by the parameter \footnotemargin.

The following screenshot shows just the footnote produced by the MWE given below.

enter image description here

\documentclass[a4paper,12pt]{article}

\usepackage{cmap}               
\usepackage[T2A]{fontenc}       
\usepackage[utf8]{inputenc}     
\usepackage[english,russian]{babel}
\usepackage{multicol}

\usepackage[hang]{footmisc}
\setlength\footnotemargin{1em}  % default value: 1.8em

\begin{document}

m quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi.\footnote{Sed ut perspiciatis, unde omnis iste natus error si} 

\end{document}