I want to generate a pdf with my thesis when I compile the things to generated pdf.
What I see is that on left side a lot of space is left.

I am not clear in latex how do we reduce the margins on left side.
I want to generate a pdf with my thesis when I compile the things to generated pdf.
What I see is that on left side a lot of space is left.

I am not clear in latex how do we reduce the margins on left side.
Use
\documentclass{report}
\usepackage[left=0.5cm%,top=0.5cm,bottom=0.5cm,right=0.5cm
]{geometry}
\begin{document}
content...
\end{document}
Remove % if you want to set all side margins.