#+ -*- org-confirm-babel-evaluate: nil; -*- * testing inline evaluation of babel source blocks #+tblname: benzene-chlorobenzene-antoine-coefficients | Species | A | B | C | |---------------+---------+----------+---------| | benzene | 6.89272 | 1203.531 | 219.888 | | chlorobenzene | 7.10690 | 1500.0 | 224 | #+srcname: benzene-chlorobenzene-relative-volatility #+begin_src octave :exports none :results value :var T=25 :var coeff=benzene-chlorobenzene-antoine-coefficients[2:-1,1:-1] format bank b=1; # row indices c=2; A=1; # column indices B=2; C=3; for i=1:2, p(i) = 10^(coeff(i,A) - coeff(i,B)/(T+coeff(i,C))); endfor p(b)/p(c) #+end_src The relative volatility is src_octave[:var it=benzene-chlorobenzene-relative-volatility :results output raw]{disp(it);}. If I put the result in a list: - it does not work as the result is src_octave[:var it=benzene-chlorobenzene-relative-volatility :results output raw]{disp(it);} and the list processing is confused.