I had the need to calculate the adjacency matrix $L$ of the line graph of a certain planar $k$-regular graphs $G(n,e)$ ( $n$ vertices and $e=\frac k2 n$ edges) given its adjacency matrix $A_G$. Here I went:
Let $N_k$ an "outer-diagonal" indexing matrix, e.g. $N_4=\pmatrix{0&1&2&3\\1&0&4&5\\2&4&0&6\\3&5&6&0}$.
Calculate the Hadamard Dot product $B=N_k\odot A$. I found that $$L_{B(a,b),B(c,d)}=(1-\delta_{ac}\delta_{bd})(\delta_{ac}+\delta_{bd})A(a,b)A(c,d) \tag{$*$}$$ works fine for the examples I checked. We get a matrix in $\mathbb Z_2^{n(n-1) \times n(n-1)}$, but since the line graph operator acts effectively as $L(A): \mathbb Z_2^{n\times n}\mapsto \mathbb Z_2^{e\times e} $, you can remove plenty of rows/columns.
Is $(\text{$*$})$ correct and is there also straight representation of the line graph operator in terms of matrix mapping $A$ to $L(A)$? Maybe superoperators can help...
EDIT: The $A(a,b)A(c,d)$ product points towards something like $A\otimes A$ maybe suited with an according $\Delta$ matrix that is Hadamard-$\odot $-multiplied: $$ L\overset{?}{=}\Delta\circ (A\otimes A) $$ A construction without Hadamard-$\odot $-product would also be nice$\dots$