Skip to content

Instantly share code, notes, and snippets.

View fpoto's full-sized avatar

Francesco Potortì fpoto

View GitHub Profile
@riccardomurri
riccardomurri / LaTeX-transpose-table.el
Created August 19, 2011 18:44
Emacs command to transpose the contents of a (La)TeX table.
(defun LaTeX-transpose-table (start end)
(interactive "r")
(goto-char start)
(let ((last start)
(rows (list ()))
(nrows 0)
(ncols 0)
(maxcols 0))
(while (re-search-forward "&\\|\\\\\\\\" end t)
(setf (car rows)