自定义编译消息

自定义编译消息

有没有办法创建自定义编译消息?例如

\msg{Compiling Chapter 1}
\input{chapter1.tex}
\msg{Finished chapter compilation}

答案1

由于您在评论中表示不想使用日志,因此在序言中打开一个新文件并写入该文件

\documentclass{article}

\makeatletter
\newwrite\mylog
\immediate\openout\mylog=\jobname.mylog

\newcommand\writelog[1]{%
  \protected@write
   \mylog
   {\let\tmp\write\def\write{\immediate\tmp}}%
   {#1}}
\makeatother


\begin{document}


\writelog{one}

\writelog{two}



\end{document}

将把一和二写入.mylog文件/

相关内容