Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
2k views

\newcommand / \newenvironment - optional parameters

I'm experimenting with my own commands and environments and now I'm facing those problems: How to create command \foo{parameter}[optional] or environment called \begin{bar}{parameter}[optional]? How ...
4
votes
2answers
2k views

Problem with creating a newenvironment in LaTeX

I am trying to implement this new environment in LaTeX: \newenvironment{javacode}[2] {\begin{lstlisting}[language=java, label=#1, caption=#2]} {\end{lstlisting}} And then use it like such: ...
2
votes
2answers
208 views

How to create a selfdefined table-environment with the caption at the end of the table with LaTeX?

I have a custom table-environment defined with \newenvironment. I have a caption in this environment, but I want to have it at the end. My environment looks (a little simplified) like this: ...
1
vote
1answer
453 views

LaTeX: \newenvironment with only one optional arg (and no mandatory)

I try to set a new environment within a class that would take only an optional argument, or none. This would be used like this : \begin{myEnv} --> "Label:" or ...
1
vote
2answers
1k views

latex newenvironment label

I have the following newenvironment command: \newcounter{algoctr}[chapter] \setcounter{algoctr}{0} \newenvironment{algo}[1] { \refstepcounter{algoctr}\vspace{0.2cm}\noindent{\bf Algorithm ...
0
votes
1answer
304 views

Creating a newenvironment that contains nested environments

I have an issue in latex with the equation spacing. The document must be double spaced, but if the equations are double spaced there is too much vertical white space, especially in the matrices and ...