Advertisement
mayankjoin3

table color cell background latex

Nov 22nd, 2024
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.58 KB | None | 0 0
  1. \documentclass{article}
  2. \usepackage[table]{xcolor} % For coloring table cells
  3.  
  4. \begin{document}
  5.  
  6. \begin{table}[h!]
  7.    \centering
  8.    \begin{tabular}{|c|c|c|}
  9.        \hline
  10.        \rowcolor{lightgray} % Entire row color
  11.         Header 1 & Header 2 & Header 3 \\
  12.         \hline
  13.         Cell 1 & \cellcolor{yellow} Cell 2 & Cell 3 \\ % Single cell color
  14.         \hline
  15.         \cellcolor{red!50} Cell 4 & Cell 5 & \cellcolor{blue!30} Cell 6 \\ % Transparent colors
  16.         \hline
  17.     \end{tabular}
  18.    \caption{A table with colored cells.}
  19. \end{table}
  20.  
  21. \end{document}
  22.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement