Tagged Questions
16
votes
1answer
193 views
What is the difference between \newenvironment and \newenvironment*?
I vaguely seem to recall reading that \newenvironment* gives better spacing than \newenvironment, but I don't recall any details and I can't seem to find a reference by searching. What is the ...
8
votes
2answers
240 views
How to make an environment star Exercise?
I want to create an environment star Exercise, but I can not. Please help me.
\documentclass{book}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
...
15
votes
1answer
342 views
How to define a starred version of an environment in LaTeX
I am interested in defining a new environment in LaTeX that has a starred version. How is this done?
2
votes
1answer
393 views
Redefining the amsmath equation* environment
For the background to this, see my previous question
I've been trying to make changes in my LaTeX document so that math displays in black and text in red. Thanks to Stefan Kottwitz and Torbjørn T. ...
21
votes
4answers
669 views
Do all starred commands have anything in common?
\section* produces an unnumbered section, align* makes the environment unnumbered, which is comparable in a way. \newcommand* doesn't accept \par in its argument, which is different.
Stefan Kottwitz ...
6
votes
1answer
590 views
Starred equivalent in newenvironment
Let's say I want to use the align-environment in a newenvironment like this:
\newenvironment{mequation}{\align}{\endalign}
This works fine. However, what if I want to use the starred version of ...