emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [HTML export] How to display images side by side?
@ 2013-10-11 13:20 Alan Schmitt
  2013-10-11 13:53 ` Alan Schmitt
  0 siblings, 1 reply; 2+ messages in thread
From: Alan Schmitt @ 2013-10-11 13:20 UTC (permalink / raw)
  To: emacs-org list

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [HTML export] How to display images side by side?
  2013-10-11 13:20 [HTML export] How to display images side by side? Alan Schmitt
@ 2013-10-11 13:53 ` Alan Schmitt
  0 siblings, 0 replies; 2+ messages in thread
From: Alan Schmitt @ 2013-10-11 13:53 UTC (permalink / raw)
  To: emacs-org list

Hello again,

alan.schmitt@polytechnique.org writes:

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

I found a way to do it using CSS. Here is the org file that is exported
to html (note that I no longer have the style attribute, and I give the
surrounding node to give the context assigning the class).

--8<---------------cut here---------------start------------->8---
** Sponsors
  :PROPERTIES:
  :HTML_CONTAINER_CLASS: sponsors
  :END:

The workshop is kindly sponsored by:

#+attr_html: :height 60px
[[http://www.google.com/][file:images/Google_Logo.png]]

#+attr_html: :height 70px
[[http://www.janestreet.com/][file:images/Jane_Street_Logo.jpeg]]

#+attr_html: :height 50px
[[https://research.microsoft.com/][file:images/MSR_Logo.jpg]]
--8<---------------cut here---------------end--------------->8---

To get the alignment working properly (with images aligned at the
center), I then put the following in my style.css:

#+begin_src css
.sponsors .figure {
    display: inline;
}

.sponsors .figure p {
    display: inline;
}

.sponsors .figure img {
    vertical-align: middle;
}
#+end_src

If you simply want a vertical list of images, you can simply override
the setting for .figure p:

#+begin_src css
.sponsors .figure p {
    text-align: left;
}
#+end_src

Alan

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-10-11 13:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-11 13:20 [HTML export] How to display images side by side? Alan Schmitt
2013-10-11 13:53 ` Alan Schmitt

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