as I was reading different question This one I've found code of array enviroment which preamble is quite unknown to be... I see what it does but I would like to understand it to be able use that technique for different situations... I understand what "c" "l" "r" mean but not the rest:
\[
\begin{array}{@{}r@{}l@{\quad}@{}r@{}l@{}}
a&{}=bbb & c&{}=\dfrac{x}{y} \\
aa&{}=bbbb & cc&{}=\dfrac{x}{y}
\end{array}
\]
I was trying to apply it in such a form that I have just one centered column and then right and left which are aligned according to = inside so I wrote
\begin{array}{c@{\quad}@{}r@{}l@{}} and something inside environment according to example above but it gave me an error in a form that there are unknown characters in preamble of array... so obviously I do not understand those "@{}"resp "@{\quad}" parts and I wasn't able to find satisfactory answer on the web...
\dfracnot being defined - you need to loadamsmathfor that function. The@{...}constructions kill the intercolumn space and replace it with whatever is between the curly braces. – Andrew Swann Jan 17 '16 at 19:57