Tablas en latex overleaf - Desde excel súper rápido 2020
En este video aprenderán cómo insertar tablas en latex, colocarle nombre, espacio entre nombre y tabla y por último cómo nombrarla en todo el documento según su label en Overleaf en un ejemplo desde el mismo Overleaf. Ademas puedes seguirnos para más videos o comentar si deseas algún video sobre algún tema.
Link descripción:
Excel2Latex: Tal como dice el video tienen que habilitar el complemento para poder usarlo.
https://drive.google.com/file/d/1KytCPOdiqI2VwdqPSqSwfwpYeOhFRKER/view?usp=sharing
Código:
\documentclass{article}
\usepackage[utf8]{inputenc}
\title{concreto}
\author{carlos.perezn }
\date{May 2020}
\usepackage{caption}
\captionsetup[table]{skip=10pt} % espacio debajo de las tablas
\begin{document}
\maketitle
En la figura \ref{tabconcreto}
\section{Introduction}
% Table generated by Excel2LaTeX from sheet 'Hoja1'
\begin{table}[htbp]
\centering
\caption{Valores caracteríscos del concreto}
\begin{tabular}{|c|c|c|c|c|}
\hline
\textbf{Número de simulaciones} & \textbf{100} & \textbf{200} & \textbf{350} & \textbf{500} \bigstrut\\
\hline
Probabilidad de falla( intento 1) & 0.05 & 0.075 & 0.077 & 0.052 \bigstrut\\
\hline
Probabilidad de falla( intento 2) & 0.06 & 0.065 & 0.069 & 0.058 \bigstrut\\
\hline
Probabilidad de falla( intento 3) & 0.06 & 0.06 & 0.057 & 0.064 \bigstrut\\
\hline
Probabilidad de falla( intento 4) & 0.05 & 0.06 & 0.06 & 0.056 \bigstrut\\
\hline
\end{tabular}%
\label{tabconcreto}%
\end{table}%
\end{document}