Re: [O] scaling graphics in org-mode exported to latex

2016-06-30 Thread Max Linke
I typically set a fixed width in latex like so. #+CAPTION: Percutaneous endoscopic gastrostomy tube #+ATTR_LaTeX: :width 0.3\linewidth [[./images/percutaneous-endoscopic-gas.jpg]] Important to note that I write `:width` with a beginning double point. I can't get the `scale` to work even with

Re: [O] Bug: Cannot export document to HTML or Markdown if it has a title [8.3.2 (8.3.2-59-g3d4c46-elpa @ /Users/matt/.emacs.d/elpa/org-20160104/)]

2016-02-04 Thread Max Linke
On 02/04/2016 09:40 AM, Nicolas Goaziou wrote: Hello, Max Linke <max_li...@gmx.de> writes: On 01/31/2016 11:06 PM, Nicolas Goaziou wrote: Hello, Matt Moriarity <mmoriar...@apple.com> writes: If I include a #+TITLE: directive at the top of my Org file, when I try to expor

Re: [O] Bug: Cannot export document to HTML or Markdown if it has a title [8.3.2 (8.3.2-59-g3d4c46-elpa @ /Users/matt/.emacs.d/elpa/org-20160104/)]

2016-02-03 Thread Max Linke
On 01/31/2016 11:06 PM, Nicolas Goaziou wrote: > Hello, > > Matt Moriarity writes: > >> If I include a #+TITLE: directive at the top of my Org file, when I try >> to export it to HTML or markdown, I get an error: >> >> apply: Wrong type argument: listp, #("Guide" 0 5

Re: [O] create vector-graphics with org-babel

2015-09-13 Thread Max Linke
I found out that the error is related to the ob-ipython package. They currently only allow png's. Using the normal ob-python everything works. Thanks for the help though. On 09/09/2015 06:02 PM, Aaron Ecay wrote: Hi Max, What version of org are you using? Latex export should support svg

[O] create vector-graphics with org-babel

2015-09-09 Thread Max Linke
Hi I'm trying to use vector graphics in my org document #+BEGIN_SRC ipython :session :file iso.svg :exports results x = np.linspace(0, 10, 100) y = np.sin(x) plt.plot(x, y) #+END_SRC I can run this cell with 'C-c C-c' but I can't export it to latex because it says that svg is currently

Re: [O] Literate programming in org

2015-08-26 Thread Max Linke
On 08/26/2015 12:36 PM, Sebastien Vauban wrote: See: - inline Babel calls: ... call_NAME(ARGUMENTS) ... and/or - inline code blocks: src_LANGUAGE{BODY}. Yes I'm currently using inline babel calls. * reruning specific cells only one time after emacs was started I have some cells

[O] Literate programming in org

2015-08-26 Thread Max Linke
Hi I'm currently trying to use org-modes literate programming capabilities to write up a paper. So far it has been a joy to have the plotting code and text in the same document. Thanks for all the work people here have already put in to make this so easy. I have run into a two small problems

[O] how to render align environment with mathjax in html-expot

2015-05-21 Thread Max Linke
Hello I would like to use align environments when I export to html. As this is nicer for me to align equations. When I use them naked like this. \begin{align} a = b + c \\ x = y + z \end{align} the equation does not get rendered at all but the