如何为表格添加标签?尽管一切正常,但我还是收到“缺少 $ 符号插入”错误

如何为表格添加标签?尽管一切正常,但我还是收到“缺少 $ 符号插入”错误

这是我无法标记的表的示例代码:

    \documentclass[a4paper, 
        pointlessnumbers, 
        %draft,
        parskip=half,
        automark
            ]{scrartcl}
    
    \setlength{\parindent}{0pt} 
    
    \usepackage[a4paper, left=2.2cm, right=2.2cm, top=2.5cm, bottom=2.5cm,]{geometry}
    \usepackage{scrpage2}
    \clearscrheadfoot
    \pagestyle{scrheadings}
    
    \usepackage[ngerman]{babel}
    
    
    \usepackage[pdftex]{graphicx,color}
    
    \usepackage[utf8]{inputenc}
    
    \usepackage{amssymb,amsmath,amsthm, amsfonts} 
    \usepackage{latexsym}
    \usepackage[decimalsymbol=comma]{siunitx} 
    
    
    \usepackage{booktabs}
    \usepackage{tabulary}
    \usepackage[dvipsnames]{xcolor} 
    \usepackage[centerlast,small,sc]{caption}
    \usepackage{here}
    \usepackage{siunitx}
    
    \usepackage{titling}
    
    \usepackage{subfigure}
    
    
    \usepackage{hyperref}
    
    
        \renewcommand{\i}{\mathrm{i}}
        \newcommand{\e}{\mathrm{e}}
        \newcommand{\diff}{\mathrm{d}}
        \newcommand{\figref}[1]{Abb. \ref{#1}} 
    
        \newcommand{\ImNew}{\operatorname{Im}}
        \newcommand{\ReNew}{\operatorname{Re}}
        
        \newcommand{\xdot}{\! \, \cdot \! \,}
        \newcommand{\funof}[1]{{\color{gray}(#1)}}
        
    %Titelseite
    \title{Blockpraktikum 1 \\ SC Optische Aktivität und Saccharimetrie}
    \author{...}
    \date{Versuchsdurchführung}
    
    %Dokument
    \begin{document}
    \setcounter{page}{0}
    \maketitle
    \thispagestyle{empty} % Keine Seitenzahl auf Titelseite
    \ofoot{\upshape\thepage}
    
    \clearpage
    %Inhaltsverzeichnis
    %\thispagestyle{empty}
    \tableofcontents
    
    \clearpage
    %Hauptdokument
    \pagenumbering{arabic}
    \ihead{\upshape\scriptsize \leftmark}
    \ohead{\upshape\scriptsize \thetitle}
    %\ifoot{\upshape \scriptsize}
    \ofoot{\upshape\thepage}
    
Durch die Drehrichtung lässt sich feststellen ob es sich um Glucose oder Fructose handelt
In der Tabelle $\ref{Drehwinkel und Konzentrationsbestimmung dreier unbekannter Proben}$ und Konzentrationsbestimmung dreier unbekannter Proben wurde mit S. die Zuckersorte und mit F. und G. jeweils Fructose beziehungsweise Glucose bezeichnet.
\begin{table} [h]
    \centering
    \begin{tabular}{|c|c|c|c|c|c|c|}
    \hline 
    Probe & S. &$\alpha (1.)$ in $^\circ$ & $\alpha (2.)$ in $[^\circ]$ & $\alpha (3.)$ in $[^\circ]$ & $\overline{\alpha}$ in $[^\circ]$ & c \\ 
    \hline 
    X1 & F. & 0,1 & -3,2 &-2,8 & $-2,0 \pm 2,1_{zuf} \pm 0,05_{sys}$ & $0,0110  \pm 0,01_{zuf} \pm 0,0032_{sys}$ \\ 
    \hline 
    X2 & F. & -4,8 & -5,9 & -5,8 & $-5,5 \pm 0.7_{zuf} \pm 0,05_{sys}$ & $0,0309 \pm 0,004_{zuf} \pm 0,0032_{sys}$ \\ 
    \hline 
    X3 & G. & 9,6 & 9,4 & 10,5  & $9,8 \pm 0,7_{zuf} \pm 0,05_{sys}$ & $0,0943  \pm 0,007_{zuf} \pm 0,0032_{sys}$ \\ 
    \hline 
    \end{tabular} 
    \label{Drehwinkel und Konzentrationsbestimmung dreier unbekannter Proben}
    \caption{Drehwinkel und Konzentrationsbestimmung dreier unbekannter Proben}
\end{table}
    \end{document}

相关内容