The complexity package uses the \typeout command to print a banner when the package is loaded.
What is the correct way to disable the banner (other than editing the source code of the package)?
MWE:
\documentclass{article}
\usepackage{complexity}
\begin{document}$\P = \NP$\end{document}
Compile with "pdflatex". During the compilation, you will see something like this:
+----------------------------------------------+
complexity LaTeX package
version:
author: Chris Bourke (cbourke@cse.unl.edu)
+----------------------------------------------+
\typeoutthat are actually executed during the package load, any\typeoutthat are embedded in commands defined by the package will execute the restored normal definition when they are run. It would be possible for a package to save the definition of\typeoutactive when it was loaded and use that saved definition (rather than\typeoutitself) in commands, but that is unlikely in general and does not happen in the case of this package (I just looked:-) – David Carlisle Sep 30 '12 at 20:47