From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Davis Subject: Vertically aligning images in tables? Date: Thu, 14 Jan 2016 17:05:21 -0500 Message-ID: <6sw6c7fuxzvmu6.fsf@BO-C02PWE1MG8WN.home> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50282) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJq1H-0008KT-Bz for emacs-orgmode@gnu.org; Thu, 14 Jan 2016 17:05:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aJq1E-0002gm-5K for emacs-orgmode@gnu.org; Thu, 14 Jan 2016 17:05:27 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:41617) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aJq1E-0002fo-2U for emacs-orgmode@gnu.org; Thu, 14 Jan 2016 17:05:24 -0500 Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id F196A2247B for ; Thu, 14 Jan 2016 17:05:21 -0500 (EST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I'm trying to place three images side-by-side to they're top-aligned, but I can't see to find a way to get org-mode to do this. My current code is: +---- | #+MACRO: p \includegraphics[scale=.3]{$1} | #+ATTR_LATEX: :align {p{5cm} p{5cm} p{5cm}} | | {{{p(./A.png)}}} | {{{p(./B.png)}}} | {{{p(./C.png)}}} | +---- As far as I can tell from LaTeX doc, the p attribute is supposed to top-align the contents, but it's not doing that. Have I missed something? Thanks, -pd