[Tex/LaTex] Disregard environment indent for equation

indentationlists

I have a large equation in nested itemize-environments, which creates a lot of indention for the equation, such the equation is only placed on the right side of the page. It would look nicer if the equation was centered w.r.t. to the text area and disregard the base indention from the itemize-environments.
Is it possible to somehow disable the indention for one equation?

MWE:

\documentclass{memoir}
\begin{document}
\begin{itemize}
  \item Item 1
    \begin{itemize}
      \item Item 1.1
        \begin{itemize}
          \item Item 1.1.1
            Text which should be indented
            % this equation should be positioned just as if it was not contained in any itemize-environment
            \[ 
              1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1
            \]
            Text which should be indented
        \end{itemize}
    \end{itemize}
\end{itemize}
\end{document}

Best Answer

\documentclass{memoir}

\begin{document}
\begin{itemize}
  \item Item 1
    \begin{itemize}
      \item Item 1.1
        \begin{itemize}
          \item Item 1.1.1
            Text which should be indented
            % this equation should be positioned just as if it was not contained in any itemize-environment
            \[
\displayindent0pt
\displaywidth\textwidth
              1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1+1
            \]
            Text which should be indented
        \end{itemize}
    \end{itemize}
\end{itemize}
\end{document}