I'm trying to include a longtable in my work.
I'm getting all the borders I want except on the "main body" of the table the right border is missing. (Header is appearing on every page, so that is working well)
\documentclass[a4paper,12pt]{book}
\usepackage{ltablex}
\setlength{\parindent}{0pt} % never indent first line
\begin{document}
{\renewcommand{\arraystretch}{1.2}
\begin{longtable}{| c | m{5cm} | m{9.5cm} | }
\hline
& \textbf{\scshape{What you observed}} & \textbf{\scshape{Suggestions/reasons/examples}} \
\hline
\hline
\endhead
\hline
A & \multicolumn{2}{l | }{\textbf{SC} }\
\hline
& \textbf{1. P} \newline
\null \hspace{3mm} a\newline
\null \hspace{3mm} b\newline
\null \hspace{3mm}c\newline
\null \hspace{3mm}d\
\hline
&\textbf{2. -}\newline
\null \hspace{3mm}a\newline
\null \hspace{3mm}b\newline
\null \hspace{3mm}c\newline
\null \hspace{3mm}d\newline
\null \hspace{3mm}e\
\end{longtable}
\end{document}
How do I need to change my code?




&. – Ulrike Fischer Jan 02 '23 at 08:09