Re: [O] export to latex but *not* export the citations

2018-01-19 Thread Sharon Kimble
John Kitchin writes: > I don't think that it is possible for the snippet I sent to remove the the > parentheses as they are not part of the link.  > > You can either replace them all interactively with a regexp, e.g. > > #+BEGIN_SRC emacs-lisp > (goto-char (point-min)) > (query-replace-regexp "(

Re: [O] export to latex but *not* export the citations

2018-01-19 Thread John Kitchin
I don't think that it is possible for the snippet I sent to remove the the parentheses as they are not part of the link. You can either replace them all interactively with a regexp, e.g. #+BEGIN_SRC emacs-lisp (goto-char (point-min)) (query-replace-regexp "(\\(cite:.*\\))" "\\1") #+END_SRC That

Re: [O] export to latex but *not* export the citations

2018-01-19 Thread Sharon Kimble
John Kitchin writes: > You can try this: > > * Build :noexport: > > Put this heading in your file, and run this block. > > #+BEGIN_SRC emacs-lisp > (flet ((org-ref-format-cite (keyword desc format) "")) > (org-latex-export-to-latex)) > #+END_SRC > > It will temporarily redefine the cite export f

Re: [O] export to latex but *not* export the citations

2018-01-19 Thread John Kitchin
You can try this: * Build :noexport: Put this heading in your file, and run this block. #+BEGIN_SRC emacs-lisp (flet ((org-ref-format-cite (keyword desc format) "")) (org-latex-export-to-latex)) #+END_SRC It will temporarily redefine the cite export function. It appears it replaces them with a

[O] export to latex but *not* export the citations

2018-01-19 Thread Sharon Kimble
I'm writing a document which currently has 408 pages and over a 1,000 footnotes, and with a size of 1.1 mbs. I'm exporting it to latex using 'org-latex-export-to-latex' and am now wondering is it possible to export it *and* omit the citations? The citations currently are showing in the org-mode s