Comment puis-je juxtaposer deux tableaux comme celui-ci tout en leur donnant une et une seule légende commune ? Ouvrir dans l'éditeur Overleaf
\begin{table}[htb] \centering \begin{tabular}{|c|c|c|c|c|} \hline \textbf{Biens} & A & B & C & D\tabularnewline \hline \hline \textbf{Prix en UCA} & 4 & 12 & 7 & 2\tabularnewline \hline \end{tabular} \caption{Bla bla} \label{uca} \end{table} |
On peut les mettre dans une boîte ou plus simplement, si l'on souhaite les centrer, utiliser Ouvrir dans l'éditeur Overleaf
\documentclass{article} \begin{document} Voici deux tableaux : \begin{table}[htb] \centering \hfill \begin{tabular}{|c|c|c|c|c|} \hline \textbf{Biens} & A & B & C & D\tabularnewline \hline \hline \textbf{Prix en UCA} & 4 & 12 & 7 & 2\tabularnewline \hline \end{tabular} \hfill \begin{tabular}{|c|c|c|c|c|} \hline \textbf{Tagada} & A & B & C & D\tabularnewline \hline \hline \textbf{Tsoin} & 8 & 177 & 56 & 39\tabularnewline \hline \end{tabular} \hfill\null \caption{Bla bla} \label{uca} \end{table} \end{document} Publiée 10 Sep '16, 14:01 unbonpetit ♦♦ Pathe ♦♦ |
On peut aussi recourir au package
(cf. lignes en commentaire). Voici un ECM : Ouvrir dans l'éditeur
\documentclass[french]{article} \usepackage[T1]{fontenc} \usepackage[utf8]{inputenc} \usepackage{lmodern} \usepackage[a4paper]{geometry} \usepackage{subcaption} \usepackage{babel} \begin{document} \begin{table} \centering \begin{subtable}[b]{.45\linewidth} \centering \begin{tabular}{|c|c|c|c|c|} \hline \textbf{Biens} & A & B & C & D \\ \hline \hline \textbf{Prix en UCA} & 4 & 12 & 7 & 2 \\ \hline \end{tabular} % \caption{Un beau tableau} % \label{un-beau-tableau} \end{subtable} \begin{subtable}[b]{.45\linewidth} \centering \begin{tabular}{|c|c|c|c|c|} \hline \textbf{Tagada} & A & B & C & D \\ \hline \hline \textbf{Tsoin} & 8 & 177 & 56 & 39 \\ \hline \end{tabular} % \caption{Un autre beau tableau} % \label{un-autre-beau-tableau} \end{subtable} \caption{Deux beaux tableaux} \label{mes-beaux-tableaux} \end{table} \end{document} Publiée 11 Sep '16, 11:34 denis ♦♦ Sans oublier
(26 Sep '16, 01:25)
Bernard
|
@Const Merci d'essayer de fournir un ECM. En particulier, pour faciler la tâche à ceux qui voulaient aider, il aurait été souhaitable d'ajouter le préambule (au moins
\documentclass{...}
) et l'environnementdocument
(la paire\begin{document}
et\end{document}
), comme l'a fait unbonpetit dans sa réponse.@Const Autre petit commentaire en passant : je vous recommande la lecture du ce document contenant des recommandations pour faire de beaux tableaux. Il y est notamment écrit que la présence de filets (ou traits) verticaux n'est presque jamais nécessaire.