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