I'm trying to reproduce this table :
As soon as I try to remove the borders/backgrounds of these cells, they become flat black areas (or inherit unwanted lines/backgrounds) whereas I want them to be totally “transparent”.
What I did :
\documentclass{article} \usepackage[T1]{fontenc} \usepackage{tabularray} \UseTblrLibrary{booktabs} % si besoin \begin{document} \begin{center} \begin{tblr}{ colspec = { Q[wd=3.3cm,l] Q[wd=2.4cm,c]Q[wd=2.4cm,c] Q[wd=2.4cm,c]Q[wd=2.4cm,c] Q[wd=2.4cm,c]Q[wd=2.4cm,c] Q[wd=2.4cm,c]Q[wd=2.4cm,c] }, hlines, vlines, row{1,2} = {font=\bfseries, c}, row{3} = {c}, % Masquage total (pas de bordure ni fond) de la ligne TOTAL sauf 5,6,7 cell{6}{1,2,3,4,8,9} = { bg=none, toprule=0pt, bottomrule=0pt, leftrule=0pt, rightrule=0pt, abovesep=0pt, belowsep=0pt, leftsep=0pt, rightsep=0pt, font=\normalsize, }, } \SetCell[c=9]{c}{Annexe des créances clients à compléter} \\ \SetCell[r=2]{c}{Clients} & \SetCell[c=2]{c}{Solde au 31/12/2024} & & \SetCell[c=2]{c}{Provisions} & & \SetCell[c=2]{c}{Réajustement} & & \SetCell[c=2]{c}{Pertes irrécouvrables} & \\ & TTC & HT & 2024 & 2023 & (+)DOT & (-)REP & HT & TVA \\ GHAZAL & & & & - & & & & \\ KAMAL & & & & - & & & & \\ % Ligne TOTAL : seules les colonnes 5, 6 et 7 sont visibles & & & & \textbf{TOTAL} & & & & \\ \end{tblr} \end{center} \end{document} The result :



