I want to create just a table with three column, the first containing a short code, the second and the third a long text.
So I tried with that (and a million variations):
Code: Select all
\begin{table}
\caption{Research Questions}
\centering
\begin{tabular}{|c|lp{15em}|lp{15em}|}
\hline
& \bf{Question} & \bf{Motivation} \\ [0.5ex]
\hline \hline
\bf{RQ1} & Which journals include papers on web applications modeling? & Support web applications modeling researchers with a list of journals with potentially relevant papers.\\
\hline
\end{tabular}
\label{table:rqs}
\end{table}
The strange behaviour is this one: when I change the width supposed to affect the second column the third one is instead changed. In example this code:
Code: Select all
{|c|lp{5em}|lp{15em}|}
I really do not get it.
Any help/hint?
Thank you,
Federico