yatex

annotate yatex23.el @ 358:2c2b70f41fb3

New variable YaTeX-dnd-auto-figure-package for full-auto usepackage
author HIROSE Yuuji <yuuji@gentei.org>
date Mon, 22 Dec 2014 11:27:28 +0900
parents 4ea63809a0ca
children 41a05a44826a
rev   line source
yuuji@330 1 ;;; yatex23.el --- YaTeX facilities for Emacs 23 or later -*- coding: sjis -*-
yuuji@330 2 ;;; (c)2014 by HIROSE Yuuji.[yuuji@yatex.org]
yuuji@358 3 ;;; Last modified Mon Dec 22 11:26:19 2014 on firestorm
yuuji@358 4 ;;; $Id$
yuuji@330 5
yuuji@330 6 ;;; Code:
yuuji@343 7 (defvar YaTeX-dnd-auto-figure "figure"
yuuji@343 8 "*If set, include dropped \\includegraphcs{} into that environment.
yuuji@343 9 The value should be string. Set this `nil' to disable enclosing.")
yuuji@358 10 (defvar YaTeX-dnd-auto-figure-package (cons "graphicx" "dvipdfmx")
yuuji@358 11 "*Default LaTeX package and its option for \\includegraphics")
yuuji@358 12
yuuji@330 13 (defun YaTeX-dnd-handler (uri action)
yuuji@330 14 "DnD handler for yatex-mode
yuuji@330 15 Convert local image URI to \\includegraphcis{} and
yuuji@330 16 .tex file names to \\include{}."
yuuji@343 17 (let*((file (dnd-get-local-file-name uri))
yuuji@343 18 (path (save-excursion
yuuji@343 19 (YaTeX-visit-main t)
yuuji@343 20 (file-relative-name file)))
yuuji@343 21 (insert-file-directory nil)
yuuji@343 22 (case-fold-search t)
yuuji@343 23 (b nil) p1 p2 (cc (current-column)) envstart)
yuuji@343 24 (cond
yuuji@343 25 ((memq action '(copy link move private))
yuuji@330 26 (cond
yuuji@343 27 ((string-match "\\.\\(jpe?g\\|png\\|gif\\|bmp\\|tiff?\\|e?ps\\|pdf\\)$" path)
yuuji@343 28 (if (and (stringp YaTeX-dnd-auto-figure)
yuuji@343 29 (not (YaTeX-in-environment-p YaTeX-dnd-auto-figure))
yuuji@343 30 (not (string-match "figure"
yuuji@343 31 (or (YaTeX-inner-environment t) "body")))
yuuji@343 32 YaTeX-dnd-auto-figure)
yuuji@343 33 (setq b (format "\\begin{%s}[htbp] %%\\centering\n"
yuuji@343 34 YaTeX-dnd-auto-figure)))
yuuji@343 35 (unwind-protect
yuuji@343 36 (progn
yuuji@343 37 (setq envstart (point-marker))
yuuji@343 38 (insert "\\includegraphics")
yuuji@343 39 (insert "{" (YaTeX::includegraphics 1 path t) "}")
yuuji@343 40 (save-excursion
yuuji@357 41 (YaTeX-package-auto-usepackage
yuuji@358 42 "includegraphics" 'section
yuuji@358 43 (car YaTeX-dnd-auto-figure-package)
yuuji@358 44 (cdr YaTeX-dnd-auto-figure-package)))
yuuji@343 45 (cond
yuuji@343 46 (b
yuuji@343 47 (undo-boundary)
yuuji@343 48 (save-excursion
yuuji@343 49 (goto-char envstart)
yuuji@343 50 (insert b))
yuuji@343 51 (YaTeX-indent-line)
yuuji@343 52 (insert "\n")
yuuji@343 53 (indent-to (1+ cc))
yuuji@343 54 (setq p1 (point))
yuuji@343 55 (insert "\\caption{")
yuuji@343 56 (setq p2 (point))
yuuji@343 57 (insert (format "}\\label{%s}\n" path))
yuuji@343 58 (indent-to cc)
yuuji@343 59 (insert (format "\\end{%s}\n" YaTeX-dnd-auto-figure))
yuuji@343 60 (goto-char p2)
yuuji@343 61 (undo-boundary)
yuuji@343 62 (insert (file-name-nondirectory path))
yuuji@343 63 (undo-boundary)
yuuji@343 64 (goto-char p1)
yuuji@343 65 (insert "%")
yuuji@343 66 (end-of-line)
yuuji@343 67 (or (get 'YaTeX-dnd-auto-figure 'guide)
yuuji@343 68 (progn
yuuji@343 69 (newline 1)
yuuji@343 70 (indent-to (1+ cc))
yuuji@343 71 (insert (format
yuuji@343 72 (if YaTeX-japan
yuuji@343 73 "%% Undo(%s)するとcaptionが活きます。2度押しで空欄 3度押しで無環境"
yuuji@343 74 "%% TYPE undo(%s) to ACTIVATE caption. Twice to clear caption. 3 to no-env")
yuuji@343 75 (key-description
yuuji@343 76 (car (where-is-internal 'undo)))))
yuuji@343 77 (put 'YaTeX-dnd-auto-figure 'guide t)))))
yuuji@348 78 (YaTeX-help "includegraphics"))
yuuji@343 79 (set-marker envstart nil) ;;sure to reset marker
yuuji@343 80 action))
yuuji@344 81 ((string-match "\\(.*\\)\\.tex$" path)
yuuji@348 82 (insert "\\include{" (match-string 1 path) "}"))
yuuji@348 83 ((string-match "\\(.*\\)\\.bib$" path)
yuuji@348 84 (insert "\\bibliography{" (match-string 1 path) "}"))
yuuji@348 85 ((string-match "\\.ind$" path)
yuuji@348 86 (insert "\\input{" path "}"))))
yuuji@343 87 (t (message "%s" action)))))
yuuji@330 88
yuuji@330 89 (provide 'yatex23)
yuuji@330 90
yuuji@330 91 ; Local variables:
yuuji@330 92 ; fill-prefix: ";;; "
yuuji@330 93 ; paragraph-start: "^$\\| \\|;;;$"
yuuji@330 94 ; paragraph-separate: "^$\\| \\|;;;$"
yuuji@330 95 ; coding: sjis
yuuji@330 96 ; End: