论文的符号、运算符和缩写部分看起来正式吗?

论文的符号、运算符和缩写部分看起来正式吗?

我有 3 个表格环境,分别用于符号、运算符和缩写,每个表格环境都有自己的页面。此外,每行之间的间距太窄,一些数学符号实际上相互交叉,例如下面的括号。长句子超出了页面。我正在使用模板 CLS 文件我的大学可能会干扰一些事情,但我会尽可能笼统地回答。

图 1 页面内容看起来太不正式,图 2 问题示例

在此处输入图片描述 在此处输入图片描述

如何让图 2 的数学更像 LaTeX?如何让图 1 中的数学公式在页面中显示得更好?

MWE 演示了符号、运算符和缩写的三个部分

\documentclass[english]{article}
\usepackage{amsmath}

\section{Symbols and abbreviations}
%
\subsection*{Symbols}
%
\begin{tabular}{ll}
$\triangle$             &   triangle graph  oeuaua euaeouaoeuaoe uaoeu aoeu aou aoeu aoeu aoeu aou aou aoeu ae u        \\
$\triangle$             &   simplicial complex  aoeuauaou au au eaeu aoeu aoeu aoeu aoeu aoue auoe oeua au au           \\
$K[x_1,\ldots,x_n]$     &   polynomial ring                                         \\
$K[x_1,\ldots,x_n]/I$   &   quotient ring   \\
$\mathbb L^2$           &   lattice                             \\ 
$\mathcal R$            &   quotient ring f                 \\
\end{tabular}
%
\subsection*{Operators}
%
\begin{tabular}{ll}
$P\left[G(n;p)\models H\right]$     &   probability     \\
                            &   random graph                                                        \\
$P\left[\Lambda^s_p\models H\right]$    &   probability     \\
$P\left[G^s_p\models H\right]$      &   probability for the induced     \\
\end{tabular}
%
\subsection*{Abbreviations}
%
\begin{tabular}{ll}
cut                     &   cut-vertex set                                                          \\
DAG                     &   directed acyclic graph                  \\
digraph                 &   directed graph                                                          \\
network                 &   two-terminal graph                                                      \\
sp                      &   series-parallel                                                         \\
\end{tabular}

\end{document}

答案1

我会用环境来制作表格tabularx:第一列为p{2.5cm},第二X列为整个表格linewidth宽度。这些是段落模式下的单元格,因此它们可以有几行长。对于行太紧的问题——这是 LaTeX 默认参数的一个众所周知的问题,您可以使用包cellspace,它允许您使用以字母为前缀的说明符定义列中单元格的最小垂直间距S(或者C如果您加载siunitx):

\documentclass[english]{article}
\usepackage{amsmath, amsfonts}
\usepackage{tabularx, cellspace} %
\setlength\cellspacetoplimit{3pt}
\setlength\cellspacebottomlimit{3pt}

\begin{document}

\section{Symbols and abbreviations}
%
\subsection*{Symbols}
%
\begin{tabularx}{\linewidth}{@{}SlX@{}}
$\triangle$ & triangle graph oeuaua euaeouaoeuaoe uaoeu aoeu aou aoeu aoeu aoeu aou aou aoeu ae u \\
$\triangle$ & simplicial complex aoeuauaou au au eaeu aoeu aoeu aoeu aoeu aoue auoe oeua au au \\
$K[x_1,\ldots,x_n]$ & polynomial ring \\
$K[x_1,\ldots,x_n]/I$ & quotient ring \\
$\mathbb L^2$ & lattice \\
$\mathcal R$ & quotient ring f \end{tabularx}
%
\subsection*{Operators}
%
\begin{tabularx}{\linewidth}{@{}S{p{2.5cm}}X@{}}
$P\left[G(n;p)\models H\right]$ & probability \newline random graph \\
$P\left[\Lambda^s_p\models H\right]$ & probability \\
$P\left[G^s_p\models H\right]$ & probability for the induced \end{tabularx}
%
\subsection*{Abbreviations}
%
\begin{tabularx}{\linewidth}{@{}S{p{2.5cm}}X@{}}
cut & cut-vertex set \\
DAG & directed acyclic graph \\
digraph & directed graph \\
network & two-terminal graph \\
sp & series-parallel \end{tabularx}

\end{document} 

在此处输入图片描述

答案2

一条评论建议使用该包glossaries——也许它可以在这里使用,但对我来说有点过度了,我认为。词汇表包可以帮助您生成字典。您可以获得类似这样的结果

A|B|C|D|F|G|I|M|O|R|S|C|D|G|M|P
A
A First term 
   Has some long description 7, 9
B
Barely missed first 
   Has some long description 7, 9

如上所述指示Ctan 词汇表我觉得词汇表更适合写书而不是写论文。

相关内容