Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Awfuly Formatted LaTeX Table, How can I improve it

Its pretty much my first time using LaTeX and I’m trying to add a table with bunch of information and Text. Why are there a bunch of whitespaces in between some words. Is there a way to improve it or is my approach complety wrong. I take any advice

enter image description here

  \begin{table}[h]
    \raggedbottom
    \caption{Ziele SMART formulieren}
    \label{crouch}
    \setlength\tabcolsep{4pt}
    \begin{tabular}{|p{3cm}|p{4.6cm}|p{4.6cm}|p{4.6cm}|}
        \hline
        \textbf{Ziele} & \textbf{Wirtschaftlichkeit} & \textbf{Prozessqualität} & \textbf{Verfügbarkeit} \\
        \hline
        Zielbeschreibung & Im nächsten Geschäftsjahr (2024) IT-Betriebskosten um 15 Prozent senken \newline Basis: 2023 & Die Kundenzufriedenheit im IT-Service-Desk-Bereich durchschnittlich um 20 Prozent innerhalb der nächsten sechs Monate steigern \newline Basis: Aktueller Stand & Die Verfügbarkeit der kritischen IT-Services auf 99.9 Prozent bis zum Ende des Jahres erhöhen \newline Basis: Aktueller Stand \\
        \hline
        Spezifisch & Reduzierung der IT-Betriebskosten um 15 Prozent & Steigerung der Kundenzufriedenheit um 20 Prozent & Erhöhung der Verfügbarkeit auf 99.9 Prozent \\
        \hline
        Messbar & Finanzberichte vergleichen & Durch Umfragen und Feedbackmessungen messbar & Durch Überwachung und Ausfallzeitmessungen \\
        \hline
        Attraktiv & Steigerung der Rentabilität & Verbesserung der Servicequalität & Sicherung der Geschäftskontinuität \\
        \hline
        Realistisch & Durch Kosteneinsparungen und Effizienzverbesserungen realistisch & Durch Schulung und Prozessoptimierung realistisch & Durch die Implementierung bewährter Verfügbarkeitsmaßnahmen realistisch \\
        \hline
        Termiernierbar & Bis Ende des nächsten Geschäftsjahres & Innerhalb der nächsten sechs Monate & Innerhalb des nächsten Jahres \\
        \hline
    \end{tabular}
\end{table}

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Probably, you can adopt the solution in https://tex.stackexchange.com/a/12712/198327 to apply \raggedright to the cells in the table.

Namely, add a new column type in your preamble:

\usepackage{array}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}p{#1}}

(I changed m{#1} to p{#1} in the original solution.)

Then, change the tabular columns as

\begin{tabular}{|p{3cm}|L{4.6cm}|L{4.6cm}|L{4.6cm}|}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading