General ⇒ switching languages in Texniccenter
switching languages in Texniccenter
If I go Project => Properties => Project language, this will not (of course?) change the language used by the speller checker.
I need to go Tools => Options => Spelling => Language.
However, this requires restarting Texniccenter (TC) and, besides, I need to manually change the corresponding personal dictionary, which is language-dependent.
I tried a way around: installed two copies of TC in distinct directories. The plan was to make one copy the "English" version and the other one my native language. However, TC stores the profile in the registry, and no matter which copy I invoke, I always get the last setting.
Any suggestions?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
switching languages in Texniccenter
However, I have found an acceptable solution for me: I created a small js script to replace the corresponding TeXnicCenter settings in the registry and afterwards start TeXnicCenter:
Code: Select all
var objShell = WScript.CreateObject("WScript.Shell")
objShell.Run("regedit.exe /s TeXnicCenter-German.reg", 0, true)
objShell.Run("TeXnicCenter.exe", 0)Code: Select all
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\ToolsCenter\TeXnicCenterNT\Settings\Language]
"Language"="de"
"Dialect"="DE"Alex