完整顯示表格(頁末未剪下)

完整顯示表格(頁末未剪下)

我使用 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}

但是,表格在頁面末尾被剪切,如以下螢幕截圖所示。 結果

話雖如此,有誰知道我應該添加什麼程式碼才能確保表格可以完整顯示?

謝謝。

相關內容