I am writing letters of application to various companies and to speed up the process I have few macros defined in my .tex
file i.e.
\def\company{ Company name ABCDEF }
I know that one can do
\typeout{\company}
and this will echo the macro to the .log
file and to the console output, but somehow this didn't produce any output to the terminal.
For "compiling" the .tex
file I use pdflatex
Since it is much easier I would like to see the output in my compile console. I usually use kile (linux) and TeXnicCenter (windows). Both of them produce output on the screen and it would be very helpful to see the content of the macros. It would be even greater if those messages are in red color.
Thank you for your help
\show\mymacroname
?not work
mean? Is your\def\...
in a group and are you trying to access\typeout{\company}
outside of the group?\show
is that it stops the compilation