Hi Andrea and others!

Right now I'm using Vim with vimtex plugin, so I leave glossary generation to 
latexmk 
script. And it seems that new version of TexStudio overwrites my old
config.
So I'll quote one of my previous emails:

>In my TeXstudio setup I use separate >command for glossary creation.
>To do so, go to Options-> Configure >TeXstudio -> Commands.
>Change Makeindex command to:
>makeindex %.nlo  -s nomencl.ist -o %.nls
>Click Ok and go to Tools -> Commands -> >Makeindex.

Here the latexmk config for glossary:

# Custom dependency and function for nomencl package 
add_cus_dep( 'nlo', 'nls', 0, 'makenlo2nls' );
sub makenlo2nls {
system( "makeindex -s nomencl.ist -o \"$_[0].nls\" \"$_[0].nlo\"" );
}

I've compiled the last version from git and glossary works as expected.

P.S. The new version of Cinelera's manual is really eye candy!
You are done a very good job to create it.

P.P.S The first page uses a raster image with relative low resolution, I
think it should be changed into vector one.

Best regards,
Andrey
Hi Andrea and others!

Right now I'm using Vim with vimtex plugin, so I leave glossary to latexmk script.
I'll quote one of my previous emails:

>In my TeXstudio setup I use separate >command for glossary creation.
>To do so, go to Options-> Configure >TeXstudio -> Commands.
>Change Makeindex command to:
>makeindex %.nlo  -s nomencl.ist -o %.nls
>Click Ok and go to Tools -> Commands -> >Makeindex.



Best regards,
Andrey

пт, 11 дек. 2020 г., 21:46 Phyllis Smith via Cin <[email protected]>:
Georgy,

I just tried to translate the manual from command line:

pdflatex CinelerraGG_Manual
pdflatex CinelerraGG_Manual
pdflatex CinelerraGG_Manual
makeindex -s nomencl -o CinelerraGG_Manual.nls CinelerraGG_Manual.nlo
pdflatex CinelerraGG_Manual

It simply works and places Glossary before the list of tables/figures. No
problem at all when run from command line.

I added an index (with just a couple of entries until more can be added).  So this takes 2 more lines.  I just use the simple command lines in a shell:
#!/bin/bash
pdflatex CinelerraGG_Manual.tex
makeindex -s nomencl.ist -o CinelerraGG_Manual.nls CinelerraGG_Manual.nlo
pdflatex CinelerraGG_Manual.tex
makeindex CinelerraGG_Manual.idx
pdflatex CinelerraGG_Manual.tex

--
Cin mailing list
[email protected]
https://lists.cinelerra-gg.org/mailman/listinfo/cin
-- 
Cin mailing list
[email protected]
https://lists.cinelerra-gg.org/mailman/listinfo/cin

Reply via email to