Hello,
I suppose it's here I can find some help/answers about KOMA-script, but I don't know if the site is ready yet.
This simple file always gives me arabic numbering on ALL pages. Is this a bug or did I miss something?
\documentclass{scrreprt}
\begin{document}
\pagenumbering{roman}
\chapter{a}
b
\pagenumbering{arabic}
\chapter{a}
b
\end{document}
Here is the log file, with files version (I'm using cygwin):
This is pdfTeXk, Version 3.14159-1.10b (Web2C 7.4.5) (format=pdflatex 2004.2.10) 12 MAY 2004 00:00
%&-line parsing enabled.
**roman.tex
(./roman.tex{/usr/share/texmf/pdftex/config/pdftex.cfg}
LaTeX2e <2001/06/01>
Babel and hyphenation patterns for american, french, german, ngerman, n
ohyphenation, loaded.
(./scrreprt.cls
Document Class: scrreprt 2004/01/07 v2.9p LaTeX2e KOMA document class
(./scrlfile.sty
Package: scrlfile 2004/01/07 v2.9p LaTeX2e KOMA package
Package scrlfile, 2004/01/07 v2.9p LaTeX2e KOMA package
Copyright (C) Markus Kohm
) (/usr/share/texmf/tex/latex/base/size11.clo
File: size11.clo 2001/04/21 v1.4e Standard LaTeX file (size option)
) (./typearea.sty
Package: typearea 2004/01/07 v2.9p LaTeX2e KOMA package
Package typearea, 2004/01/07 v2.9p LaTeX2e KOMA package
Copyright (C) Frank Neukam, 1992-1994
Copyright (C) Markus Kohm, 1994-2002
\ta@bcor=\skip41
\ta@div=\count79
\ta@hblk=\skip42
\ta@vblk=\skip43
\ta@temp=\skip44
Package typearea Info: These are the values describing the layout:
(typearea) DIV = 10
(typearea) BCOR = 0.0pt
(typearea) \paperwidth = 597.50793pt
(typearea) \textwidth = 418.25555pt
(typearea) DIV-departure = -6/100
(typearea) \evensidemargin = 17.3562pt
(typearea) \oddsidemargin = 17.3562pt
(typearea) \paperheight = 845.04694pt
(typearea) \textheight = 595.80026pt
(typearea) \topmargin = -25.16531pt
(typearea) \headheight = 17.0pt
(typearea) \headsep = 20.40001pt
(typearea) \topskip = 11.0pt
(typearea) \footskip = 47.60002pt
(typearea) \baselineskip = 13.6pt
(typearea) on input line 625.
)
\c@part=\count80
\c@chapter=\count81
\c@section=\count82
\c@subsection=\count83
\c@subsubsection=\count84
\c@paragraph=\count85
\c@subparagraph=\count86
\c@figure=\count87
\c@table=\count88
\abovecaptionskip=\skip45
\belowcaptionskip=\skip46
\c@pti@nb@sid@b@x=\box26
\bibindent=\dimen102
) (./roman.aux)
\openout1 = `roman.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 2.
LaTeX Font Info: ... okay on input line 2.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 2.
LaTeX Font Info: ... okay on input line 2.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 2.
LaTeX Font Info: ... okay on input line 2.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 2.
LaTeX Font Info: ... okay on input line 2.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 2.
LaTeX Font Info: ... okay on input line 2.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 2.
LaTeX Font Info: ... okay on input line 2.
Chapter 1.
[1
{/usr/share/texmf/dvips/config/pdftex.map}]
Chapter 2.
[2
] (./roman.aux) )
Here is how much of TeX's memory you used:
686 strings out of 10437
8232 string characters out of 1190233
60766 words of memory out of 1000001
3761 multiletter control sequences out of 10000+50000
4833 words of font info for 18 fonts, out of 500000 for 1000
14 hyphenation exceptions out of 1000
25i,6n,24p,137b,201s stack positions out of 300i,100n,500p,50000b,4000s
13 PDF objects out of 65536
0 named destinations out of 20000
0 words of extra memory for PDF output out of 65536
{/usr/share/texmf/dvips/tetex/f7b6d320.enc}
Output written on roman.pdf (2 pages, 8028 bytes).
pagenumbering
You're changing page numbering before switching to a new page.
Simply add \clearpage before second \pagenumbering or move second \pagenumbering behind \chapter.