I am trying to add a horizontal line in my document.
\documentclass{report}
\begin{document}
\begin{center}
\Huge CV
\end{center}
\line(1,0){250}
\end{document}
For some reason, \line(1,0){250} will generate a line that is unequal on your document. What I mean is that the line will appear to be a lot longer on the right than the left. I am tryng to make it long and even. I also want to try to make it thicker if possible.
