From: Florian Lindner <mailinglists@xgm.de>
To: emacs-orgmode@gnu.org
Subject: Re: Add caption to babel-generated images
Date: Tue, 30 Aug 2016 13:54:00 +0200 [thread overview]
Message-ID: <b7528049-56a1-5fec-db1e-5cbe1e2b5a8f@xgm.de> (raw)
In-Reply-To: <20160830110410.GA19154@gmail.com>
Am 30.08.2016 um 13:04 schrieb Georgiy Tugai:
> I don't know if it'll work for Python, but here's an example of what
> works for me with Ditaa:
>
>> #+BEGIN_SRC ditaa :file figs/-mininet-ovsk.png :cache yes
>> /----+ /----+ /----+ /----+
>> |host| |host| |host| |host| Containers
>> +-+--/ +-+--/ +--+-/ +--+-/
>> | | | |
>> ---------------------------------------------
>> | | | |
>> +-+------+-------+------+-+
>> | Open VSwitch | Host kernel
>> +-----+-------------+---=-+
>> | |
>> +------+-----+ +-----+------+
>> | controller | | controller | Host userspace
>> +------------+ +------------+
>> #+END_SRC
>>
>> #+ATTR_LATEX: :width "" :options [scale=0.75]
>> #+CAPTION: [[label:fig:mininet-arch]]Mininet with OpenVSwitch architecture
>> #+RESULTS[1d367d39f18523f4eb247cb13aabd6c6f633fbdf]: [[file:figs/-mininet-ovsk.png]]
>
> First, execute your Babel block in order to generate a #+RESULTS line.
> Then, add CAPTION, ATTR_LATEX etc. lines before the RESULTS line.
This seems to work mostly, yes. Problem is, that org puts the label inside the caption:
\begin{figure}[htb]
\centering
\includegraphics[width=.9\linewidth]{rbf-gaussian-4.pdf}
\caption{\label{fig:GaussianExample}Gaussian Basis functions with vertex distances marked at $n \cdot \frac{1}{6}$.}
\end{figure}
This way the label does not work, i.e. won't be found by ref links.
#+BEGIN_SRC python :exports results :results file
import matplotlib.pyplot as plt, numpy as np
x = np.linspace(-2, 2, 1000)
plt.plot(x, np.exp(-np.power(4*x, 2)), label="shape-parameter=4")
for i in range(-4, 5): plt.axvline(1/6 * i, ymax = 0.1, ls = "-.", color="r")
plt.grid()
plt.savefig('rbf-gaussian-4.pdf')
return "rbf-gaussian-4.pdf"
#+END_SRC
#+LABEL: fig:GaussianExample
#+CAPTION: Gaussian Basis functions with vertex distances marked at $n \cdot \frac{1}{6}$.
#+RESULTS:
[[file:rbf-gaussian-4.pdf]]
Using NAME instead of caption results in the same latex output.
Thanks,
Florian
>
> Good luck!
> Georgiy
>
> On 30 Aug, Florian Lindner wrote:
>> Hello,
>>
>> I have this code block:
>>
>> #+BEGIN_SRC python :exports results :results file
>> import matplotlib.pyplot as plt, numpy as np
>> x = np.linspace(-2, 2, 1000)
>> plt.plot(x, np.exp(-np.power(4*x, 2)), label="shape-parameter=4")
>> for i in range(-4, 5): plt.axvline(1/6 * i, ymax = 0.1, ls = "-.", color="r")
>> plt.grid()
>> plt.savefig('rbf-gaussian-4.pdf')
>> return "rbf-gaussian-4.pdf"
>> #+END_SRC
>>
>> When exporting to latex it nicely compiles into \includegraphics[width=.9\linewidth]{rbf-gaussian-4.pdf}.
>>
>> Now I want to have this \includegraphics in a figure environement including a label (to reference it) and a caption.
>>
>> How can do this best?
>>
>> I have found:
>> http://emacs.stackexchange.com/questions/12150/add-caption-to-an-image-generated-by-a-code-block
>>
>> but it doesn't work for me.
>>
>> Thanks,
>> Florian
>>
>>
next prev parent reply other threads:[~2016-08-30 11:54 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-30 9:27 Add caption to babel-generated images Florian Lindner
2016-08-30 10:11 ` Nicolas Goaziou
2016-08-30 10:40 ` Florian Lindner
2016-08-30 11:04 ` Georgiy Tugai
2016-08-30 11:54 ` Florian Lindner [this message]
2016-08-30 12:02 ` Florian Lindner
2016-08-30 11:55 ` Nicolas Goaziou
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b7528049-56a1-5fec-db1e-5cbe1e2b5a8f@xgm.de \
--to=mailinglists@xgm.de \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).