What are all the percent signs in LaTeX code?

2001-08-28 Thread Steve Litt
In this example from Herbert's myStyles.inc: Preamble \usepackage{ntheorem} \newtheorem{example}{Example} \newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}% symmetric \setlength{\partopsep}{0cm} \item[]} #1

Re: What are all the percent signs in LaTeX code?

2001-08-28 Thread Jose Abilio Oliveira Matos
On Tue, Aug 28, 2001 at 04:37:36PM -0400, Steve Litt wrote: In this example from Herbert's myStyles.inc: Preamble \usepackage{ntheorem} \newtheorem{example}{Example} \newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}%

Re: What are all the percent signs in LaTeX code?

2001-08-28 Thread Dekel Tsur
\newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}% symmetric What are the percent signs for? For ignoring the newlines and indentation spaces. Also, what is the #1? It is used to denote the argument of the macro. For example,

What are all the percent signs in LaTeX code?

2001-08-28 Thread Steve Litt
In this example from Herbert's myStyles.inc: Preamble \usepackage{ntheorem} \newtheorem{example}{Example} \newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}% symmetric \setlength{\partopsep}{0cm} \item[]} #1

Re: What are all the percent signs in LaTeX code?

2001-08-28 Thread Jose Abilio Oliveira Matos
On Tue, Aug 28, 2001 at 04:37:36PM -0400, Steve Litt wrote: In this example from Herbert's myStyles.inc: Preamble \usepackage{ntheorem} \newtheorem{example}{Example} \newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}%

Re: What are all the percent signs in LaTeX code?

2001-08-28 Thread Dekel Tsur
\newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}% symmetric What are the percent signs for? For ignoring the newlines and indentation spaces. Also, what is the #1? It is used to denote the argument of the macro. For example,

What are all the percent signs in LaTeX code?

2001-08-28 Thread Steve Litt
In this example from Herbert's myStyles.inc: Preamble \usepackage{ntheorem} \newtheorem{example}{Example} \newcommand\myExample[1]{ \begin{example}\begin{list}{}{% \setlength{\rightmargin}{\leftmargin}% symmetric \setlength{\partopsep}{0cm} \item[]} #1

Re: What are all the percent signs in LaTeX code?

2001-08-28 Thread Jose Abilio Oliveira Matos
On Tue, Aug 28, 2001 at 04:37:36PM -0400, Steve Litt wrote: > In this example from Herbert's myStyles.inc: > > Preamble > \usepackage{ntheorem} > \newtheorem{example}{Example} > \newcommand\myExample[1]{ > \begin{example}\begin{list}{}{% >

Re: What are all the percent signs in LaTeX code?

2001-08-28 Thread Dekel Tsur
> \newcommand\myExample[1]{ > \begin{example}\begin{list}{}{% >\setlength{\rightmargin}{\leftmargin}% symmetric > What are the percent signs for? For ignoring the newlines and indentation spaces. > Also, what is the #1? It is used to denote the argument of the macro. For