I was looking for an answer to this question which is, by the way, unanswered :(
After searching this site, I read many questions similar to this one, and I found out that all of the answers suggested the use of widetext package.
But after looking in the code of widetext package, I found that it basically uses the strip environment from cuted package.
Am I missing something? Apart from those rules (which I don't understand/like) what is the advantage of using widetext package rather than cuted package?
Here are two examples where the code looks similar (the widetext package just paints those rules, adds a \par and adds \parindent \@parindent, two indents?).
\documentclass[twocolumn]{scrartcl}
\usepackage{kantlipsum,widetext}
\begin{document}
\kant[1-2]
\begin{widetext}
\kant[4]
\end{widetext}
\kant[5]
\end{document}
And the other one
\documentclass[twocolumn]{scrartcl}
\usepackage{kantlipsum,cuted}
\begin{document}
\kant[1-2]
\begin{strip}
\kant[4]
\end{strip}
\kant[5]
\end{document}
Here you can download the package widetext.

cuted(and thereforewidetextas well) has the problem of corrupting vertical spacing in some cases. Try to fill your page with one-line itemize items and you should see it. – yo' Jan 24 '14 at 22:10stripenvironment and it “broke” the space between items 27 and 28. In my case this does't affect me, but thanks for telling us :) – Manuel Jan 24 '14 at 22:18