Tagged Questions
6
votes
1answer
159 views
Is there a \renewtheorem equivalent of \renewcommand, using amsthm and not ntheorem?
Suppose I have a theorem that is defined a certain way, as follows.
\newtheorem*{mytheorem}{Foo}
And I want to redefine it another way further down in my document, as below.
...
3
votes
1answer
61 views
How can I define a new environment which limits the scope of \newtheorem commands?
I am attempting to make an environment out of the command given in one of the answers to this question: Customizing theorem name.
\documentclass{article}
\usepackage{amsmath}
\usepackage{amsthm}
...
5
votes
3answers
747 views
Defining rules for line breaks in \newcommand
Thanks to the help of this answer, I've defined a command for creating a blank line:
\newcommand{\blank}[1]{\rule{#1}{0.4pt}}
However, because this is a user-defined command, LaTeX doesn't seem to ...