Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Achim Gratz
Nicolas Goaziou n.goaziou at gmail.com writes: Aaron Ecay aaronecay at gmail.com writes: Tikz graphics should be exported to LaTeX by \include, not as a link. This commit changes the file extension used for tikz graphics from .tex to .tikz. I'm wondering if it's really meant to be

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Myles English
Hello, 'Scuse me for butting in but I would just like to share how I use tikz graphics using the 'standalone' class, maybe its useful (and maybe not). The advantage is that you can compile the tikz file by itself to see how it looks and then \include it in the main document without having to

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Nicolas Goaziou
Hello, Achim Gratz strom...@nexgo.de writes: A .tikz file usually contains a tikzpicture environment that wraps around the actual tikz code. It produces a box just like includegraphics does, only that it is normal LaTeX code, and so you need \include to read it. Ok, thank you. If it

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Achim Gratz
Nicolas Goaziou n.goaziou at gmail.com writes: I'm not questioning the usefulness of the patch. I want to know if `org-latex--inline-image' is the appropriate function to provide that feature or if the feature should be provided through another function. In particular,

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Achim Gratz
Aaron Ecay writes: Tikz graphics should be exported to LaTeX by \include, not as a link. This commit changes the file extension used for tikz graphics from .tex to .tikz. Thank you, this works nicely. Instead of dropping the options you might want to consider wrapping another tikzpicture

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Aaron Ecay
2013ko otsailak 26an, Nicolas Goaziou-ek idatzi zuen: I'm not questioning the usefulness of the patch. I want to know if `org-latex--inline-image' is the appropriate function to provide that feature or if the feature should be provided through another function. In particular,

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-26 Thread Aaron Ecay
2013ko otsailak 26an, Achim Gratz-ek idatzi zuen: Thank you, this works nicely. Instead of dropping the options you might want to consider wrapping another tikzpicture environment around the \input statement and applying any options there. This is a good idea. To avoid a proliferation of

Re: [O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-25 Thread Nicolas Goaziou
Hello, Thanks for extracting that patch from the other one. Aaron Ecay aarone...@gmail.com writes: Tikz graphics should be exported to LaTeX by \include, not as a link. This commit changes the file extension used for tikz graphics from .tex to .tikz. I'm wondering if it's really meant to be

[O] [PATCH] ob-R.el, ox-latex.el: support for tikz graphics

2013-02-24 Thread Aaron Ecay
Tikz graphics should be exported to LaTeX by \include, not as a link. This commit changes the file extension used for tikz graphics from .tex to .tikz. TINYCHANGE --- lisp/ob-R.el | 2 +- lisp/ox-latex.el | 22 +- 2 files changed, 14 insertions(+), 10 deletions(-) diff