من همون کدی که در لینک داده شده قرار داشت را به شکل زیر تغییر دادم:
\documentclass{article}
\usepackage{tabularx}
\begin{document}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\newcolumntype{R}{>{\raggedleft\arraybackslash}X}
\begin{tabularx}{\textwidth}{ |C|R|X|C| }
\hline
1 & 2 & 3 & 4 \\
\hline
5 & 6 & 7 & 8 \\
\hline
\end{tabularx}
\end{document}