생성된 Latex PDF에서 테이블이 불완전한 것으로 나타납니다.

생성된 Latex PDF에서 테이블이 불완전한 것으로 나타납니다.

내 코드는 아래와 같습니다

\begin{table}[H]
\begin{tabular}{|c|c|c|c|}
\hline 
\rule[-1ex]{0pt}{2.5ex} JP1/JP14 Pins 1 – 8 & Description & JP1/JP14 Pins 9 -16 & Description \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin1 & Ground & Pin9 & D2 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin2 & VCC (+5) & Pin10 & D3 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin3 & Contrast & Pin11 & D4 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin4 & Data/Command (R/S) & Pin12 & D5 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin5 & Read/Write (W) & Pin13 & D6 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin6 & Enable (E1) & Pin14 & D7 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin7 & D0  & Pin15 & VCC (LEDSV+) \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin8 & D1 & Pin16 & Ground \\ 
\hline 
\end{tabular}
\caption{Pin configuration of LCD}
\end{table} 

답변1

줄이 적고 인쇄상의 수정이 이루어진 더 작은 버전:

\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\begin{document}
  \begin{table}
    \centering
    \begin{tabular}{>{Pin }l<{:}@{ }l>{Pin }l<{:}@{ }l}
      \toprule
      \multicolumn{2}{l}{JP1/JP14, Pins 1--8} &
      \multicolumn{2}{l}{JP1/JP14, Pins 9--16} \\
      \midrule
      1 & Ground             &  9 & D2 \\
      2 & VCC (+5)           & 10 & D3 \\
      3 & Contrast           & 11 & D4 \\
      4 & Data/Command (R/S) & 12 & D5 \\
      5 & Read/Write (W)     & 13 & D6 \\
      6 & Enable (E1)        & 14 & D7 \\
      7 & D0                 & 15 & VCC (LEDSV+) \\
      8 & D1                 & 16 & Ground \\
      \bottomrule
    \end{tabular}
    \caption{Pin configuration of LCD}
  \end{table}
\end{document}

결과

위의 두 개의 테이블과 캡션이 있는 변형:

\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\usepackage{caption}
\begin{document}
  \begin{table}
    \centering
    \caption{Pin configuration of LCD}
    \begin{tabular}{>{Pin }l<{:}@{ }l}
      \toprule
      \multicolumn{2}{l}{JP1/JP14, Pins 1--8} \\
      \midrule
      1 & Ground \\
      2 & VCC (+5) \\
      3 & Contrast \\
      4 & Data/Command (R/S) \\
      5 & Read/Write (W) \\
      6 & Enable (E1) \\
      7 & D0 \\
      8 & D1 \\
      \bottomrule
    \end{tabular}%
    \quad
    \begin{tabular}{>{Pin }l<{:}@{ }l}
      \toprule
      \multicolumn{2}{l}{JP1/JP14, Pins 9--16} \\
      \midrule
      9 & D2 \\
      10 & D3 \\
      11 & D4 \\
      12 & D5 \\
      13 & D6 \\
      14 & D7 \\
      15 & VCC (LEDSV+) \\
      16 & Ground \\
      \bottomrule
    \end{tabular}
  \end{table}
\end{document}

두 개의 테이블을 사용한 결과

답변2

"불완전"이 무엇을 의미하는지는 명확하지 않습니다. 테이블이 수평 치수를 확장한다고 가정하면 열을 조여 이를 수정할 수 있습니다( [H]추가 패키지가 필요하므로 옵션이 제거됨).

\documentclass{article}

\begin{document}

\begin{table}
\begin{tabular}{|c|c|c|c|}
\hline 
%\rule[-1ex]{0pt}{2.5ex} JP1/JP14 Pins 1 – 8 & Description & JP1/JP14 Pins 9 -16 & Description \\ 
\rule[-1ex]{0pt}{2.5ex}\begin{tabular}{c} JP1/JP14 \\Pins 1 – 8\end{tabular} & Description & \begin{tabular}{c}JP1/JP14\\ Pins 9 -16 \end{tabular}& Description \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin1 & Ground & Pin9 & D2 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin2 & VCC (+5) & Pin10 & D3 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin3 & Contrast & Pin11 & D4 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin4 & Data/Command (R/S) & Pin12 & D5 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin5 & Read/Write (W) & Pin13 & D6 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin6 & Enable (E1) & Pin14 & D7 \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin7 & D0  & Pin15 & VCC (LEDSV+) \\ 
\hline 
\rule[-1ex]{0pt}{2.5ex} Pin8 & D1 & Pin16 & Ground \\ 
\hline 
\end{tabular}
\caption{Pin configuration of LCD}
\end{table} 

\end{document}

관련 정보