Hello,
I have a tabular in which only vertical lines are visible.
It basically looks like this:
Code: Select all
\begin{tabular}{l}
Some text \\
\hline
\end{tabular}
What I would like to do is align vertically the text with the hline below. What I could do is deleting the extra space between the invisible vertical line of the tabular and the text, using "@{}" like so:
Code: Select all
\begin{tabular}{@{}l}
Some text \\
\hline
\end{tabular}
Unfortunately, this does not exactly do what I want. I would like the first letter of the text (here 'S') to be perfectly aligned with the beginning of the hline.
Does someone have a solution for this?