[O] Spreadsheet row formula

2012-01-08 Thread RCY
In the following table I am trying to implement a row formula for each cell to be a multiple of the corresponding cell in a preceding row, but several variations I tried do not work: | A| 2 | 3 | 4| | B| [4, 6, 8] | [4, 6, 8] | [4, 6, 8] | | C| [4, 6, 8]

Re: [O] Spreadsheet row formula

2012-01-08 Thread RCY
it to the second row: @2$..@2$ = 2 * @-1 But that did not work. Thanks. On Sun, Jan 8, 2012 at 10:51 AM, Michael Brand michael.ch.br...@gmail.comwrote: Hi RCY Do you want to do this?: | A | 2 | 3 | 4 | | B | 4 | 6 | 8 | | C | 8 | 12 | 16 | #+TBLFM: @$..@$ = 2 * @-1 Michael

Re: [O] Spreadsheet row formula

2012-01-08 Thread RCY
Hi, That does what I want. Thanks for taking the time to explain it. I should have read the manual on relative cell references more carefully. On Sun, Jan 8, 2012 at 11:23 AM, Michael Brand michael.ch.br...@gmail.comwrote: Hi RCY On Sun, Jan 8, 2012 at 17:12, RCY re...@yahoo.com wrote

[O] Arranging BABEL source block and output figure side by side in html output

2013-06-27 Thread RCY
Hi, I apologize in advance if this is documented in the manual or addressed already in the mailing list but I was unable to find an answer. Is it possible to arrange a BABEL asymptote source block and the resulting output figure side by side in html output? Thanks for any help. RC

Re: [O] Arranging BABEL source block and output figure side by side in html output

2013-06-27 Thread RCY
On Thu, Jun 27, 2013 at 6:18 PM, Eric Schulte schulte.e...@gmail.com wrote: RCY re...@yahoo.com writes: Hi, I apologize in advance if this is documented in the manual or addressed already in the mailing list but I was unable to find an answer. Is it possible to arrange a BABEL asymptote

[O] Error while compiling

2013-07-19 Thread RCY
Hi, I tried compiling the git version on a Mac running Lion with emacs 24.3 and I get the error: make compile-dirall dirall Checking /Users/rc/elisp/org-mode/lisp... Compiling /Users/rc/elisp/org-mode/lisp/org-attach.el... In toplevel form:

[O] Error compiling file

2013-07-19 Thread RCY
Hi, I am trying to compile the git version on a Mac with emacs 24.3 and I get the error: make compile-dirall dirall Checking /Users/rc/elisp/org-mode/lisp... Compiling /Users/rc/elisp/org-mode/lisp/org-attach.el... In toplevel form:

[O] Booktabs in new LaTeX exporter

2012-12-27 Thread RCY
I am trying to use the booktabs package for tables in the new exporter, however I am unable to get \toprule, etc instead of \hrule I would appreciate any suggestions to fix this. As a minimal example, I started emacs -q, and evaluated the following: (setq org-install-dir

Re: [O] Booktabs in new LaTeX exporter

2012-12-27 Thread RCY
git and I am running emacs 24.3.50.1. Thanks. On Thu, Dec 27, 2012 at 7:17 PM, Thomas S. Dye t...@tsdye.com wrote: Aloha RCY, You can have this in your setup to enable booktabs globally: (setq org-e-latex-tables-booktabs t) Or, you can give a table this attribute: #+attr_latex

Re: [O] Booktabs in new LaTeX exporter

2012-12-28 Thread RCY
} (\\section{%s} . \\section*{%s}) (\\subsection{%s} . \\subsection*{%s}) (\\subsubsection{%s} . \\subsubsection*{%s}) (\\paragraph{%s} . \\paragraph*{%s}) (\\subparagraph{%s} . \\subparagraph*{%s}))) hth, Tom RCY re

Re: [O] Booktabs in new LaTeX exporter

2012-12-28 Thread RCY
a different approach as it is implemented as a command). Have you tried to use either of these packages? Thanks. On Fri, Dec 28, 2012 at 12:27 PM, Thomas S. Dye t...@tsdye.com wrote: Aloha RCY, Here is a (too long) working example that shows how to pass attributes. See especially :align, where

Re: [O] Booktabs in new LaTeX exporter

2012-12-28 Thread RCY
Hi Tom, I hacked together a preliminary solution that uses the booktabs and threeparttable (for footnotes) packages, based on the suggestion in section 13.2 of http://orgmode.org/worg/org-tutorials/org-latex-export.html It seems to do OK in a simple example, and I will test it some more. It does

[Orgmode] [Babel] Output of multiple variables from octave source

2010-12-30 Thread RCY
Hi, I would like to output multiple variables from an octave program. When I evaluate: #+srcname: test.m #+begin_src octave clear variables x=5.1; y=3*x; sprintf('x=%.1f',x) sprintf('y=%.1f',y) #+end_src I get #+results: test.m :

[O] Inserting property drawers and comments

2014-12-09 Thread RCY
Hi, I can insert a property drawer using the 'C-u C-c C-x d' key sequence. Is there a way to do so by directly calling the org-insert-property-drawer function? I get a 'Wrong type argument: commandp, org-insert-property drawer error' when I try to call it using a shortcut command. I have a