From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luca Ferrari Subject: hwo to use different font size and emphasis in src snippets? Date: Thu, 25 Jul 2019 14:52:09 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:39721) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hqdEm-0002kW-K6 for emacs-orgmode@gnu.org; Thu, 25 Jul 2019 08:52:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hqdEl-0005a3-Ny for emacs-orgmode@gnu.org; Thu, 25 Jul 2019 08:52:48 -0400 Received: from mail-io1-xd41.google.com ([2607:f8b0:4864:20::d41]:39843) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hqdEl-0005Zs-Jx for emacs-orgmode@gnu.org; Thu, 25 Jul 2019 08:52:47 -0400 Received: by mail-io1-xd41.google.com with SMTP id f4so96981217ioh.6 for ; Thu, 25 Jul 2019 05:52:47 -0700 (PDT) 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" To: emacs-org list Hi all, I'd like to make my presentations a little more appealing. I've got code snippets like the following: #+begin_src shell % pgbench -i -s 30 -F 100 --foreign-keys -h 127.0.0.1 -U luca pgbench generating data... 100000 of 3000000 tuples (3%) done (elapsed 0.09 s, remaining 2.64 s) 200000 of 3000000 tuples (6%) done (elapsed 0.14 s, remaining 1.94 s) 300000 of 3000000 tuples (10%) done (elapsed 0.18 s, remaining 1.66 s) ... vacuuming... creating primary keys... creating foreign keys... done. #+end_src I would like to: 1) put an emphasis on the command line (first line), let's say to put it in bold; 2) use a smaller font for the command output without reducing the font size of the command line. Of course, the export is in beamer. Is it possible? Any suggestions? Thanks, Luca