Kevin Brubeck Unhammer <p.ixiemot...@gmail.com> writes:

> But now the obvious question is: does there exist a "syncorg" to
> transport me back into the org-mode file to the point that corresponds
> to that place in the tex-file? I assume it should be possible since
> org-mode outputs these \label{sec-3.3} things...

Very dumb and stupid proof-of-nothing:

(defun bzg/search-point-in-latex-source ()
  "Switch to an Org's sister LaTeX file and find text at point."
  (interactive)
  (let ((txt (buffer-substring 
              (point) (save-excursion (forward-word 3) (point))))
        (lfn (concat (file-name-sans-extension (buffer-file-name)) ".tex")))
    (find-file-other-window lfn)
    (goto-char (point-min))
    (search-forward txt)))

But using isearch might be fast enough, isn't it?

After all, it's just text.  

-- 
 Bastien

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to