From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Oliver Scholz Newsgroups: gmane.emacs.help Subject: Re: outline -> latex Date: Sun, 19 Oct 2003 16:04:03 +0200 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1066573195 23188 80.91.224.253 (19 Oct 2003 14:19:55 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 19 Oct 2003 14:19:55 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Oct 19 16:19:54 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1ABEPR-0004LV-00 for ; Sun, 19 Oct 2003 16:19:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1ABELo-0001Tk-Pa for geh-help-gnu-emacs@m.gmane.org; Sun, 19 Oct 2003 10:16:08 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!news-out.cwix.com!newsfeed.cwix.com!newsfeed.icl.net!newsfeed.fjserv.net!proxad.net!newsfeed.stueberl.de!fu-berlin.de!uni-berlin.de!dialin-145-254-194-113.arcor-ip.NET!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 43 Original-NNTP-Posting-Host: dialin-145-254-194-113.arcor-ip.net (145.254.194.113) Original-X-Trace: news.uni-berlin.de 1066572703 25983340 145.254.194.113 (16 [87814]) X-Attribution: os X-Face: "HgH2sgK|bfH$; PiOJI6|qUCf.ve<51_Od(%ynHr?=>znn#~#oS>",F%B8&\vus),2AsPYb -n>PgddtGEn}s7kH?7kH{P_~vu?]OvVN^qD(L)>G^gDCl(U9n{:d>'DkilN!_K"eNzjrtI4Ya6; Td% IZGMbJ{lawG+'J>QXPZD&TwWU@^~A}f^zAb[Ru;CT(UA]c& User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3.50 (windows-nt) Cancel-Lock: sha1:llGrqDtktAm/PyPGpFgcSKMrbhs= Original-Xref: shelby.stanford.edu gnu.emacs.help:117411 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:13342 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:13342 ray@nabuli.de writes: [...] > just a question here: Isn't there an easy way to convert outline into > latex? I am not realy sure, but I thought there was something. Does > somebody have a clue? I am not aware of any package doing this, but unless I am misunderstanding you, I dare say that this task is rather trivial, since it is just about regexp matching and replacing. Hmm, maybe: (defconst ray-outline-to-latex-alist '((1 "\\section{%s}") (2 "\\subsection{%s}") (3 "\\subsubsection{%s}"))) (defun ray-outline-to-latex () (interactive) (save-excursion (goto-char (point-min)) (ray-convert-heading-maybe) (while (= 0 (forward-line 1)) (ray-convert-heading-maybe)))) (defun ray-convert-heading-maybe () (when (looking-at outline-regexp) (let ((format (cadr (assq (funcall outline-level) ray-outline-to-latex-alist))) str) (when format (goto-char (match-end 0)) (skip-syntax-forward "-") (setq str (buffer-substring (point) (line-end-position))) (delete-region (line-beginning-position) (line-end-position)) (insert (format format str)))))) Oliver -- 28 Vendémiaire an 212 de la Révolution Liberté, Egalité, Fraternité!