I changed a command in one of the sty files of a template. Sadly using this command still gives the old result. I am running MikTex 2.9 and ran
initex --update-fndb
Still there was no change. I tried removing the template from the root directories and addning again but it still did not change anything. Also rebooting had no effect.
Is there some kind of cache I need to clear for my change to take effect?
Edit:
Here is the command I changed:
from
\def\referee#1#2{\@ifnextchar[{\referee@three{#1}{#2}}{\referee@two{#1}{#2}}}
\def\referee@two#1#2{
\gdef\referee{Supervisor 1: #1\\Supervisor 2: #2}
}
to
\def\referee#1#2{\@ifnextchar[{\referee@three{#1}{#2}}{\referee@two{#1}{#2}}}
\def\referee@two#1#2{
\gdef\referee{Supervisor: #1\\Contact for exercise: #2}
}
.logfile for the location of the file that TeX loads. Needless to say that it is generally considered bad practice to modify system-installed.styfiles of packages released on CTAN or elsewhere. – moewe Feb 18 '19 at 10:05styfile but in my case there is no other option because my supervisor wants the change for my report. His request differs from the official university template so I need to change it. However, I don't think there is another version of the file since the compliation does not work due to anot founderror if I rename the file. – TomBombadil Feb 18 '19 at 10:10\refereehas another branch involving\referee@three. If that one is taken and you did not modify it, you may not see a difference. (I'd like to add that this particular definition of\refereelooks a bit risky as invoking\referee{A}{B}changes the definition of\refereeso that subsequent invocations of the same code yield wildly different results.) – moewe Feb 18 '19 at 10:55\refereeat all and the output you are seeing is caused by a different command or setting. – moewe Feb 18 '19 at 10:55