emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] latex short caption broken?


From: Chris Malone
Subject: [O] latex short caption broken?
Date: Thu, 30 Jun 2011 16:15:00 -0400

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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]