I saw people use @{} in the array's environment at Align a linear program.
I can understand that l means flush the array cell to left, but cannot understand what the purpose of @{} or find it in google. :-(
Could anyone help provide a link or some advice of where I can find the meaning of @{}?
Below is the array where they use the @{}.
\documentclass[a4paper]{article}
\usepackage[paper size={10cm,5cm}]{geometry}
\pagestyle{empty}
\usepackage{amsmath,amssymb}
\begin{document}
\begin{equation*}
\begin{array}{ll@{}ll}
\text{minimize} & \displaystyle\sum\limits_{j=1}^{m} w_{j}&x_{j} &\\
\text{subject to}& \displaystyle\sum\limits_{j:e_{i} \in S_{j}} &x_{j} \geq 1, &i=1 ,..., n\\
& &x_{j} \in \{0,1\}, &j=1 ,..., m
\end{array}
\end{equation*}
\end{document}


@{hello}– David Carlisle Oct 16 '14 at 15:00