我正在尝试使用本文提供的乳胶代码为我的论文生成一个符号列表关联
我进行了完全复制,但“符号列表”部分从未出现...有一天可以帮我解决这个问题吗?
您可以在下面找到一个最小工作示例,以及 pdf 文件的屏幕截图
\documentclass[english, reqno, 9pt]{amsart}
\usepackage{geometry} % See geometry.pdf to learn the layout options. There are lots.
\usepackage{amssymb,amsmath,amsthm,amsfonts,color}
\usepackage{mathrsfs,dsfont, comment,mathscinet}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{mathtools}
\usepackage{babel}
%----------------------------------------------------------------------------------------%
\usepackage{glossaries}
\makeglossaries
\newglossaryentry{lengthtree}%
{%
name={$L_t$},
text={L_t},
description={description here},
sort={L}
}
\title{Test}
\setlength{\parindent}{0cm}
\begin{document}
In line: $\gls{lengthtree}$. In math mode:
\[
\gls{lengthtree}
\]
\printglossary[title={List of Symbols}]
\end{document}
所以正如您所看到的,没有“符号列表”部分...请指教!