具有不同单元格高度的表格 *多行*

具有不同单元格高度的表格 *多行*

这是我现在的状态。我尝试了很多方法来实现第二张图片中的布局,但根本行不通。 我的代码

我想要实现的目标

这是我的代码

    \begin{longtable}{|p{.37\textwidth}|p{.01\textwidth}|p{.01\textwidth}|p{.01\textwidth}|p{.01\textwidth}|p{.01\textwidth}|p{.01\textwidth}|p{.36\textwidth}|}
    \hline
    \textbf{Conversion}
    &\textbf{\rotatebox{90}{sehr deutlich}}
    &\textbf{\rotatebox{90}{deutlich}} \vspace{0.7em}\raggedright{ausreichend}
    &\textbf{\rotatebox{90}{weitgehend}}
    &\textbf{\rotatebox{90}{gering}}
    &\textbf{\rotatebox{90}{sehr gering}}
    &\textbf{\rotatebox{90}{Aussage nicht möglich}}
    &\centering{Bemerkungen}
\end{longtable}

\vspace{-2em}

\begin{longtable}{|>{\centering\arraybacksclash}p{.95\textwidth}|}
  \hline
  \rowcolor{light-gray}
  \textbf{slten} \\
\end{longtable}
\vspace{-1.1em}

\begin{tabular}{@{}|p{.37\textwidth}|c|c|c|c|c|c|p{.345\textwidth}|}\hline
  \multirow {brachte durchdachte, themenbezogene Beiträge ein.} & 1& 1& 1& 1& 1& 1 & {Foo mahe fsdaflkdsaflknasdflknsaaflkdsaflknasdflknsaaflkdsaflknasdflknsaaflkdsaflknasdflknsaaflkdsaflknasd aflkdsaflknasdflknsa aflkdsaflknasdflknsa aflkdsaflknasdflknsaflknsaaflkdsaflknasdflknsadlkfnsanf asdnlk nflak} \\\cline{1-7}
   {beobachtete genau.} & 1 & 1 & 1 & 1 & 1 & 1 & \\ \cline{1-7}
     {erklärte Sachinhalte treffend.} & 1 & 1 & 1 & 1 & 1 & 1 & \\ \cline{1-7}
    {stellte Zusammenhänge zwischen Sachinhalten her.} & 1 & 1 & 1 & 1 & 1 & 1 & \\ \cline{1-7}

\end{tabular}

我非常感谢大家的帮助。我已将无法完成的事情用红色标记出来。

答案1

像这样吗?

    \documentclass{article}
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    \usepackage[showframe]{geometry}
    \usepackage{ragged2e} 
    \usepackage[table]{xcolor}
    \usepackage{rotating}
    \usepackage{ltablex, multirow, makecell}
    \renewcommand{\theadfont}{\normalsize\bfseries}
    \settowidth{\rotheadsize}{\theadfont Aussage nicht möglich}
    \renewcommand{\tabularxcolumn}[1]{>{\arraybackslash}m{#1}}
    \setlength{\extrarowheight}{2pt}
    \usepackage{geometry}

    \begin{document}

    \keepXColumns
    \begin{tabularx}{\linewidth}{|X|*{6}{c|}X|}
    \hline
    \centering \textbf{Conversion}
    &\rothead{sehr deutlich}
    & \rothead{deutlich} %
    & \rothead{weitgehend}
    & \rothead{gering}
    & \rothead{sehr gering}
    & \rothead{Aussage nicht möglich}
    &\centering{Bemerkungen} \tabularnewline
    & \multicolumn{6}{c|}{ausreichend} & \\
  \hline
  \rowcolor{lightgray}
  \multicolumn{8}{c}{\bfseries slten} \\
  \hline
  \multirow{1}{=}[1ex]{brachte durchdachte, themenbezogene Beiträge ein.} & 1& 1& 1& 1& 1& 1 & {Foo mahe fsdaflkdsaflkna sdflknsaaflkdsaf lknasdflkn saaflkds aflknasdflknsa aflkdsaflknas dflknsaaflkdsaflkn asd aflkdsaflknasdflknsa aflkdsa flknasdflknsa aflkdsaflknasdflknsaflknsaaflkdsaflknasdflknsadlkfnsanf asdnlk nflak} \\
  \cline{1-7}
   {beobachtete genau.} & 1 & 1 & 1 & 1 & 1 & 1 & \\ \cline{1-7}
     {erklärte Sachinhalte treffend.} & 1 & 1 & 1 & 1 & 1 & 1 & \\ \cline{1-7}
    {stellte Zusammenhänge zwischen Sachinhalten her.} & 1 & 1 & 1 & 1 & 1 & 1 & \\ \cline{1-7}
    \end{tabularx}

    \end{document} 

在此处输入图片描述

相关内容