\mathcal 无法正常工作

\mathcal 无法正常工作

我正在尝试使用\mathcal,它适用于下标,但不适用于主字母。

\begin{table}[h]
    \centering
    \caption{Data integration framework}
    \label{tab:data_integration}
\begin{tabular}{| l | c | c |}
    \toprule
        & Language & Alphabet \\
    \midrule
    Global schema & \[\mathcal{L}_{\mathcal{G}}\] & \[\mathchal{A}_\mathcal{G}\] \\
    Source schema & \[\mathcal{L}_{\mathcal{S}}\] & \[\mathcal{A}_{\mathcal{S}}\] \\
    \hline
    Query \[\mathcal{q}_{\mathcal{S}}\] & \[\mathcal{L}_{\mathcal{M},\mathcal{S}}\] & \[\mathcal{A}_{\mathcal{S}}\] \\
    Query \[\mathcal{q}_{\mathcal{G}}\] & \[\mathcal{L}_{\mathcal{M},\mathcal{G} \] & \[\mathcal{A}_{\mathcal{G}}\] \\
    \bottomrule
    \end{tabular}
\end{table}

我正在使用pdflatex,这是我得到的错误

! LaTeX Error: \mathcal allowed only in math mode.

See the LaTeX manual or LaTeX Companion for explanation.
Type  H <return>  for immediate help.
 ...                                              
                                                  
l.34    Global schema & \[\mathcal
                                {L}_{\mathcal{G}}\] & \[\mathcal{A}_\mathcal...

? 
! Missing $ inserted.
<inserted text> 
                $
l.34    Global schema & \[\mathcal{L}_
                                    {\mathcal{G}}\] & \[\mathcal{A}_\mathcal...

? x

以下是完整序言

\documentclass[12pt]{report}

\usepackage[utf8]{inputenc}
\PassOptionsToPackage{
        natbib=true,
    style=authoryear-comp,
        backend=biber,
        url=false,
        doi=false,
        isbn=false,
        eprint=false,
            }{biblatex}
\usepackage[backend=biber,bibencoding=utf8]{biblatex}
\addbibresource{/home/enrico/Università/uni_bib.bib}
\usepackage[bottom]{footmisc}
\usepackage[inline]{enumitem}
\usepackage{hyperref}
\usepackage{array}
\usepackage{svg}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{tabularx}
\usepackage{booktabs}
\usepackage[T1]{fontenc}
\usepackage{blindtext}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage[final]{microtype}
\usepackage{setspace}
\onehalfspacing

%%%This is to have the titles of the chapters without the number%%%
\usepackage[raggedright,pagestyles]{titlesec}

\newpagestyle{main}{
  \sethead[\thepage][][\chaptertitle]{\chaptertitle}{}{\thepage}
  \headrule
}
\pagestyle{main}

\titleformat{\chapter}{\normalfont\huge\bfseries}{}{0pt}{\Huge}

我不明白我的使用有什么问题\[ \]

@quark67 在评论中回复。在这种情况下,我需要使用$...$而不是\[ \]

答案1

这个错误有点微妙。该命令\[做了一些工作,最终发出$$启动显示数学模式的命令(请注意,$$永远不要在 LaTeX 环境中使用document,但显示数学模式当然会在内部使用它)。

但是,在你的情况下 会做什么呢?类型为 或(非)$$的对齐单元格在 中处理lcrp受限水平模式其中不允许显示数学模式,并且根据规则,$$只需进入和退出内联数学模式。因此 TeX不是在数学模式下,当\mathcal发现时。因此(诚然神秘)

! LaTeX Error: \mathcal allowed only in math mode.

错误消息。唉,也许可以捕获\[在类型为 的表格单元格中使用 的错误lc或者r当 TeX 处于受限水平模式时,但它目前尚未实现(我也没有看到任何真正的理由)。

\(...\)对于$...$这项工作,请使用内联数学模式。

还请注意,\mathcal{q}您现有的字体设置不会产生合理的输出。

相关内容