如何包含符号列表?

如何包含符号列表?

在此处输入图片描述

是否有一种特殊的方法、一种标准的方法在 LaTeX 文档中包含符号列表:

\documentclass{article}
\usepackage{amsmath}
\usepackage{algorithm}
\usepackage[]{algpseudocode}

我有几个可能有歧义的符号,例如,这些\odot符号需要定义。

我的意思是您可能在线性代数书的开头看到过这样的内容:$\odot$– Hadamard 积,...

答案1

一种快速、简单且(非常)肮脏的方法。

\documentclass{book}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\chapter*{List of Symbols}
\begin{tabular}{ll}
    $+$ & Addition Operator\\
    $-$ & Subtraction Operator\\
    $\times$ & Multiplication Operator\\
    $\sqrt{x}$ & Square Root of $x$\\
    $\odot$ & Foo Bar\\
    $\Leftrightarrow$ & Bar Foo
\end{tabular}
\chapter{Check chapter}
\lipsum[1]
\chapter{Check chapter}
\section{Check section}
\end{document}

在此处输入图片描述

相关内容