From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luca Ferrari Subject: export code snippet in beamer with different fonts Date: Sun, 29 Sep 2019 12:21:30 +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]:39118) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iEWLD-0001Pq-Js for emacs-orgmode@gnu.org; Sun, 29 Sep 2019 06:22:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iEWLC-0001pW-2e for emacs-orgmode@gnu.org; Sun, 29 Sep 2019 06:22:11 -0400 Received: from mail-ot1-x329.google.com ([2607:f8b0:4864:20::329]:42403) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iEWLB-0001op-Ss for emacs-orgmode@gnu.org; Sun, 29 Sep 2019 06:22:10 -0400 Received: by mail-ot1-x329.google.com with SMTP id c10so5911380otd.9 for ; Sun, 29 Sep 2019 03:22:09 -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, in my org files I've got examples like: #+begin_src sql testdb=# alter role simon with nologin; testdb=# alter role group_a with login; #+end_src and in my latex theme I've got: setbeamerfont{verbatim}{size=\tiny} This is ok for most of my examples, but here are my questions: 1) the highlight seems not to work, all the text is made in fixed size font but in plain back (no keyword highlighted). How can I circumvent this? 2) is it possible to tella latex to export the snippet at the max size available in the page? Something like #+LaTeX: \resizebox{\textwidth}{!}{ ... } that I place around my tables. Thanks, Luca