我正在尝试设置一个表格,我想在其中包含一些图片。我尝试了不同的表格模型,但遇到了两个问题:1. 表格太长,无法放在一页中。我找不到在哪里修改它(以及如何修改 =))。2. 我的表格中的单词之间没有空格(例如,它写的是“AmphoredeKos”而不是“Amphore de Kos”)。我不知道如何修改它。
如果有人能帮助我,那就太好了!非常感谢=)!
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
答案1
以下 MWE 包含您的表的三个不同版本。
在第一个版本中,我使用了valign=t
选项来将图像与相邻单元格中的文本对齐。此外,我还使用该cellspace
包来处理一些垂直空白,并调整图像周围的水平空白以匹配垂直空白。我还使用该包makecell
将第 4 列的列标题分成两行,以便表格更窄并适合文本宽度。为了获得标题,我将环境table
与命令结合使用\caption
。
在第二个表格中,我使用了tabularx
包来使表格的宽度与文本宽度相同。如果第 4 列包含较长的文本,这可能会很有用。
在第三个例子中,我删除了垂直线并用包中的规则替换了水平线booktabs
:
\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}