tbfisher / sublimetext-Pandoc

A Sublime Text plugin that uses Pandoc to convert text from one markup format into another. Pandoc can convert documents in markdown, reStructuredText, textile, HTML, DocBook, LaTeX, MediaWiki markup, OPML, or Haddock markup to XHTML, HTML5, HTML slide shows using Slidy, reveal.js, Slideous, S5, or DZSlides, Microsoft Word docx, OpenOffice/LibreOffice ODT, OpenDocument XML, EPUB version 2 or 3, FictionBook2, DocBook, GNU TexInfo, Groff man pages, Haddock markup, OPML, LaTeX, ConTeXt, LaTeX Beamer slides, PDF via LaTeX, Markdown, reStructuredText, AsciiDoc, MediaWiki markup, Emacs Org-Mode, Textile, or custom writers can be written in lua.
MIT License
137 stars 26 forks source link

No transformations configured for the syntax Packages/LaTeX/LaTeX.sublime-syntax #71

Closed tyhlee closed 4 years ago

tyhlee commented 5 years ago

I guess the error in the title. How can I resolve this?

afrendeiro commented 4 years ago

To convert latex tex file to for example docx, I simply added latex to the Word scope in User settings:

{
...
      "Microsoft Word": {
        "scope": {
          "text.html": "html",
          "text.html.markdown": "markdown",
          "text.tex.latex": "latex"
        },
        "pandoc-arguments": [
          "-t", "docx"
        ]
      },
...
}
MPvHarmelen commented 4 years ago

It seems like the previous comment solved the issue.