Skip to content

Commit

Permalink
#35 escape_tex() in warning
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Jun 30, 2023
1 parent 7355a7c commit a45c805
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bibcop.pl
Expand Up @@ -795,7 +795,7 @@ sub info {
sub warning {
my ($txt) = @_;
if (exists $args{'--latex'}) {
print "\\PackageWarningNoLine{bibcop}{$txt}\n";
print "\\PackageWarningNoLine{bibcop}{" . escape_tex($txt) . "}\n";
} else {
print $txt . "\n";
}
Expand Down
6 changes: 3 additions & 3 deletions testfiles/bibtex.luatex.tlg
Expand Up @@ -4,9 +4,9 @@ LaTeX Warning: Citation `dijkstra1968letters' on page 1 undefined on input line
runsystem((perl ./bibcop.pl --verbose --latex 'main.bib') > iexec.tmp 2>&1; /bin/echo -n $?% >iexec.ret)...executed
(iexec.tmp bibcop: 1 entries found in main.bib
bibcop: Checking dijkstra1968letters (no.0)...
Package bibcop Warning: All minor words in the 'title' must be lower-cased, while the 6th word 'To' is not, in the 'dijkstra1968letters' entry.
Package bibcop Warning: A mandatory 'doi' tag for '@article' is missing among (author, journal, number, pages, publisher, title, volume, year), in the 'dijkstra1968letters' entry.
Package bibcop Warning: The 'title' must be wrapped in double curled brackets, in the 'dijkstra1968letters' entry.
Package bibcop Warning: All minor words in the ?title? must be lower-cased? while the 6th word ?To? is not? in the ?dijkstra1968letters? entry.
Package bibcop Warning: A mandatory ?doi? tag for ??article? is missing among (author? journal? number? pages? publisher? title? volume? year)? in the ?dijkstra1968letters? entry.
Package bibcop Warning: The ?title? must be wrapped in double curled brackets? in the ?dijkstra1968letters? entry.
bibcop: 3 problem(s) found
) iexec: The content of 'iexec.tmp' was included into the document
runsystem(rm iexec.tmp)...executed
Expand Down
6 changes: 3 additions & 3 deletions testfiles/bibtex.tlg
Expand Up @@ -4,9 +4,9 @@ LaTeX Warning: Citation `dijkstra1968letters' on page 1 undefined on input line
runsystem((perl ./bibcop.pl --verbose --latex 'main.bib') > iexec.tmp 2>&1; /bin/echo -n $?% >iexec.ret)...executed.
(iexec.tmp bibcop: 1 entries found in main.bib
bibcop: Checking dijkstra1968letters (no.0)...
Package bibcop Warning: All minor words in the 'title' must be lower-cased, while the 6th word 'To' is not, in the 'dijkstra1968letters' entry.
Package bibcop Warning: A mandatory 'doi' tag for '@article' is missing among (author, journal, number, pages, publisher, title, volume, year), in the 'dijkstra1968letters' entry.
Package bibcop Warning: The 'title' must be wrapped in double curled brackets, in the 'dijkstra1968letters' entry.
Package bibcop Warning: All minor words in the ?title? must be lower-cased? while the 6th word ?To? is not? in the ?dijkstra1968letters? entry.
Package bibcop Warning: A mandatory ?doi? tag for ??article? is missing among (author? journal? number? pages? publisher? title? volume? year)? in the ?dijkstra1968letters? entry.
Package bibcop Warning: The ?title? must be wrapped in double curled brackets? in the ?dijkstra1968letters? entry.
bibcop: 3 problem(s) found
) iexec: The content of 'iexec.tmp' was included into the document
runsystem(rm iexec.tmp)...executed.
Expand Down
6 changes: 3 additions & 3 deletions testfiles/bibtex.xetex.tlg
Expand Up @@ -4,9 +4,9 @@ LaTeX Warning: Citation `dijkstra1968letters' on page 1 undefined on input line
runsystem((perl ./bibcop.pl --verbose --latex 'main.bib') > iexec.tmp 2>&1; /bin/echo -n $?% >iexec.ret)...executed.
(iexec.tmp bibcop: 1 entries found in main.bib
bibcop: Checking dijkstra1968letters (no.0)...
Package bibcop Warning: All minor words in the 'title' must be lower-cased, while the 6th word 'To' is not, in the 'dijkstra1968letters' entry.
Package bibcop Warning: A mandatory 'doi' tag for '@article' is missing among (author, journal, number, pages, publisher, title, volume, year), in the 'dijkstra1968letters' entry.
Package bibcop Warning: The 'title' must be wrapped in double curled brackets, in the 'dijkstra1968letters' entry.
Package bibcop Warning: All minor words in the ?title? must be lower-cased? while the 6th word ?To? is not? in the ?dijkstra1968letters? entry.
Package bibcop Warning: A mandatory ?doi? tag for ??article? is missing among (author? journal? number? pages? publisher? title? volume? year)? in the ?dijkstra1968letters? entry.
Package bibcop Warning: The ?title? must be wrapped in double curled brackets? in the ?dijkstra1968letters? entry.
bibcop: 3 problem(s) found
) iexec: The content of 'iexec.tmp' was included into the document
runsystem(rm iexec.tmp)...executed.
Expand Down

0 comments on commit a45c805

Please sign in to comment.