TeX/Latex - tablas en paralelo en latex

 
Vista:

tablas en paralelo en latex

Publicado por Mari (1 intervención) el 18/11/2009 16:44:18
¡Hola! Quiero poner dos tablas en paralelo en una página el código que tengo es el siguiente:

\begin{figure}[h]

\hfill
\begin{minipage}[t]{.45\textwidth}
\begin{center}
\renewcommand*\theadfont{\bfseries}
\renewcommand*\theadalign{c}
\begin{table}[h]
%%%% centrar
\begin{minipage}[c]{0.5\textwidth}
\begin{center}
%%%% reajustar a un ancho 90%
\resizebox{0.5\textwidth}{!}{

DATOS DE LA TABLA

\end{tabular}
}
\end{center}
\caption[Radial 1, ángulo 0 grados respecto al transmisor]{Radial 1, ángulo 0 grados respecto al transmisor}
\end{table}
\end{minipage}

\hfill
\begin{minipage}[t]{.45\textwidth}

\renewcommand*\theadfont{\bfseries}
\renewcommand*\theadalign{c}
\begin{table}[h]
\begin{minipage}[c]{0.5\columnwidth}%
%%%% centrar
\begin{center}
%%%% reajustar a un ancho 90%
\resizebox{0.9\textwidth}{!}{

\begin{tabular}{|c|c|c|c|}

DATOS DE LA TABLA

\end{tabular}
}
\end{center}

\caption[Radial 1, ángulo 90 grados respecto al transmisor]{Radial 1, ángulo 90 grados respecto al transmisor}

\end{minipage}
\hfill
\end{figure}

\end{table}
}

y no me funciona, no me aparece nada al compilar, aparece la hoja en blanco, las tablas están bien hechas porque sin el figure y el minipage sí se ven.

Muchas gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

tablas en paralelo en latex

Publicado por Laura (1 intervención) el 11/05/2019 12:58:08
Tienes que quitar \begin{table} dejando solo lo de \begin{tabular} y te funcionará
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar