! LaTeX エラー: 外部 par モードではありません。サブ図は \twocolumn にあります

! LaTeX エラー: 外部 par モードではありません。サブ図は \twocolumn にあります

ドキュメントの残りの部分を 2 列に保ったまま、ページの幅にまたがるサブ図を配置しようとしています。そのため、2 列モードを終了してサブ図を使用しようとしています。しかし、次のエラーが発生します。

! LaTeX エラー: 外部 par モードではありません。

以下は最小限の動作例です。

\documentclass[12pt,a4paper,twocolumn,twoside]{article}
\usepackage{float}
\usepackage{subfig}
\begin{document}
\twocolumn[
\begin{@twocolumnfalse}{
\begin{figure}
  \subfloat[Caption 1]{\label{ref_label1}\includegraphics[width=0.5\textwidth]{fig1}}
  \subfloat[Caption 2]{\label{ref_label2}\includegraphics[width=0.5\textwidth]{fig2}}
\end{figure}
}
\end{@twocolumnfalse}
]
\end{document}

このエラー メッセージの他の解決策を調べたところ、通常は環境の 1 つを削除するようにアドバイスされていますが、この場合はすべての環境が必要であると考えています。

これをどうすれば修正できますか?

関連情報