Vertical line left out in tabular

5,012

The reason is as simple as the notation of the column is overwritten by \multicolumn{5}{c}. Try instead: \multicolumn{5}{c|}{Bits per channel}.

Share:
5,012

Related videos on Youtube

Eric
Author by

Eric

Updated on March 11, 2020

Comments

  • Eric
    Eric over 3 years

    The code

    \documentclass[a4paper]{article}
    \usepackage{multirow}
    \begin{document}
    
    \begin{tabular}{|l|l|l|l|l|l|l|}
      \hline
      \multirow{2}{*}{Color Type} & \multirow{2}{*}{Channels} & \multicolumn{5}{c}{Bits per
        channel} \\    
      \cline{3-7}
      & & 1 & 2 & 4 & 8 & 16 \\    
      \hline
    \end{tabular}
    
    \end{document}
    

    Results in the table

    enter image description here

    How may I fix this code so that a vertical line is also added after "Bits per channel"?