emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* make ox-publish generate result figure image link path to relative instead of absolute full path
@ 2016-04-24 11:25 numbchild
  0 siblings, 0 replies; only message in thread
From: numbchild @ 2016-04-24 11:25 UTC (permalink / raw)
  To: Org-mode

[-- Attachment #1: Type: text/plain, Size: 1553 bytes --]

I want babel can generate a figure image which path is relative to current
directory instead of full path.

Here is the org-mode buffer example which use `:dir "data/images"` as
default directory for executing code:


```
#+BEGIN_SRC gnuplot :session none :results graphics :dir "data/images"
:file "org-babel-plot-test.png"
set term png
set output 'org-babel-plot-test.png'

set grid

plot sin(x)
#+END_SRC

#+RESULTS:
[[file:/home/stardiviner/Org/Blog/org-publish/Blog/data/images/org-babel-plot-test.png]]
```

And here is another example which use current directory for save figure
image:

```
#+BEGIN_SRC gnuplot :session none :results graphics :file
"org-babel-plot-test.png"
set term png
set output 'org-babel-plot-test.png'

set grid

plot sin(x)
#+END_SRC

#+RESULTS:
[[file:org-babel-plot-test.png]]
```

What I want:
- result figure image can display as inline image.
- result figure image also can work in remote server. (like the first
example, `ox-publish` exported HTML link is local resource link like
`file:///home/USER/....png`)

Is there a way to change babel generate figure image result path to be like
option `org-link-file-path-type` can set to `adaptive`.

- I think org-mode should improve on this.
- If somebody can provide an adivce, that is good too for a solution to use
for now.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

[-- Attachment #2: Type: text/html, Size: 4965 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-04-24 11:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-24 11:25 make ox-publish generate result figure image link path to relative instead of absolute full path numbchild

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).