Graphics, Figures & TablesPositioning two column figures

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
nanausto
Posts: 6
Joined: Wed Oct 10, 2012 5:11 pm

Positioning two column figures

Post by nanausto »

Hello,

I want to place my figure that span two columns in the right plae (here), in IEEEtran conference.

I wrote the code as it is in the different forums. But, Latex place them in different places.

here is my tex file.

Thanks in advance.

Best regards
Attachments
fedcsis.tex
(9.2 KiB) Downloaded 299 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Positioning two column figures

Post by Johannes_B »

Hi and welcome,
where did you read that this will work?
here in two-column documents is not possible, at least not that i know of.
A two-column float at the bottom of the page is possible with some hackery, though.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
kaku92
Posts: 3
Joined: Sun Apr 26, 2015 1:06 am

Positioning two column figures

Post by kaku92 »

Try this

Code: Select all

\begin{figure}
  %\caption{} %if you want it in top 
  \begin{subfigure}
    %add your first graphics here 
  \end{subfigure}
  \begin{subfigure}
    %add your second graphics here 
  \end{subfigure}
   .
   .
   .
\end{figure}
Last edited by Stefan Kottwitz on Sun Apr 26, 2015 10:05 am, edited 1 time in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10323
Joined: Mon Mar 10, 2008 9:44 pm

Re: Positioning two column figures

Post by Stefan Kottwitz »

Hi kaku92,

thank you for your suggestion!

I think the question means simple figures in a two-column text.

Stefan
LaTeX.org admin
Post Reply