表格行距意外变化

表格行距意外变化

手动调整表格行间距时,\\[10pt]实际间距会有所不同。第二行似乎根本没有间距。

梅威瑟:

\documentclass[10pt, a4paper]{scrartcl}
\usepackage{tabularx}
\usepackage[left=2cm, right= 2cm]{geometry}
\begin{document}

\begin{tabularx}{\textwidth}{@{}r@{}c@{}lX}
    03/2020 & \ -- \ & heute & \textbf{Company -- Bachelorarbeit} \\
    & & & Test und Evaluierung von Designkriterien für lasergeschmolzene Titanteile im SLM-Prozess unter Verwendung von Heitzelementen\\[10pt]
    08/2018 & -- & 01/2019 & \textbf{Company -- Praktikumssemester} \\ 
    & & & Abteilung Entwicklungs / Standardisierung \\[10pt]
    07/2017 & -- & 08/2017 & \textbf{Company -- Vorpraktikum} \\
    & & & Instandhaltung Mechanik \\[10pt]
    07/2016 & -- & 08/2016 & \textbf{Company -- Vorpraktikum} \\
    & & & Ausbildungszentrum / Montage Antrieb \\
\end{tabularx}

\end{document}

答案1

我建议使用包\addlinespace中的选项booktabs。如果您希望空间正好是 10pt 大小,则可以添加\setlength{\defaultaddspace}{10pt}到序言中。

在此处输入图片描述

\documentclass[10pt, a4paper]{scrartcl}
\usepackage{tabularx}
\usepackage[left=2cm, right= 2cm]{geometry}
\usepackage{booktabs}
\begin{document}

\begin{tabularx}{\textwidth}{@{}r@{}c@{}lX}
    03/2020 & \ -- \ & heute & \textbf{FIT AG -- Bachelorarbeit} \\
    & & & Entwicklung und Beurteilung von Qualitätssicherungskriterien für lasergesinterte Kunststoffteile im SLS-Verfahren unter Berücksichtigung der MDR \\ \addlinespace
    08/2018 & -- & 01/2019 & \textbf{Maschinenbau Silberhorn GmbH -- Praktikumssemester} \\ 
    & & & Abteilung Entwicklungs / Standardisierung \\ \addlinespace
    07/2017 & -- & 08/2017 & \textbf{Maschinenfabrik Reinhausen -- Vorpraktikum} \\
    & & & Instandhaltung Mechanik \\ \addlinespace
    07/2016 & -- & 08/2016 & \textbf{Maschinenfabrik Reinhausen -- Vorpraktikum} \\
    & & & Ausbildungszentrum / Montage Antrieb \\
\end{tabularx}

\end{document}

相关内容