how to split the column headings? How do I get newline after some word? When I put \\, it changes the alignment badly.
This is my code:
\documentclass{article}
\usepackage{pgfplots}
\usetikzlibrary{patterns}
\usepackage{booktabs,tabularx}
\begin{document}
\begin{table}[t]
%\setlength{\tabcolsep}{6.2 pt}
\caption{Case studies}
\centering
\begin{tabularx}{\textwidth}{p{3cm}ccccc}
\toprule
\centering Nature of unreliability & Sender SST & Receiver SST & Implementation SST & Retransmission Bound & Decidability\\
\midrule
Noisy (Single fixed error message) & DSST & DSST & DSST & Unbounded & Yes\\
\bottomrule
\end{tabularx}
\label{case-studies}
\end{table}
\end{document}
This what I got:
I just want to split the column title in two rows. How do I do that?


