これはテキストを2列モードにしているコードですが、図は改ページせずに1列に配置したいのです。
\begin{figure}[ht]
\onecolumn\includegraphics[width=\columnwidth]{Capture.PNG}
\caption{A system}
\label{fig:1}
\end{figure}
\twocolumn
答え1
こういうことですか?
\documentclass[10pt,a4paper]{article}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\twocolumn
\lipsum
\begin{figure*}
\includegraphics{example-image}
\end{figure*}
\lipsum
\end{document}
取得するため:
最後に、TeX.se へようこそ。次回質問を投稿するときは、MWE を投稿してください。そうすれば、ユーザーの役に立つだけでなく、多くの人があなたの質問に答えてくれるようになります。