From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chris Malone Subject: latex short caption broken? Date: Thu, 30 Jun 2011 16:15:00 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:37775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcNdg-0003nY-JO for emacs-orgmode@gnu.org; Thu, 30 Jun 2011 16:15:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QcNdd-0002lD-Fz for emacs-orgmode@gnu.org; Thu, 30 Jun 2011 16:15:03 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:62189) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QcNdd-0002l0-74 for emacs-orgmode@gnu.org; Thu, 30 Jun 2011 16:15:01 -0400 Received: by iyl8 with SMTP id 8so2941082iyl.0 for ; Thu, 30 Jun 2011 13:15:00 -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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode Hi all, Tom Dye came up with a great patch to pass an optional title to LaTeX's =\caption= command: see here http://lists.gnu.org/archive/html/emacs-orgmode/2011-05/msg00311.html That thread says the patch has been applied, and as far as I can tell it appears to be in the code. I'm using version =org-version= 7.3. This is a minimal non-working example: --------------------------------------------------------------------------------------------------------------------------------------------------- #+TITLE: mnwe.org #+AUTHOR: Chris Malone #+EMAIL: xxxxx #+DATE: 2011-06-30 Thu #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t #+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc #+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgm ode.org/org-info.js #+EXPORT_SELECT_TAGS: export #+EXPORT_EXCLUDE_TAGS: noexport #+LINK_UP: #+LINK_HOME: #+XSLT: #+BEGIN_LATEX \listoffigures #+END_LATEX * A minimal (non-working) example Let's include a figure! #+CAPTION: [Caption to list]{Caption to figure.} #+ATTR_LATEX: width=\textwidth [[file:f1.pdf]] --------------------------------------------------------------------------------------------------------------------------------------------------- this produces the following .tex file: --------------------------------------------------------------------------------------------------------------------------------------------------- % Created 2011-06-30 Thu 16:08 \documentclass[11pt]{article} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{fixltx2e} \usepackage{graphicx} \usepackage{longtable} \usepackage{float} \usepackage{wrapfig} \usepackage{soul} \usepackage{textcomp} \usepackage{marvosym} \usepackage{wasysym} \usepackage{latexsym} \usepackage{amssymb} \usepackage{hyperref} \tolerance=1000 \usepackage{color} \usepackage{listings} \providecommand{\alert}[1]{\textbf{#1}} \title{mnwe.org} \author{Chris Malone} \date{2011-06-30 Thu} \begin{document} \maketitle \setcounter{tocdepth}{3} \tableofcontents \vspace*{1cm} \listoffigures \section{A minimal (non-working) example} \label{sec-1} Let's include a figure! \begin{figure}[htb] \centering \includegraphics[width=\textwidth]{f1.pdf} \caption{Caption to figure.} \end{figure} \end{document} --------------------------------------------------------------------------------------------------------------------------------------------------- As you can see, the optional ([...]) argument to the caption command is completely ignored upon export. Am I doing something wrong, or is something else breaking this? Chris