The vertical separator line specified by | doesn't seem to be end-to-end with respect to horizontal lines. An example is provided below. Where does the problem come from?
thanks
PS. the first column on right is extra but doesn't disturb the demonstration.
Code: Select all
\documentclass[12pt,twoside,a4paper]{report}
\usepackage{graphicx}
\usepackage{booktabs,tabularx}
\begin{document}
\begin{table}[h]
{\tiny
\begin{tabularx}{\linewidth}{|c|c|c|}
\toprule
\addlinespace
h16&h2&h3\\\addlinespace\hline\hline
\addlinespace
r1&2c&1c\\\addlinespace\hline
r2&c11&c22\\
\bottomrule
\end{tabularx}
}
\end{table}
\end{document}