emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: emacs-org list <emacs-orgmode@gnu.org>
Subject: [HTML export] How to display images side by side?
Date: Fri, 11 Oct 2013 15:20:32 +0200	[thread overview]
Message-ID: <m27gdkkkpr.fsf@polytechnique.org> (raw)

Hello,

I'm trying to display a bunch of images side by side, as if they were
text (and would reflow when the window is too small). Following this
advice
http://stackoverflow.com/questions/12923124/tables-in-a-row-or-table-and-image-in-a-row-in-org-mode
I tried this (translated to the new exporter)

--8<---------------cut here---------------start------------->8---
#+attr_html: :style display:inline; :height 60px
[[http://www.google.com/][file:images/Google_Logo.png]]
#+attr_html: :style display:inline; :height 70px
[[http://www.janestreet.com/][file:images/Jane_Street_Logo.jpeg]]
#+attr_html: :style display:inline; :height 50px
[[https://research.microsoft.com/][file:images/MSR_Logo.jpg]]
--8<---------------cut here---------------end--------------->8---

Unfortunately, I don't get what I want. There is an extra "div" and a
"p" around the images, which prevent them from being inline:

#+begin_src html
<div class="figure">
<p><a href="http://www.google.com/" style="display:inline;" height="60px"><img src="images/Google_Logo.png" alt="Google_Logo.png" style="display:inline;" height="60px" /></a>
</p>
</div>

<div class="figure">
<p><a href="http://www.janestreet.com/" style="display:inline;" height="70px"><img src="images/Jane_Street_Logo.jpeg" alt="Jane_Street_Logo.jpeg" style="display:inline;" height="70px" /></a>
</p>
</div>

<div class="figure">
<p><a href="https://research.microsoft.com/" style="display:inline;" height="50px"><img src="images/MSR_Logo.jpg" alt="MSR_Logo.jpg" style="display:inline;" height="50px" /></a>
</p>
#+end_src

What I want is simply:

#+begin_src html
<a href="http://www.google.com/"><img src="images/Google_Logo.png" alt="Google_Logo.png" style="display:inline;" height="60px" /></a>
<a href="http://www.janestreet.com/"><img src="images/Jane_Street_Logo.jpeg" alt="Jane_Street_Logo.jpeg" style="display:inline;" height="70px" /></a>
<a href="https://research.microsoft.com/"><img src="images/MSR_Logo.jpg" alt="MSR_Logo.jpg" style="display:inline;" height="50px" /></a>
#+end_src

I guess my problem comes from using the new exporter, but I could not
find how to do this: only apply the attr_html to the image part, and do
not generate an extra "p" around the image. Any suggestion as how I
could do it?

Thanks,

Alan

             reply	other threads:[~2013-10-11 13:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-11 13:20 Alan Schmitt [this message]
2013-10-11 13:53 ` [HTML export] How to display images side by side? Alan Schmitt

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=m27gdkkkpr.fsf@polytechnique.org \
    --to=alan.schmitt@polytechnique.org \
    --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).