Solved Nomenclature Not Generated in PDF Created by Visual Studio Code LaTeX Workshop Extension

Posted on: Fri Jul 14 2023 05:30:00 GMT+0530 (India Standard Time)

The problem regarding not generation of nomenclature in pdf documents created by Visual Studio Code is finally solved.

You may have gone through search engines following the advice to display nomenclature but nothing worked like:

Popular searches regarding the same:

- Problem with the nomenclature
- nomencl latex won't show output

Solution

{
   "name": "makeindex",
   "command": "makeindex",
   "args": [
    "%DOCFILE%.nlo",
    "-s",
    "nomencl.ist",
    "-o",
    "%DOCFILE%.nls"
   ],
   "env": {}
},
{
   "name": "pdflatex -> bibtex -> pdflatex * 2",
   "tools": [
    "pdflatex",
    "bibtex",
    "pdflatex",
    "pdflatex"
   ]
},

like the below command:

{
   "name": "pdflatex -> bibtex -> makeindex -> pdflatex * 2",
   "tools": [
    "pdflatex",
    "bibtex",
    "makeindex",
    "pdflatex",
    "pdflatex"
   ]
},