# -*- coding: utf-8; -*- #+TITLE: examplebug.org #+AUTHOR: Eric S Fraga #+EMAIL: address@hidden #+OPTIONS: H:3 num:t toc:nil \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:nil * equation with leading minus sign The following equation \begin{equation} \label{eq:test} y = 3 x - 5 + 4 \end{equation} illustrates a problem in \LaTex export where the leading arithmetic operators are interpreted as list entries. A snippet of the \LaTeX code generated on export is here: #+begin_example The following equation \begin{equation} \label{eq:test} y = 3 x \begin{itemize} \item 5 \item 4 \end{itemize} \end{equation} illustrates a problem in \LaTex export where the leading arithmetic operators are interpreted as list entries. #+end_example