Page Layoutrevtex4-1 | Empty second Column

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
nahuelv
Posts: 2
Joined: Tue Dec 13, 2011 10:15 pm

revtex4-1 | Empty second Column

Post by nahuelv »

Hi, I'm a newbie in LaTeX, and I have a little issue in the end of a long work. I need to put seven images at the end of a two column article. For some reason it just use the first column and leave the second column empty. I've tried with [h], [p], [!]. Please can anyone help me?
That's the PDF http://dl.dropbox.com/u/20850233/modelo%20informe.pdf
The first part of the code

Code: Select all

\documentclass[aps,pra,twocolumn,groupedaddress]{revtex4-1}

%\usepackage[latin1]{inputenc}%t�ldes y �
\usepackage[spanish]{babel}		%separación en sílabas en español
\usepackage[utf8]{inputenc}		%encoding UTF8 (para poder usar acentos sin necesidad de \')
\usepackage{graphicx}% Include figure files
\usepackage[T1]{fontenc}
\usepackage{graphicx}			%graficos en formato PDF, PNG, JPG, etc. (no EPS)
\usepackage{amsmath, amssymb}
\usepackage{dcolumn}% Align table columns on decimal point
\usepackage[scriptsize]{caption}%necesario para poner captions en las figuras insertadas con \begin{minipage}
\usepackage{times}
\usepackage{amsmath}
\usepackage{gensymb}
\usepackage{alltt}
\usepackage{float} 
The problematic part

Code: Select all

\begin{figure}[p]
    \centering
    \includegraphics[width=2in]{img/apendice/brida}
    \caption{Plano de toda la trampa de vacío. Medidas en $mm$.}
    \label{fig:1}
\end{figure}

\begin{figure}[p]
    \centering
    \includegraphics[width=1in]{img/apendice/tapalat}
    \caption{Vista lateral de la tapa. Medidas en $mm$.}
    \label{fig:2}
\end{figure}

\begin{figure}[p]
    \centering
    \includegraphics[width=3in]{img/apendice/tapafrent}
    \caption{Vista frontal de la tapa. Medidas en $mm$.}
    \label{fig:3}
\end{figure}

\begin{figure}[!]
    \centering
    \includegraphics[width=1.5in]{img/apendice/baselat}
    \caption{Vista lateral de la base. Medidas en $mm$.}
    \label{fig:4}
\end{figure}

\begin{figure}[!]
    \centering
    \includegraphics[width=3in]{img/apendice/separador}
    \caption{Plano del separador plástico. Medidas en $mm$.}
    \label{fig:5}
\end{figure}

\subsection{\label{sec:mec} Planos del mecanismo de posicionamiento}

\begin{figure}[!]
    \centering
    \includegraphics[width=3in]{img/apendice/soporteypos}
    \caption{Plano del separador plástico. Medidas en $mm$.}
    \label{fig:5}
\end{figure}

\begin{figure}[!]
    \centering
    \includegraphics[width=3in]{img/apendice/soporte}
    \caption{Plano del separador plástico. Medidas en $mm$.}
    \label{fig:5}
\end{figure}

\end{document}

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Post Reply