Tagged Questions
1
vote
1answer
48 views
How do I redefine a custom environment that I have previously defined elsewhere?
I made a custom class for homework assignments and I've defined a solution environment as follows:
\def\qed{\ensuremath{\square}} % <-QED Symbol
\newenvironment{solution}{% <-Solution
...
8
votes
3answers
149 views
Indirectly defining two active characters within an \AtBeginDocument command
I'm trying to define a macro that uses two active characters inside an \AtBeginDocument command.
I can write a macro such as the following using only one active character:
\catcode`\_=13
\begingroup
...
7
votes
2answers
80 views
Define a command so that it is only active within the document environment
I would like to configure a custom command so that it only affects the document environment. Because the command changes a number of catcodes, it has to be included after the begin{document} tag in ...
3
votes
1answer
168 views
float package: get list of all floats defined with \newfloat?
I develop a new package and as one functionality, I would need to get the list of all floats defined using the \newfloat command of the float package.
I could of course modify this command in ...
5
votes
2answers
304 views
Processing the body of an environment multiple times
Dear all, I am new to package writing (LaTeX2e) and to this forum, and I probably read to much of the TeXBook and not enough on LaTeX.
My package works, except that verbatim is verboten. Given a user ...