I would like to replace a part number by an abbreviation. For exemple, concerning the part algebra of the following MWE, I would like that the first chapter be called ALG.1 instead of I.1 (and the same for all the chapters in the considered part).
The abbreviation ALG could be ideally an optional argument of the \part command.
MWE :
\documentclass[oneside]{scrbook}
%reset chapter for each part
\makeatletter
\@addtoreset{chapter}{part}
\makeatother
\renewcommand{\thechapter}{\thepart\arabic{chapter}}
\begin{document}
\part{Algebra} %\part[ALG]{Algebra} ?
\chapter{Chap 1}
\part{Analysis}
\chapter{Chap 1}
\part{Geometry}
\chapter{Chap 1}
\end{document}


