Re: [O] org babel: %% [removed source block]

2018-11-29 Thread John Kitchin
Have you tried this with an emacs -q? Your examples work as expected in emacs -q for me. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Uwe Brauer
>>> "Berry," == Berry, Charles writes: > I cannot reproduce your export issue with org 9.1.14. > You need to provide more details. Ok, I searched already my custom settings. > Perhaps you have a header-arg set that you have not told us about? > What does C-c C-v C-i report when

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Berry, Charles
I cannot reproduce your export issue with org 9.1.14. You need to provide more details. Perhaps you have a header-arg set that you have not told us about? What does C-c C-v C-i report when point is in each of your source blocks? I get Lang: matlab Properties: :header-argsnil

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > Maybe you need :exports and not :export. > John I tried also lisp #+begin_src elisp :tangle test.el :exports code :padline no (require 'ob-ipython) (setq org-confirm-babel-evaluate t) ;don't prompt me to confirm everytime I want to evaluate a

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > Maybe you need :exports and not :export. > John I also see Code block produced no output. org-babel-exp process matlab at position 250... smime.p7s Description: S/MIME cryptographic signature

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > Maybe you need :exports and not :export. > John I tried #+begin_src matlab :tangle test.m :exports code :padline no function [ll x]=mitest(A0,x0) % initialization format long epsi=1.e-3; nit=0; nmaxit=200; Delta=10; A=A0; while Delta>epsi & nit

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread John Kitchin
Maybe you need :exports and not :export. John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchingroup.cheme.cmu.edu On Thu, Nov 29, 2018 at

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Uwe Brauer
>>> "Eric" == Eric S Fraga writes: > On Thursday, 29 Nov 2018 at 12:38, Uwe Brauer wrote: >> Now org-babel-tangle works nicely, but when I try to export the org >> file to latex via org-export-dispatch > I think the default is > :exports results > so you what you want is

Re: [O] org babel: %% [removed source block]

2018-11-29 Thread Eric S Fraga
On Thursday, 29 Nov 2018 at 12:38, Uwe Brauer wrote: > Now org-babel-tangle works nicely, but when I try to export the org > file to latex via org-export-dispatch I think the default is :exports results so you what you want is either :exports both or :exports code -- Eric S Fraga via Emacs

[O] org babel: %% [removed source block]

2018-11-29 Thread Uwe Brauer
Hi I have the following org file #+BEGIN_SRC matlab :tangle test.m :padline no :results none function [ll x]=mitest(A0,x0) % initialization format long epsi=1.e-3; nit=0; nmaxit=200; Delta=10; A=A0; while Delta>epsi & nit