-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct 'warning'-message if \DisplaySolutions is or is not shown. Fix …
- Loading branch information
Showing
12 changed files
with
59 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
%!TEX root = main.tex | ||
\makeatletter | ||
\def\exb@rememberCC#1{% | ||
\edef\exbtmp@charcode{\the\numexpr#1}% | ||
\expandafter\xdef\csname exb@remcc@\exbtmp@charcode\endcsname{\the\catcode#1}% | ||
} | ||
\def\exb@ignoreCC#1{% | ||
\edef\exbtmp@charcode{\the\numexpr#1} | ||
\exb@rememberCC{\exbtmp@charcode}% | ||
\catcode\exbtmp@charcode=9% | ||
} | ||
\def\exb@resetCC#1{ | ||
\catcode#1=\csname exb@remcc@\the\numexpr#1\endcsname | ||
} | ||
% Ignores spaces that are not inline spaces | ||
% (newlines and tabs) | ||
\def\ignoreOutlineSpaces{% | ||
\exb@ignoreCC{10}% line feed (New line) | ||
\exb@ignoreCC{11}% Vertical Tab | ||
\exb@ignoreCC{12}% Form Feed | ||
\exb@ignoreCC{13}% Carriage Return | ||
} | ||
% Reset space ignore | ||
\def\obeyOutlineSpaces{% | ||
\exb@resetCC{10}% | ||
\exb@resetCC{11}% | ||
\exb@resetCC{12}% | ||
\exb@resetCC{13}\ignorespaces% | ||
} |