I have a little question concerning the layout of tables. Does LaTeX provide a way to create tables like shown in the attached picture? I am referring to the two axes of the table that are labeled "N" and "n". Is there a way to have labeled axes in a table (with a little arrow at the end) instead of just having normal vertical and horizontal lines? Can I use the tabular environment or do I have to use something fancier?
Here is how my table would look without labeled axes:
Code: Select all
\documentclass{scrartcl}
\begin{document}
\begin{tabular}{l|cccc}
& 0 & 1 & 2 & 3 \\ \hline
$k_1 = 3$ & O & - & - & I \\
$k_2 = 4$ & O & - & - & O \\
\end{tabular}
\end{document}
I would be grateful for any help (and excuse my English, it's not my native tongue)!