Skip to content

Instantly share code, notes, and snippets.

@tequilasunset
Created January 19, 2011 04:01
Show Gist options
  • Save tequilasunset/785671 to your computer and use it in GitHub Desktop.
Save tequilasunset/785671 to your computer and use it in GitHub Desktop.
(defface latex-hl-line
'((t (:background "DeepSkyBlue4")))
"Face for the lines start with \\documentclass[foo]{bar},
\\begin{document} or \\end{document}."
:group (if (featurep 'font-latex)
'font-latex-highlighting-faces
'font-lock-faces))
(font-lock-add-keywords
'latex-mode
`((,(concat "^\\s-*\\\\\\("
"documentclass\\(\\[[^]% \t\n]*\\]\\)?{[-[:alnum:]_]+"
"\\|"
"\\(begin\\|end\\){document"
"\\)}.*\n?")
(0 'latex-hl-line append))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment