테이블을 전체로 표시(페이지 끝까지 잘리지 않음)

테이블을 전체로 표시(페이지 끝까지 잘리지 않음)

TeX Live 버전 2022의 뒷면에 다음 코드를 사용하여 테이블을 만들었습니다.

\documentclass[journal]{IEEEtran}
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage[commentColor=black, indLines=false]{algpseudocodex}
\begin{document}

\begin{minipage}{\linewidth}
\renewcommand{\arraystretch}{1.25}
\captionof{table}{Transitions and Places of TEG in Fig.\ref{fig:TEG_5_Steps}}
\label{tab:table_TEG} 
\noindent\begin{tabularx}{\linewidth} { |
  l |
  >{\raggedright\arraybackslash}X |
  c |
}
  \hline
  \textbf{Place/Transition} & \textbf{Explanation} & \textbf{Time}  \\
  \hline
  $T_1$ and $T_{2(n+1)}$  & Robot operation which relates to loadlocks. Transition $T_1$ indicates that wafer unloading from the loadlocks and $T_{2(n+1)}$ means that the robot loads the wafer to the loadlocks. & $w$ \\
  \hline
  $T_2,T_3,\ldots,T_{2n}, T_{2n+1}$ & Robot performs unloading or loading operation between the steps. & $w$ \\
  \hline
  $P_k^R$ & Place which indicates the robot movement from a chamber to another one or from the loadlocks to the chambers or vice versa. & $v$
  \\
  \hline
  $P_i^{\prime}$ & The processing or cleaning places which receive the tokens from the clockwise arcs. & $p_i$ or $c_i$
  \\
  \hline
  $P_i^{\prime\prime}$  & The processing or cleaning places which receive the tokens from the counterclockwise arcs. & $p_i$ or $c_i$
  \\
  \hline
\end{tabularx}
\end{minipage}
\end{document}

그러나 다음 스크린샷에 표시된 것처럼 페이지 끝 부분에서 테이블이 잘렸습니다. 결과

이렇게 말했지만, 테이블을 완전히 표시하려면 어떤 코드를 추가해야 하는지 아는 사람이 있습니까?

감사합니다.

관련 정보