如何解除浮点编号与文档结构的绑定

如何解除浮点编号与文档结构的绑定

我希望看到与标准类中的行为一样,其中浮点数使用全局编号。

\documentclass{scrreport}

\usepackage{polyglossia}
\setdefaultlanguage{russian}
\setotherlanguage{english}
\defaultfontfeatures{Ligatures=TeX}
\setmainfont{Times New Roman}
\setsansfont{Arial}
\setmonofont{Courier New}
\newfontfamily\cyrillicfont{Times New Roman}
\newfontfamily\cyrillicfonttt{Courier New}

\usepackage[dvipsnames]{xcolor}

\begin{document}

\chapter{Chap}

\begin{table}
    \caption{Исходные данные для рассматриваемой задачи}
    \centering
    \label{tabl:1}
    \begin{tabular}{|c|c|c|c|c|}
        \hline
        Номер & ~~~~$X$~~~~ & ~~~~$Y$~~~~ & ~~~~$R$~~~~ & ~~~~Цвет~~~~          \\
        \hline
        1     & 100         & 170         & 30          & \color{red} красный   \\
        2     & 100         & 90          & 60          & \color{yellow} жёлтый \\
        3     & 230         & 250         & 50          & \color{blue} синий    \\
        4     & 130         & 240         & 60          & \color{green} зелёный \\
        5     & 300         & 130         & 30          & \color{green} зелёный \\
        6     & 200         & 150         & 90          & \color{red} красный   \\
        \hline
    \end{tabular}
\end{table}

\end{document}

我得到:

在此处输入图片描述

我想:

在此处输入图片描述

相关内容