
이 테이블을 어떻게 만듭니까? 나를 던지는 것은 미묘한 들여 쓰기입니다. 나는 간단한 것을 놓치고 있다는 것을 알고 있습니다.
답변1
환경 을 사용할 수 있습니다 tabbing
. 예를 들어:
\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}
\=
탭 정지 표시\>
다음 탭 정지로 이동\\
줄을 끝내다\kill
줄을 끝내지만 인쇄하지는 않습니다. 탭 정지 모델 줄에 유용합니다.
답변2
테이블 내에서 들여쓰기를 위해 정의된 공간을 사용할 수 있습니다. 아래 예를 고려하십시오.
\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}
이 코드는 다음을 렌더링합니다.
편집하다:명확성을 위해 코드 및 출력 이미지를 편집했습니다.