Spellcheck in Latex Files
Posted on Thu 10 August 2017 in tech
I use the following snippet to spellcheck latex files:
#!/bin/bash
hunspell -d en_GB -t $1
Put it into a spellcheck.sh file. Then ./spellcheck.sh myfile.tex
.
Posted on Thu 10 August 2017 in tech
I use the following snippet to spellcheck latex files:
#!/bin/bash
hunspell -d en_GB -t $1
Put it into a spellcheck.sh file. Then ./spellcheck.sh myfile.tex
.