blob: c9f78d28711fa550fc79ca7cdd7349538046eb5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
%Here's a little hack, that allow you to get the linenumbers of LaTeX's
%warning messages.
%The output is like:
%
% LaTeX Warning [l.86]: Citation `diggle' on page 91 undefined.
%where [l.86] refers to line 86 in the current file.
%
%You should put the following in a style file:
%----------------------------------------------------------------------
% warn.sty
%
% \string: for french context
\def\@warning#1{\typeout{LaTeX Warning [l.\the\inputlineno]\string: #1.}}
% and the new name:
\def\@latex@warning#1{\typeout{LaTeX Warning [l.\the\inputlineno]\string: #1.}}
%----------------------------------------------------------------------
|