From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roger Mason Subject: Re: Change default latex packages Date: Tue, 06 May 2014 08:07:13 -0230 Message-ID: <5368BB59.1070503@mun.ca> References: <53678073.4030206@mun.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58238) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Whckf-0006zf-Pk for emacs-orgmode@gnu.org; Tue, 06 May 2014 06:37:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WhckY-0005uq-AD for emacs-orgmode@gnu.org; Tue, 06 May 2014 06:37:33 -0400 Received: from nina.ucs.mun.ca ([134.153.232.76]:47282) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhckY-0005uc-2z for emacs-orgmode@gnu.org; Tue, 06 May 2014 06:37:26 -0400 Received: from pyrope.local (CPE788df7138803-CM788df7138800.cpe.net.cable.rogers.com [174.116.1.63]) (authenticated bits=0) by nina.ucs.mun.ca (8.13.1/8.13.1) with ESMTP id s46AbDsY006310 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Tue, 6 May 2014 08:07:24 -0230 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 Hello again, On 05/05/14 12:31, John Kitchin wrote: > (setq org-latex-default-packages-alist > I thought I had this fixed, but apparently not. Here's what I have in my .emacs: (setq org-latex-default-packages-alist '(("AUTO" "inputenc" t) ("" "lmodern" nil) ("T1" "fontenc" nil) ("" "fixltx2e" nil) ; ("" "charter" nil) ;; a decent font ; ("expert" "mathdesign" nil) ("" "graphicx" t) ("" "longtable" nil) ("" "float" nil) ("" "wrapfig" nil) ("" "rotating" nil) ("normalem" "ulem" t) ("" "amsmath" t) ("" "textcomp" nil) ("" "marvosym" t) ("" "wasysym" t) ("" "amssymb" t) ("" "amsmath" t) ("version=3" "mhchem" t) ("numbers,super,sort&compress" "natbib" t) ("" "natmove" nil) ("" "url" t) ("" "minted" nil) ("" "underscore" t) ("linktocpage,pdfstartview=FitH,colorlinks, linkcolor=blue,anchorcolor=blue, citecolor=blue,filecolor=blue,menucolor=blue,urlcolor=blue" "hyperref" nil) ("" "attachfile" nil))) Notice ("T1" "fontenc" nil) and ("" "textcomp" nil). Here's the latex output: \documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage{lmodern} \usepackage[T1]{fontenc} \usepackage{fixltx2e} \usepackage{graphicx} \usepackage{longtable} \usepackage{float} \usepackage{wrapfig} \usepackage{rotating} \usepackage[normalem]{ulem} \usepackage{amsmath} \usepackage{textcomp} \usepackage{marvosym} \usepackage{wasysym} \usepackage{amssymb} \usepackage{amsmath} \usepackage[version=3]{mhchem} \usepackage[numbers,super,sort&compress]{natbib} \usepackage{natmove} \usepackage{url} \usepackage{minted} \usepackage{underscore} \usepackage[linktocpage,pdfstartview=FitH,colorlinks, linkcolor=blue,anchorcolor=blue, citecolor=blue,filecolor=blue,menucolor=blue,urlcolor=blue]{hyperref} \usepackage{attachfile} \usepackage{parskip} Notice the \usepackage[T1]{fontenc} and \usepackage{textcomp}. What am I doing wrong? Thanks, Roger