I need Dirac Matrix in my work. They consists of PauliMatrix and ZeroMatrix, which is:
ZeroMatrix:=IdentityMatrix[2]-IdentityMatrix[2]
I define Dirac Matrix as:
gamma = ({{PauliMatrix[0], ZeroMatrix}, {ZeroMatrix, -PauliMatrix[0]}}) // MatrixForm;
I got such result:

But I need something else: I need a monolithic table, does not consist of individual blocks. How can I get it? (I need something universal, because I need to use it to construct 4 gamma matrices and spinors).
Array[0 &, {2, 2}]would be better thanIdentityMatrix - IdentityMatrix:) – Öskå Aug 13 '14 at 19:00