突っ走り書き

見せるほどのものでは..

2014-10-31から1日間の記事一覧

TeX で章を移動するための emacs lisp

\chapter,\section,\subsection,\subsubsection を検索して移動するためのコマンドを作った. (defun next-setion () "Move to next section." (interactive) (end-of-line) (re-search-forward "^[ \t]*\\\\\\(sub\\)?\\(sub\\)?section\\*?{.*}")) (def…