Search found 8 matches

by Kai
Thu Nov 20, 2008 6:17 pm
Forum: Document Classes
Topic: [Solved]Listings and eis_msc_thesis.cls
Replies: 9
Views: 8962

Re: Listings

Thank you guys!
by Kai
Wed Nov 19, 2008 11:48 pm
Forum: Document Classes
Topic: [Solved]Listings and eis_msc_thesis.cls
Replies: 9
Views: 8962

[Solved]Listings and eis_msc_thesis.cls

The .cls file can be found here:
http://rafb.net/p/ev58qt34.html

A minimal Latex file is:

\documentclass{eis_msc_thesis} % English

\usepackage{listings}
\lstset{
language=C % choose the language of the code}
}
\begin{document}
\begin{lstlisting}
for(;;)
{
printf("hi there.");
}
\end{lstlisting ...
by Kai
Wed Nov 19, 2008 8:14 pm
Forum: Document Classes
Topic: [Solved]Listings and eis_msc_thesis.cls
Replies: 9
Views: 8962

[Solved]Listings and eis_msc_thesis.cls

Hi,

I am using the eis_msc_thesis.cls template to write my thesis.

The problem is, that I cannot use lstlistings in my code;

\begin{lstlisting}
for(;;)
{
printf("hi there.");
}
\end{lstlisting}

Error output is:
1:
! Missing number. treated as zero.
<to be read again> \relax
1.9 \begin ...
by Kai
Fri Sep 26, 2008 4:04 am
Forum: General
Topic: Problems with \listoftables
Replies: 10
Views: 10035

Re: Problems with \listoftables

Hi,

that does not work for me; any other ideas?
(I get the same results; even if I overwrite it with your code)

edit:

Works fine; just forgot to mention the scope... sry bout that!
by Kai
Mon Sep 22, 2008 2:12 am
Forum: General
Topic: Problems with \listoftables
Replies: 10
Views: 10035

Re: Problems with \listoftables

the package tocloft did help me;

is there a similar package for nomencl?



Kai
by Kai
Sun Sep 21, 2008 2:12 am
Forum: General
Topic: Problems with \listoftables
Replies: 10
Views: 10035

Re: Problems with \listoftables

What I do is:

\makeappendix{List of Abbreviations}{List of Abbreviations\label{loa2}}
\input{Acronyms/acro.tex}

acro.tex contains:
\abbrev{WiFi}{Wireless Network}
\printnomenclature

\makeappendix is defined as:

\newcommand{\makeappendix}[2]
{
% First argument is an abbreviated version
% of the ...
by Kai
Sun Sep 21, 2008 1:56 am
Forum: General
Topic: Problems with \listoftables
Replies: 10
Views: 10035

Re: Problems with \listoftables

Hi Stefan,

ty for the warm welcome.

I'm using the eis_msc_thesis template;
\documentclass[12pt,a4paper,openright,final,oneside,en]{eis_msc_thesis}

edit: the class itself is "book"
by Kai
Sun Sep 21, 2008 1:33 am
Forum: General
Topic: Problems with \listoftables
Replies: 10
Views: 10035

Problems with \listoftables

Hi,

I have a problem regarding \printnomenclature, \listoffigures and \listoftables:

How do I say Latex just to print the list?
(All three commands print their own page header and do a \newpage in the beginning; I do not want that)


Any ideas?



Thanks,
Kai