TexLive 버전 2022를 사용하여 IEEEtrans로 라텍스를 작성합니다.
다음과 같이 두 열의 중앙에 표를 두고 싶습니다(결합 셀 T3, 결합 셀 T4, 텍스트 너비)
코드는 다음과 같습니다.
\documentclass[journal]{IEEEtran}
\usepackage{tabularx,caption}
\begin{document}
\begin{table*}[!ht]
\captionof{table}{Comparison}
\label{tab:sequence comparison}
\noindent\begin{tabularx}{\textwidth} { |c | c |c |c |c |}
\hline
\textbf{\makecell{Place/Transition}} & \textbf{\makecell{Explanation}} & \textbf{\makecell{Holding time}} & \textbf{\makecell{X}} & \textbf{\makecell{A}} \\
\hline
$T_1$ & Unloading wafers from LL & $w$ & $xxxxxxxxxxxxx$ & $aaaaaaaaa$ \\
\hline
$T_2$ & Unloading wafers from step 5 & $w$ & $x$ & $a$\\
\hline
$T_3$ & Loading wafers to step 1 & $w$ & $x$ & $a$\\
\hline
$T_4$ & Unloading wafers from step 2 & $w$ & $x$ & $a$\\
\hline
$T_5$ & Loading wafers to step 3 & $w$ & $x$ & $a$\\
\hline
$T_6$ & Unloading wafers from step 4 & $w$ & $x$ & $a$\\
\hline
\end{tabularx}
\end{table*}
\end{document}
결과는 다음과 같습니다(오른쪽에 사용되지 않은 추가 열이 있음).
코드를 수정하려면 무엇이 필요합니까?
감사합니다.
답변1
다음 페이지 상단에만 표를 배치하는 것이 가능한 것 같습니다(페이지 중간에는 불가능). 그리고 환경에는 전체 텍스트 너비를 차지하기 위해 가변 너비를 가진 tabularx
일부 열이 필요합니다 .X
\documentclass{IEEEtran}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{caption}
\usepackage{lipsum}
\begin{document}
\lipsum[1-6]
\begin{table*}[!ht]
\renewcommand{\arraystretch}{1.5}
\captionof{table}{Comparison}
\label{tab:sequence comparison}
\noindent\begin{tabularx}{\textwidth} { | c | >{\centering\arraybackslash} X | c | >{\centering\arraybackslash} X | >{\centering\arraybackslash} X |}
\hline
\textbf{Place/Transition} & \textbf{Explanation} & \textbf{Holding time} & \textbf{X} & \textbf{A} \\
\hline
$T_1$ & Unloading wafers from LL & $w$ & $xxxxxxxxxxxxx$ & $aaaaaaaaa$ \\
\hline
$T_2$ & Unloading wafers from step 5 & $w$ & $x$ & $a$\\
\hline
\multirow{2}{*}{$T_3$} & Loading wafers to step 1 & $w$ & $x$ & $a$\\
\cline{2-5}
& Unloading wafers from step 2 & $w$ & $x$ & $a$\\
\hline
\multirow{2}{*}{$T_4$} & Loading wafers to step 3 & $w$ & $x$ & $a$\\
\cline{2-5}
& Unloading wafers from step 4 & $w$ & $x$ & $a$\\
\hline
\end{tabularx}
\end{table*}
\lipsum[1-13]
\end{document}