I had the same problem. In my case, I was using an rst generated from latex source using pandoc. I posted this comment to the pandoc list:
https://groups.google.com/forum/#!topic/pandoc-discuss/fzKnZHTlS8Q Posting here as well, in case it is useful to someone else. I am using the following workaround. outfile.rst : infile.tex pandoc -f latex -t rst -s $< | \ perl -p -e "s/^\[(lab-[^\]]*)\]$$/.. _\1:/g;" -e "s/\[(lab-[^\]]*)\]/:ref:\`\1\`/g;" -e "s/ / /g;" | \ grep -v '^ image$$' | grep -v '^\.\. role:: math(raw)$$' | grep -v '^ :format: html latex$$' | \ cat > $@ -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/groups/opt_out.
