Graphics, Figures & Tables ⇒ Positioning two column figures
Positioning two column figures
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 326 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Positioning two column figures
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.
Positioning two column figures
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}- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Re: Positioning two column figures
thank you for your suggestion!
I think the question means simple figures in a two-column text.
Stefan