在 TexStudios 中,我用 和 标记并引用定理\label
。\ref
在我编译了 latex 文档两次之后,它仍然显示两个问号而不是我的定理编号。我的代码片段:
\newtheorem{thm}{Theorem}
\begin{thm}[Reverse Data Processing Inequality]
\label{rdpi}
$ P $ is more informative than Q, i.e. $ P\supseteq Q $ if and only
if there exists a Markov matrix $ M $ such that $ Q = PM $.
\end{thm}
In Theorem \ref{rdpi}, we know that...
这些是我的包裹:
\documentclass[]{article}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{graphicx}
\graphicspath{ {./Figures/} }
\usepackage{float}
\usepackage{amsthm}
\usepackage{amssymb}
\usepackage{gensymb}
\DeclareMathOperator{\tr}{tr}
\DeclareMathOperator{\KL}{KL}
\usepackage{tikz}
\usepackage{pgfplots}
\usetikzlibrary{arrows}
问题是什么?