[Tex/LaTex] How to center the minipage

horizontal alignmentminipage

The left margin is too wide if I set 1.5\textwidth:

\begin{document}

\noindent\begin{minipage}{1.5\textwidth}

test

\end{minipage}

\end{document}

Best Answer

Put it inside a centered box

\documentclass{article}
\begin{document}
\noindent\hrulefill\par
\noindent\makebox[\textwidth][c]{%
    \begin{minipage}{1.5\textwidth}
        \hrulefill\par
    \end{minipage}}
\end{document}