> Detlev Humann wrote:
> 
> Hi!
> Iīm writing in book-class (koma-script) and I use \appendix to mark my
> apendix-section.
> 
> 1. Problem: What I donīt like is the default numbering of tables and
> figures in captions, LoT and LoF (eg. "Table 2.3."). So I changed it
> with \renewcommand{\thetable}{\arabic{table}} an I got now e.g. "Table
> 9." (without the chapter-counter in front). The problem is that the
> counter of tables and figures in the appendix is reset, so that there
> are two identically named "Table(s) 9" (in the text-part and in the
> appendix). Therefore I tried out Herbertīs hint
> (www.educat.hu-berlin.de/~voss/lyx/counter/counter.html) and put
> \@removefromreset{table}{chapter} in the Latex preamble but I got the
> error message "undefined control sequence". Putting this command in
> the text I got the error message "missing $ inserted". What's going
> wrong?

sorry, but you need package remreset
ftp://ftp.dante.de/tex-archive/macros/latex/contrib/supported/carlisle/remreset.sty
(part of the carlisle-packages)
or write in latex preamble

\def\@removefromreset#1#2{{%
  \expandafter\let\csname c@#1\endcsname\@removefromreset
  \def\@elt##1{%
    \expandafter\ifx\csname c@##1\endcsname\@removefromreset
    \else
      \noexpand\@elt{##1}%
    \fi}%
  \expandafter\xdef\csname cl@#2\endcsname{%
    \csname cl@#2\endcsname}}}

> 2. Problem: I'd like to get rid of  the point after the caption. E.g.
> Iīd like to have "Table 9" instead of "Table 9.". How can I achieve

\renewcommand*\tableformat   {\tablename~\thetable%
  \if@altsecnumformat\fi%
}


Herbert

-- 
http://www.educat.hu-berlin.de/~voss/lyx/

Reply via email to