Skip to content

Instantly share code, notes, and snippets.

@brnhffmnn
Created November 8, 2017 20:44
Show Gist options
  • Save brnhffmnn/f40d42d42c33e9e440d5551e368ff213 to your computer and use it in GitHub Desktop.
Save brnhffmnn/f40d42d42c33e9e440d5551e368ff213 to your computer and use it in GitHub Desktop.
Latex Glossaries with TeXnicCenter Output profile
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<txcop:outputProfiles version="1" xmlns:txcop="http://schemas.ToolsCenter.org/TeXnicCenter/OutputProfiles.xsd">
<outputProfileList>
<outputProfile name="LaTeX &#8680; PDF (Glossary+Acronym)" stopOnLatexError="false">
<texCommand execute="true" path="pdflatex.exe" arguments="-interaction=nonstopmode -max-print-line=120 &quot;%pm&quot;"/>
<bibTexCommand execute="true" path="bibtex.exe" arguments="&quot;%bm&quot;"/>
<makeIndexCommand execute="true" path="makeindex.exe" arguments="&quot;%bm&quot;"/>
<postProcessors>
<processor name="makeglossaries #1" path="makeindex.exe" arguments="-s &quot;%bm&quot;.ist -t &quot;%bm&quot;.glg -o &quot;%bm&quot;.gls &quot;%bm&quot;.glo" inputFile="" outputFile=""/>
<processor name="makeacronyms #1" path="makeindex.exe" arguments="-s &quot;%bm&quot;.ist -t &quot;%bm&quot;.alg -o &quot;%bm&quot;.acr &quot;%bm&quot;.acn" inputFile="" outputFile=""/>
<processor name="pdflatex #2" path="pdflatex.exe" arguments="-interaction=nonstopmode -max-print-line=120 &quot;%pm&quot;" inputFile="" outputFile=""/>
<processor name="makeglossaries #2" path="makeindex.exe" arguments="-s &quot;%bm&quot;.ist -t &quot;%bm&quot;.glg -o &quot;%bm&quot;.gls &quot;%bm&quot;.glo" inputFile="" outputFile=""/>
<processor name="makeacronyms #2" path="makeindex.exe" arguments="-s &quot;%bm&quot;.ist -t &quot;%bm&quot;.alg -o &quot;%bm&quot;.acr &quot;%bm&quot;.acn" inputFile="" outputFile=""/>
<processor name="pdflatex #3" path="pdflatex.exe" arguments="-interaction=nonstopmode -max-print-line=120 &quot;%pm&quot;" inputFile="" outputFile=""/>
</postProcessors>
<viewer path="Acrobat.exe" closeBeforeCompilation="true">
<viewProjectCommand type="dde">
<commandLineCommand path="" arguments=""/>
<ddeCommand path="Acrobat.exe" server="acroview" topic="control" command="[DocOpen(&quot;%bm.pdf&quot;)][FileOpen(&quot;%bm.pdf&quot;)]"/>
</viewProjectCommand>
<viewCurrentFileCommand type="dde">
<commandLineCommand path="" arguments=""/>
<ddeCommand path="Acrobat.exe" server="acroview" topic="control" command="[DocOpen(&quot;%bm.pdf&quot;)][FileOpen(&quot;%bm.pdf&quot;)]"/>
</viewCurrentFileCommand>
<viewCloseCommand type="dde">
<commandLineCommand path="" arguments=""/>
<ddeCommand path="" server="acroview" topic="control" command="[DocClose(&quot;%bm.pdf&quot;)]"/>
</viewCloseCommand>
</viewer>
</outputProfile>
</outputProfileList>
</txcop:outputProfiles>
@brnhffmnn
Copy link
Author

Retrofit-Gist of my original output profile posted back in 2011 on my blog.
http://brianhoffmann.de/journal/thesis/2011-08-01/latex-glossaries-with-texniccenter/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment