I have the following question: My work consists of 2 parts. If I include a figure or table in one of the parts, then this table is numbered without the part number, e.g. in the 2nd part the first table is numbered "1.1". But if I want to refer to this table, then the part number is also indicated - it says "see table 2.1.1". How do I make it that the part number is also shown in the caption? Here is my MWE:
...
\documentclass[open=any,12pt,oneside,headings=standardclasses,chapterprefix=false,numbers=noenddot]{scrbook} %headsepline obsolete: pointlessnumbers
\let\Tiny=\tiny
\usepackage{cleveref}
%%%%%\RedeclareSectionCommand[counterwithin=part]{chapter}
\renewcommand*{\thepart}{\arabic{part}}
\renewcommand*{\thechapter}{\arabic{chapter}}
%%%%%\renewcommand{\partmark}[1]{\markboth{#1}{}}
\makeatletter
\def\p@chapter{\thepart.}% Präfix für chapter-Labels
\def\p@section{\p@chapter}
\def\p@subsection{\p@section}
\def\p@subsubsection{\p@subsection}
\def\p@figure{\p@chapter}
\def\p@table{\p@chapter}
\makeatother
\usepackage[margin=10pt,font=small,labelfont=bf,belowskip=4pt,justification=centering]{caption}
%\captionsetup[figure]{labelfont=bf,textfont=it}
\captionsetup{justification = raggedright,
singlelinecheck = false}
% Dokumentenanfang
\begin{document}
\part{\thispagestyle{empty} {Weg}}
%%%%%%%%%%%%%%
\label{ErsterTeil}
\setcounter{section}{1}
\makeatletter
\@addtoreset{section}{part}
\makeatother
Hi (s. \ref{ma}), have a looak at table \ref{Briefkorr.I}.
\part{\thispagestyle{empty} {Übersetzung}}
\label{ZweiterTeil}
\setcounter{section}{1}
\makeatletter
\@addtoreset{section}{part}
\makeatother
\chapter{fff}
ddfdf\label{ma}\
\begin{table}
\begin{tabular}[t]{lrr@{.}l}
Position 1 & DM & 5 & 49\
Position 2 & DM & 10 & 95\
\end{tabular}
\caption{Korrespondenz}\label{Briefkorr.I}
\end{table}
\end{document}
...


\renewcommand{\thetable}{\arabic{table}}instead. – Simon Dispa Sep 17 '22 at 13:45\counterwithout{table}{chapter}to suppress the reset to 1 of the table counter at the start of a chapter – Simon Dispa Sep 18 '22 at 21:16