테이블 수학 모드에서 어떻게 입력하나요?

테이블 수학 모드에서 어떻게 입력하나요?
\hline
    a & b & c & a/b & sqrt a/b & N1/N2 \bigstrut\\

답변1

예를 들어 환경 array(수학 모드)은 다음과 같습니다.

\documentclass{article}
\begin{document}
  $\begin{array}{cccccc}
  a & b & c & a/b & \sqrt{a/b} & N_1/N_2
  \end{array}$
\end{document}

환경 배열의 결과

환경의 명시적 수학 모드 설정 tabular:

\documentclass{article}
\begin{document}    
  \begin{tabular}{cccccc}
  $a$ & $b$ & $c$ & $a/b$ & $\sqrt{a/b}$ & $N_1/N_2$
  \end{tabular}
\end{document}

표 형식의 결과

셀이 행렬에 속하는 경우:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
  $\begin{matrix}
  a & b & c & a/b & \sqrt{a/b} & N_1/N_2
  \end{matrix}$
\end{document}

환경 매트릭스의 결과

답변2

테이블을 작성할 때 모든 항목은 일반 텍스트이므로 모든 항목에 일반 텍스트를 작성할 수 있습니다.

\begin{tabular}{ccc}
I'm totally text    &     Me To    &    I'm Also text\\
This means that     &     You can  &    Easily just put\\
Math in each entry!  &    $\alpha$ &    $ \frac{cool math}{here}$
\end{tabular}

생산물:

여기에 이미지 설명을 입력하세요

코드의 마지막 줄은 생각보다 틀렸기 때문에 제거했습니다.

관련 정보