[Tex/LaTex] How to change a thickness of a hrule

reportrules

I am searched for changing a thickness of a \hrule in my report document ? any idea?

Best Answer

The latex syntax is \rule not \hrule but if you want to use \hrule then

\hrule height 2cm 

should work. The latex syntax would be

\begin{center}
\rule{\textwidth}{2cm}
\end{center}