add tag
Laurenso
I have this table using `tabularray` 

```
\documentclass[12pt,a4paper]{article}
\usepackage{hyperref}
\usepackage{fouriernc}
\usepackage[left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry}
\usepackage{mathtools}
\usepackage[most]{tcolorbox}
\usepackage{systeme}
\usepackage{mhchem}
\usepackage{float}
\usepackage{enumitem}
\usepackage{tasks}
\usepackage{tabularray}
\UseTblrLibrary{booktabs,
	counter,
	diagbox,
	siunitx,
	varwidth}
\usepackage{ninecolors}
\newcounter{mycnta}
\begin{document}
\begin{table}[H]
	\centering
	\begin{tblr}{colspec = {@{}cll@{}},
			hlines, vlines,cells={mode=dmath},
			row{1}={mode=text,c,blue9}
		}
		Produce &  supply function  &  demand function  \\
		A & Q_{S_A}=4 x-y-z-5 & Q_{D_A}=-2 x+y+z+9 \\
		B & Q_{S_B}=-x+4 y-z-5 & Q_{D_B}=x-2 y+z+3 \\
		C & Q_{S_C}=-x-y+4 z-1 & Q_{D_C}=x+y-2 z-1 \\
	\end{tblr}
\end{table}
\end{document}

```

![image.png](/image?hash=bc476c5c338c4ba3aaf255e4715ec44cebeb251397d2cf9e50412efe2a491518)

How can I repair it?
Top Answer
samcarter
With `@{}` you remove the padding on one side of the cell. This will a) make the centred text look asymmetric because the padding at one side is missing and b) makes the content of the cell (like `9`) very close to the cell border. Both problems can be solved by not using `@{}`:

```
\documentclass[12pt,a4paper]{article}
\usepackage{hyperref}
\usepackage{fouriernc}
\usepackage[left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry}
\usepackage{mathtools}
\usepackage[most]{tcolorbox}
\usepackage{systeme}
\usepackage{mhchem}
\usepackage{float}
\usepackage{enumitem}
\usepackage{tasks}
\usepackage{tabularray}
\UseTblrLibrary{booktabs,
	counter,
	diagbox,
	siunitx,
	varwidth}
\usepackage{ninecolors}
\newcounter{mycnta}
\begin{document}
\begin{table}[H]
	\centering
	\begin{tblr}{colspec = {cll},
			hlines, vlines,cells={mode=dmath},
			row{1}={mode=text,c,blue9}
		}
		Produce &  supply function  &  demand function  \\
		A & Q_{S_A}=4 x-y-z-5 & Q_{D_A}=-2 x+y+z+9 \\
		B & Q_{S_B}=-x+4 y-z-5 & Q_{D_B}=x-2 y+z+3 \\
		C & Q_{S_C}=-x-y+4 z-1 & Q_{D_C}=x+y-2 z-1 \\
	\end{tblr}
\end{table}
\end{document}
```

![Screenshot 2023-09-23 at 13.44.19.png](/image?hash=b81bb4cdb71b4369e0e4b7190ac62bddc34e47863d0a729fbaedfda3765e6c6b)

Enter question or answer id or url (and optionally further answer ids/urls from the same question) from

Separate each id/url with a space. No need to list your own answers; they will be imported automatically.