I am trying to reproduce the result of this answer:
https://tex.stackexchange.com/a/167022/25764
However, I do not get the same results when I type the same.
This is the code:
\documentclass{article}
\usepackage{array}
\newcolumntype{C}[1]{>{\centering\arraybackslash}m{#1}}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}m{#1}}
\newcolumntype{N}{@{}m{0pt}@{}}
\begin{document}
\begin{table}[htbp]
\centering
\begin{tabular}{|C{3cm}|L{4cm}|C{3.5cm}|N}
\hline
\textbf{\textit{fine/coarse}} & \textbf{Property} & \textbf{\textit{lamellar/equiaxed}} &\[20pt]
\hline
x/x & Elastic Modulus & x/+ &\[20pt]
\hline
+/- & Strength & -/+ &\[20pt]
\hline
+/- & Ductility & -/+ &\[20pt]
\hline
+/- & Fatigue crack initiation & -/+ &\[20pt]
\hline
-/+ & Fatigur crack propagation & +/- &\[20pt]
\hline
+/- & Oxidation Behaviour & +/- &\[20pt]
\hline
\end{tabular}
\label{table:eomsomeprops}
\end{table}
\end{document}
This is what I get:
Note that, the cell heights are proper, but they are not centered vertically. I am using miktex on windows.
What can I do to fix the problem?




