ロングテーブルで画像の枠線が表示されない

ロングテーブルで画像の枠線が表示されない

ここに画像の説明を入力してください

\begin{longtable}{|lllllllll|} 
        %   [ht] 
        \caption{Create } \\ 
        %\label{step 3}
        \hline
        \multicolumn{3}{|l|}{\textbf{Prefix}} & \multicolumn{2}{l|}{\textbf{Class label}} & \multicolumn{2}{l|}{\textbf{Intersection}}\\
        \hline
        \endfirsthead
        \multicolumn{6}{c}%
        {\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
        \hline
        \multicolumn{3}{|l|}{\textbf{Prefix}} & \multicolumn{2}{l|}{\textbf{Class label}} & \multicolumn{2}{l|}{\textbf{Intersection}}\\
        \hline
        \endhead
        \hline \multicolumn{6}{r}{\textit{Continued on next page}} \\
        \endfoot
        \hline
        \endlastfoot
        %   \begin{tabular} {lllllll}[ht]\\ 


        %   \hline \multicolumn{3}{|l|}{\textbf{Prefix}} & \multicolumn{2}{l|}{\textbf{Class label}} & \multicolumn{2}{l|}{\textbf{Intersection}} \\ \hline 

        \multicolumn{7}{|l|}{\textbf{Begin}}\\ \hline

        \multicolumn{7}{|l|}{\textbf{Initial}}\\ \hline

        \parbox[|c|]{2cm}{
    \includegraphics[scale=0.40,height=8 cm,width=10 cm]{initialfgist.jpg}} \\ \hline
        \end{longtable}

画像の右側と上部の境界線が表示されません。何が間違っているのか教えてください。

答え1

\parbox[|c|]{2cm}{
    \includegraphics[scale=0.40,height=8 cm,width=10 cm]

これは、幅 2cm のボックスに幅 10cm の画像を指定するため、オーバープリントが予想されます。少なくとも、オーバープリントが予想されたが構文エラーである場合 (LaTeX はこれをそのように報告しませんが)、オプションの引数は、、または のみであること\parbox{2cm}\parbox[|c|]指定ctますb

指定したいだけです1つscalewidthおよび、heightおよびを\parboxまったく望んでいません。

答え2

このパッケージはそのために用意されています。文字(または を使用する場合)cellspaceで始まる指定子を使用して、列内のセルの上部と下部の最小の垂直方向のスペースを定義します。また、コードを簡素化し、不具合のある部分を修正しました。SCsiunitx

\documentclass{article}
\usepackage[showframe]{geometry}
\usepackage{graphicx}
\usepackage{array, longtable}
\usepackage{cellspace}
\setlength\cellspacetoplimit{3pt}
\setlength\cellspacebottomlimit{3pt}


\begin{document}

\begin{longtable}{|*{7}{Sl}|}
    \caption{Create } \\
    %\label{step 3}
    \hline
    \multicolumn{3}{|Sl|}{\textbf{Prefix}} & \multicolumn{2}{l|}{\textbf{Class label}} & \multicolumn{2}{l|}{\textbf{Intersection}}\\
    \hline
    \endfirsthead
    \multicolumn{6}{Sc}%
    {\tablename\ \thetable\ -- \textit{Continued from previous page}} \\
    \hline
    \multicolumn{3}{|Sl|}{\textbf{Prefix}} & \multicolumn{2}{l|}{\textbf{Class label}} & \multicolumn{2}{l|}{\textbf{Intersection}}\\
    \hline
    \endhead
    \hline \multicolumn{7}{Sr}{\textit{Continued on next page}} \\
    \endfoot
    \hline
    \multicolumn{7}{|Sl|}{\textbf{Begin}}\\ 
    \hline
    \multicolumn{7}{|Sl|}{\textbf{Initial}}\\ 
    \hline
    \includegraphics[scale=0.40]{initialfgist.jpg} & & & & & & \\
    \hline
    \end{longtable}

\end{document} 

ここに画像の説明を入力してください

関連情報