I was wondering how one could use multirow without centering the cell entry vertically. Since I haven't found any questions regarding this, might you please help?
On my way there, I discovered multiple further problems as can be seen in my MWE:
Why does multirow command not work at all in my MWE? What did I miss?
How do I manage line breaks within the first word in a tabular cell? Neither p columns nor P columns (with arraybackslash) seem to work here.
What about that first capital letter getting misplaced? How can one avoid this?
\documentclass[a4paper]{article}
% Based on the class scrreprt by "KOMA-Script", whatever that means. If that doesn't help, please try \documentclass{scrreprt} or one of the usual.
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{array}
\newcolumntype{P}[1]{>{\raggedright\arraybackslash\hspace{0pt}}p{#1}}
\newcolumntype{x}{>{\raggedright\arraybackslash\hspace{0pt}}X}
\begin{document}
\begin{table}[htb]
\centering
\setlength{\tabcolsep}{4mm}
\renewcommand{\arraystretch}{1.5}
\begin{tabularx}{\textwidth}{|P{6em}|x|P{6em}|}
\hline
\multirow{3}{*} Kommunizierbarkeit & Verständlichkeit und Vermittelbarkeit des Programms für Mitarbeiter und Fahrgäste & \multirow{3}{*} Mitarbeiterbefragung, Fahrgastbefragung, Anzahl der Geschäftsvorfälle in XYZ bzw. an der Schnittstelle ABCD / XYZ \\
& Möglichkeit der Komplexitätsreduktion hinsichtlich der Anweisungen und Informationen für Mitarbeiter und Fahrgäste & \\
& Kommunizierbarkeit der Lösungen & \\\hline
\end{tabularx}
\end{table}
\end{document}



tabularx, so if you want to have a longtable variant of it you can try the packagesltablexorltxtable. You have to get rid of thetableenvironment, however. And you must make sure that the page break doesn't come in the middle of a multirow cell. See themultirowdoc. (I don't know if the solution given there works with these other packages.) – Pieter van Oostrum Nov 09 '16 at 18:29multirow.insis part of what you download from CTAN, together withmultirow.dtx. Put them in a directory, and then runtex multirow.insorlatex multirow.insin that directory (using a command line). If you are not familiar with the command line, then maybe you can use your favourite TeX editor/processor, which probably also will work. You can also download a ready-made multirow.sty fromhttp://mirror.ctan.org/systems/texlive/tlnet/archive/multirow.tar.xz, maybe that's easier.But you should find out why your package manager can't do it, as regularly updating your TeX system helps
– Pieter van Oostrum Nov 10 '16 at 13:44