>>> "AB" == Arne Babenhauserheide writes: > Uwe Brauer writes: >> That did not work: I tried >> #+begin_src matlab :results output >> >> But when I exported the org file to latex, the matlab code was also >> exported. Strange > Do you use :exports results? > :results output switches to show what is printed to stdout See my answer to Eric It does not do want I want #+begin_src matlab :exports results close all N = 3; % number of chebyshev nodes n = 1; % polytropic index iters = 1; % iterations j=[0 1 2 3]; z=cos((pi*j)/3); y=1-(0.5*(z+1)).^2; a=n*(8); a2=eye(3+1)*a; disp('\begin{align*}') disp('A_{1,k-1}&=') disp('\begin{pmatrix}') fprintf('%g &%g &%g &%g\\\\\n',a2') disp('\end{pmatrix}=OK\\') disp('\end{align*}') #+end_src Leads to \begin{verbatim} \begin{align*} A_{1,k-1}&= \begin{pmatrix} 8 &0 &0 &0\\ 0 &8 &0 &0\\ 0 &0 &8 &0\\ 0 &0 &0 &8\\ \end{pmatrix}=OK\\ \end{align*} \end{verbatim} So at the moment the only solution I can think of is to use the code I posted (defun my-latex-filter-src-blocks (text backend info) "Remove source blocks from latex export." (when (org-export-derived-backend-p backend 'latex) "%% [removed source block]\n")) (add-to-list 'org-export-filter-src-block-functions 'my-latex-filter-src-blocks)