Search found 5 matches

by Emonk
Fri Jun 24, 2011 10:12 pm
Forum: Graphics, Figures & Tables
Topic: Tables in letter
Replies: 1
Views: 4040

Tables in letter

Dear,

I'd like to add a table in a letter. How is that possible?

Regards,

Emonk
by Emonk
Sat Apr 09, 2011 11:12 am
Forum: General
Topic: Image in front of text
Replies: 0
Views: 943

Image in front of text

I'm making a mathematics module and in there are some exercises. For those exercises I have the environment: (using the ntheorem package)

\theoremstyle{break}
\theoremprework{\par\noindent\line(1,0){360}}
\theorempostwork{\noindent\line(1,0){360}}
\newtheorem{opdracht}{Opdracht}

I now want to ...
by Emonk
Sat Apr 09, 2011 11:06 am
Forum: General
Topic: Counter for defined environment
Replies: 4
Views: 2271

Re: Counter for defined environment

Yes, and now it's working. THANKS!
by Emonk
Sat Apr 09, 2011 10:40 am
Forum: General
Topic: Counter for defined environment
Replies: 4
Views: 2271

Counter for defined environment

Very much thanks!
I now have added this code:

\usepackage{ntheorem}
\theoremstyle{break}
\theoremprework{\hrule}
\theorempostwork{\hrule}
\newtheorem{exercise2}{Exercise}

But I get the error:

! LaTeX Error: Command \theoremstyle already defined.
Or name \end... illegal, see p.192 of the ...
by Emonk
Sat Apr 09, 2011 10:04 am
Forum: General
Topic: Counter for defined environment
Replies: 4
Views: 2271

Counter for defined environment

Hi all,

I have an environment in my LaTeX code:
\newenvironment{exercise}[1]
{\par \noindent \newline \newline \line(1,0){360} \\ \textbf{Exercise #1} \begin{itshape}\\}
{\\ \end{itshape} \line(1,0){360}}

I can call the environment by:

\begin{exercise}{exercise_number}Contents\end{exercise ...