On Saturday, 13 Feb 2016 at 16:35, Axel Kielhorn wrote:
> Hello!
>
> I use some calc in my org document:
>
> #+begin_SRC calc :var x=5 :var y=2 :exports both
> 2 + a * x ** y
> #+end_SRC
>
> When I export this to LaTeX the listings package complains about an
> unknown language calc.
>
> To fix t
Hi,
would the attached patch be enough?
Cheers,
Simon
On 02/12/2016 11:41 PM, Nicolas Goaziou wrote:
Hello,
Simon Thum writes:
do you refer to master, maint or something else? I'm on 8.3 but am
considering an upgrade.
Development version = master.
Also I think org-contacts should decl
Hi org-mode users and developers,
org-agenda is great but slow, sticky agenda solves this but gets
stale really fast. I try to refresh my org-agenda while Emacs is
idle like so:
(defun gz/refresh-agenda-when-idle ()
"Refresh Agenda while idle."
(org-agenda-redo 'all))
(setq gz/idle-agenda
Hey Aaron, thanks for the input.
I don't think that solves my problem. I think I found a solution, but
it involves multiple formulas for the same column.
See here https://gist.github.com/ebellani/d271093faaa943674df6
Does anyone have a better idea for doing something like that? I had to
modify bot
Hello!
I use some calc in my org document:
#+begin_SRC calc :var x=5 :var y=2 :exports both
2 + a * x ** y
#+end_SRC
When I export this to LaTeX the listings package complains about an unknown
language calc.
To fix this I simply define a language:
#+LATEX_HEADER: \usepackage{listings}
#+LA
On 02/12/2016 11:43 PM, Nicolas Goaziou wrote:
Hello,
Simon Thum writes:
I noticed one more strange thing:
the new exporter fails to resolve links to radio targets (which are
slightly pointless but worked before). I'm not sure it needs fixing,
just thought I'd let you know.
I.e. <<>> <>
Okay, I have figured this out and here is the solution in case anybody
else wants to do something like this:
1. create a very simple dot src block:
#+begin_src org
,#+name: generate-graph
,#+begin_src dot :var graph="digraph {}" :file graph.pdf
$graph
,#+end_src
#+end_