¿Cómo puedo hacer sangrías y luego alinearlas en diferentes niveles, en una tabla?

¿Cómo puedo hacer sangrías y luego alinearlas en diferentes niveles, en una tabla?

¿Cómo creo esta tabla? Son las sutiles hendiduras las que me desconciertan. Sé que me falta algo simple.

ejemplo de tabla

Respuesta1

Podrías usar un tabbingentorno. Por ejemplo:

\documentclass{article}
\begin{document}
\begin{tabbing}
\quad\=\quad\=One $= 0$ the other $\neq 0$\quad
  \=Whole line of equilibrium points\kill
\rule{.8\linewidth}{1pt}\\
Eigenvalues\>\>\>Stability\\[-1.2ex]
\rule{.8\linewidth}{1pt}\\
REAL\\
\>Unequal\\
\>\>Both $>0$\>Unstable node (source, repeller)\\
\>\>Both $<0$\>Stable node (sink, attractor)\\
\>\>Different signs\>Saddle point\\
\>\>One $= 0$ the other $\neq 0$\>Whole line of equilibrium points\\
\>Equal\\
\>\>Both $>0$\>Unstable node (source, repeller)\\
\>\>Both $<0$\>Stable node (sink, attractor)\\
\>\>Both $=0$\>Algebraic unstable\\
COMPLEX\\
\end{tabbing}
\end{document}

ejemplo de tabulación

  • \=marca una tabulación
  • \>ir a la siguiente tabulación
  • \\termina una línea
  • \killfinaliza una línea pero no la imprime, útil para una línea modelo de tabulación

Respuesta2

Podría utilizar algún espacio definido para sangrar dentro de la tabla. Considere el siguiente ejemplo:

\documentclass{article}

\usepackage{booktabs}

\begin{document}

\begin{tabular}{@{} l l @{}}
  \toprule
  Eigenvalues & Stability\\
  \midrule
  REAL\\
  \hspace{0.25cm} Unequal\\
  \hspace{0.5cm} Both $>0$ & Unstable node (source, repeller)\\
  \hspace{0.5cm} Both $<0$ & Stable node (sink, attractor)\\
  \hspace{0.5cm} Different signs & Saddle point\\
  \hspace{0.5cm} $= 0$ the other $\neq 0$ & Whole line of equilibrium points\\
  ...\\
  \bottomrule
\end{tabular}

\end{document}

Este código representa lo siguiente:

Implementación de la tabla propuesta por el OP.

Editar:Código editado e imagen de salida para mayor claridad.

información relacionada