Re: [O] How to do proper folding and semantic markup

2016-04-01 Thread Eric S Fraga
On Thursday, 31 Mar 2016 at 21:39, Eduardo Mercovich wrote: [...] > This linking capacity is great and I'm using it a lot. > > The only detail remaining here that I'm still searching is how to > include the table/figure # also with the link. This is because if > someone prints the report, the lin

Re: [O] problem with ob-octave (matlab)

2016-04-01 Thread Uwe Brauer
>>> "John" == John Kitchin writes: > sometimes setting :results to raw or code can help. > I occasionally have trouble when the results get interpreted as cons > cells, and maybe some other things too (in other languages but i think > it a general problem.) You mean #+BEGIN_SRC matl

[O] Error in docu, page 38, 4.3 foodnote 3 is cut prematurly

2016-04-01 Thread Luzido
Hi, Line: file:projects.org::some words text search in Org file3 Foodnote: 3 The actual behavior of the search will depend on the value of the option org-link-search-must-match-exact-headline. If its value is nil, then a fuzzy text search will be done. If it is t, then only the many thanks for

Re: [O] problem with ob-octave (matlab)

2016-04-01 Thread Eric S Fraga
On Friday, 1 Apr 2016 at 08:30, Uwe Brauer wrote: > You mean > > #+BEGIN_SRC matlab > syms a b > A=[a,b;b,a] > eig(A) > #+END_SRC > > #+RESULTS: code No, I think John meant: #+BEGIN_SRC matlab :results code syms a b A=[a,b;b,a] eig(A) #+END_SRC i.e. a header argument for the src block. -- :

Re: [O] problem with ob-octave (matlab)

2016-04-01 Thread Uwe Brauer
>>> "Eric" == Eric S Fraga writes: > On Friday, 1 Apr 2016 at 08:30, Uwe Brauer wrote: >> You mean >> >> #+BEGIN_SRC matlab >> syms a b >> A=[a,b;b,a] >> eig(A) >> #+END_SRC >> >> #+RESULTS: code > No, I think John meant: > #+BEGIN_SRC matlab :results cod

Re: [O] How to do proper folding and semantic markup

2016-04-01 Thread Eduardo Mercovich
Hi Eric. >> This linking capacity is great and I'm using it a lot. >> The only detail remaining here that I'm still searching is how to >> include the table/figure # also with the link. This is because if >> someone prints the report, the link becomes unusable without a number. > Well, if you ar

[O] My fault: actually the foodnote continues on page 39 Re: Error in docu, page 38, 4.3 foodnote 3 is cut prematurly

2016-04-01 Thread Luzido
Hi, Foodnote: exact headline will be matched. If the value is 'query-to-create, then an exact headline will be searched; if it is not found, then the user will be queried to create it. so everything is just fine? regards Lutz On 01.04.2016 13:17, luz...@gmx.net wrote: > Hi, > > Line: > file:pro

Re: [O] problem with ob-octave (matlab)

2016-04-01 Thread Eric S Fraga
I don't have MATLAB on the system I'm on at the moment but trying your (slightly modified) example with octave instead works: #+begin_src org ,#+BEGIN_SRC octave :results output pkg load symbolic syms a b A=[a,b;b,a] eig(A) ,#+END_SRC ,#+results: ,#+begin_example OctSym

Re: [O] problem with ob-octave (matlab)

2016-04-01 Thread Eric S Fraga
Ummm, some characters lost in translation... attached is an image of the output from octave in org looks like on my system. Not sure why gnus got confused with charsets etc. -- : Eric S Fraga (0xFFFCF67D), Emacs 25.0.92.1, Org release_8.3.4-668-g809a83

Re: [O] problem with ob-octave (matlab)

2016-04-01 Thread Uwe Brauer
>>> "Eric" == Eric S Fraga writes: > I don't have MATLAB on the system I'm on at the moment but trying your > (slightly modified) example with octave instead works: Aha! #+BEGIN_SRC matlab :results output syms a b A=[a,b;b,a] eig(A) #+END_SRC This worked as well! Thanks!