SYSU-SCC/sysu-thesis

符号说明页面设计

Dark-98 opened this issue · 2 comments

你好,因为我论文符号较多,想在目录后面单独设计一页作为符号说明页面,请问如何操作嘞

在导言区添加

\usepackage{expl3}
\ExplSyntaxOn
\NewDocumentEnvironment { notation } { O { l p { 7.5 cm } } }
{
  \__gdut_notation_begin:
  \group_begin: \zihao{5}
    \__gdut_notation_long_table_setup:
    \longtable {#1}
}
{
    \endlongtable
  \group_end:
}
\cs_new_protected:Npn \__gdut_notation_begin:
{
  \chapter{物理量名称及符号表}
}
\cs_new_protected:Npn \__gdut_notation_long_table_setup:
{
  \dim_set_eq:NN \LTpre  \c_zero_dim
  \dim_set_eq:NN \LTpost \c_zero_dim
}
\ExplSyntaxOff

然后在目录后用

\begin{notation}
  $E$ & 符号 \\
  $E$ & 符号
\end{notation}

收到 谢谢