1

I have a question. I'm writing paper in two columns form, but I want to place my figure in centre of page instead of column. How can I do this? Thanks in advance.

Sebastiano
  • 54,118
Ali
  • 11
  • 2
    Welcome! Try figure*. If that isn't want you want, post a minimal working example i.e. code for a minimal document demonstrating the issue. – cfr Mar 01 '17 at 02:27
  • Look at: http://tex.stackexchange.com/a/30988/124842 – Bobyandbob Mar 01 '17 at 05:12

1 Answers1

1

Here, I add my code to place your figure in centre of page instead of column.

enter image description here

\documentclass[twocolumn]{article}
\usepackage{lipsum,graphicx}
\usepackage[margin=1in]{geometry}
\begin{document}
\lipsum[1-7]
\begin{figure*}
  \centering\includegraphics[width=.5\linewidth,height=3in]{example-image-a}
  \caption{This is a figure caption}
\end{figure*}
\lipsum[8-14]
\end{document}
Sebastiano
  • 54,118