emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Octave/Matlab Code Export Issue?


From: Charles Berry
Subject: Re: [O] Octave/Matlab Code Export Issue?
Date: Thu, 13 Mar 2014 16:16:00 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

Phil Regier <pregier <at> math.ku.edu> writes:

> 
> I'm having trouble with Octave export, and I am not quite sure where to look.
> 
> In an Org file I have the following:
> 
>    #+BEGIN_SRC octave
>      a = [1;3;5;7;9]
>      b = [2;4;6;8]
>      ans=a;
>    #+END_SRC octave
> 
>

Instead try this:

--8<---------------cut here---------------start------------->8---
#+NAME: abc
#+BEGIN_SRC octave
  a = [1;3;5;7;9]
  b = [2;4;6;8]
  ans=a;
#+END_SRC
--8<---------------cut here---------------end--------------->8---

Note that the #+END_SRC line has no trailing <language> nor anything else:

14.1 Structure of code blocks
=============================

Live code blocks can be specified with a `src' block or inline.(1)  The
structure of a `src' block is

     #+NAME: <name>
     #+BEGIN_SRC <language> <switches> <header arguments>
       <body>
     #+END_SRC


HTH,

Chuck




reply via email to

[Prev in Thread] Current Thread [Next in Thread]