Estou tentando montar uma tabela na qual quero incluir algumas fotos. Tentei diferentes modelos de mesa, mas tenho dois problemas: 1. A mesa é muito longa e não cabe em uma página. Não consigo encontrar onde modificá-lo (e como =)). 2. Não há espaço entre as palavras na minha tabela (por exemplo, está escrito "AmphoredeKos" em vez de "Amphore de Kos"). Não sei como posso modificar isso.
Se alguém pudesse me ajudar, seria muito bom!! Muito obrigado =) !!
Table 1 : Liste des échantillons prélevés au DRASSM 25.02.2019 textbf{-Partie 1-}
\newcolumntype{C}{>{$\displaystyle}Sc<$}
\cellspacetoplimit=2pt
\cellspacebottomlimit=2pt
\begin{center}
\begin{tabular}{|l|*{7}{C|}} \hline \hline
Ref. & Photo & Typologie & Informations sur l'\acute{e}chantillon & Poix & Tesson & Objet \\ \hline \hline
6545 &
\begin{minipage}{.13\textwidth}
\includegraphics[width=20mm, height=20mm]{IMG_0716_min}
\end{minipage}
& Dressel 5 & Amphore de Kos & & & X \\ \hline
6828A &
\begin{minipage}{.13\textwidth}
\includegraphics[width=20mm, height=20mm]{IMG_0718_min}
\end{minipage}
& & & X & X & \\
\hline
Responder1
O MWE a seguir contém três versões diferentes da sua tabela.
Na primeira versão, utilizei a valign=t
opção de alinhar as imagens com o texto nas células adjacentes. Além disso, usei o cellspace
pacote para algum espaço em branco vertical e ajustei o espaço em branco horizontal ao redor das imagens para corresponder ao espaço em branco vertical. Também usei o makecell
pacote para dividir o cabeçalho da 4ª coluna em duas linhas para que a tabela fique mais estreita e caiba na largura do texto. Para obter uma legenda, usei o table
ambiente em combinação com o \caption
comando.
Na segunda tabela, usei o tabularx
pacote para deixar a tabela tão larga quanto a largura do texto. Isto pode ser útil se a quarta coluna contiver um texto mais longo.
No terceiro exemplo, removi as linhas verticais e substituí as linhas horizontais pelas regras do booktabs
pacote:
\documentclass{article}
\usepackage{geometry}
\usepackage[demo]{graphicx} % Remove the demo option in your real document.
\usepackage{cellspace}
\usepackage[export]{adjustbox}
\usepackage{makecell} % Only for the first table
\usepackage{tabularx} % Only fr the second and third table
\usepackage{booktabs} % Only for the third table
\begin{document}
\begin{table}
\caption{Liste des échantillons prélevés au DRASSM 25.02.2019 \textbf{-Partie 1-}}
\cellspacetoplimit=2pt
\cellspacebottomlimit=2pt
\centering
\begin{tabular}{|l|@{\hspace{2pt}}Sc@{\hspace{2pt}}|*{6}{c|}} \hline \hline
Ref. & Photo & Typologie & \makecell[cc]{ Informations \\ sur l'échantillon} & Poix & Tesson & Objet \\ \hline \hline
6545 &
\includegraphics[width=20mm, height=20mm,valign=t]{IMG_0716_min}
& Dressel 5 & Amphore de Kos & & & X \\ \hline
6828A &
\includegraphics[width=20mm, height=20mm,valign=t]{IMG_0718_min}
& & & X & X & \\
\hline
\end{tabular}
\end{table}
\begin{table}
\caption{Liste des échantillons prélevés au DRASSM 25.02.2019 \textbf{-Partie 1-}}
\cellspacetoplimit=2pt
\cellspacebottomlimit=2pt
\centering
\begin{tabularx}{\textwidth}{|l|@{\hspace{2pt}}Sc@{\hspace{2pt}}|c|X|*{3}{c|}} \hline \hline
Ref. & Photo & Typologie & Informations sur l'échantillon & Poix & Tesson & Objet \\ \hline \hline
6545 &
\includegraphics[width=20mm, height=20mm,valign=t]{IMG_0716_min}
& Dressel 5 & Amphore de Kos & & & X \\ \hline
6828A &
\includegraphics[width=20mm, height=20mm,valign=t]{IMG_0718_min}
& & & X & X & \\
\hline
\end{tabularx}
\end{table}
\begin{table}
\caption{Liste des échantillons prélevés au DRASSM 25.02.2019 \textbf{-Partie 1-}}
\cellspacetoplimit=2pt
\cellspacebottomlimit=2pt
\centering
\begin{tabularx}{\textwidth}{l@{\hspace{2pt}}Sc@{\hspace{2pt}}cX*{3}{c}}
\toprule
Ref. & Photo & Typologie & Informations sur l'échantillon & Poix & Tesson & Objet \\ \midrule
6545 &
\includegraphics[width=20mm, height=20mm,valign=t]{IMG_0716_min}
& Dressel 5 & Amphore de Kos & & & X \\
6828A &
\includegraphics[width=20mm, height=20mm,valign=t]{IMG_0718_min}
& & & X & X & \\
\bottomrule
\end{tabularx}
\end{table}
\end{document}