From mboxrd@z Thu Jan 1 00:00:00 1970 From: Guenter Kolousek Subject: Re: Small font size in beamer tables Date: Thu, 04 Aug 2011 20:31:42 +0200 Message-ID: References: <20110804000016.GA17883@panahar> <20110804003309.GA18918@panahar> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:45098) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QpCz4-0001mF-KR for emacs-orgmode@gnu.org; Fri, 05 Aug 2011 01:30:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QpCz3-0006cZ-4h for emacs-orgmode@gnu.org; Fri, 05 Aug 2011 01:30:10 -0400 Received: from lo.gmane.org ([80.91.229.12]:59749) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QpCz2-0006bp-Tt for emacs-orgmode@gnu.org; Fri, 05 Aug 2011 01:30:09 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QpCz1-00057M-LK for emacs-orgmode@gnu.org; Fri, 05 Aug 2011 07:30:07 +0200 Received: from 188-22-177-59.adsl.highway.telekom.at ([188.22.177.59]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 05 Aug 2011 07:30:07 +0200 Received: from ko by 188-22-177-59.adsl.highway.telekom.at with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 05 Aug 2011 07:30:07 +0200 In-Reply-To: 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 Using beamer the following just works fine too, if the table is the only element inside a frame: #+LATEX: \tiny #+ATTR_LaTeX: align=rr | M (GeV) | K-factor | |---------+----------| | 50 | 1.075 | | 150 | 1.01 | | 250 | 0.9932 | | 350 | 0.9778 | | 450 | 0.9621 | Günter Am 2011-08-04 03:07, schrieb suvayu ali: > Hello Vikas, > > On Thu, Aug 4, 2011 at 2:33 AM, Vikas Rawal > wrote: >> I have this line: >> #+ATTR_LaTeX: placement=\footnotesize align=p{2cm}|r|r|p{1cm}|p{1cm}|r|p{1cm}|p{1cm}| >> >> This does not produce any change. >> >> I have also tried just: >> >> #+ATTR_LaTeX: placement=\footnotesize >> >> What am I supposed to do with []. Do i have to have some? >> > > I hadn't tried my solution for beamer export. In beamer tables don't > use the table environment, hence my previous solution doesn't work. > > That said, I did find an ugly hack. Try this: > > #+LATEX: {\tiny > #+ATTR_LaTeX: align=rr > | M (GeV) | K-factor | > |---------+----------| > | 50 | 1.075 | > | 150 | 1.01 | > | 250 | 0.9932 | > | 350 | 0.9778 | > | 450 | 0.9621 | > #+LATEX: } > > Hopefully this was helpful. >