科学常数列表

科学常数列表

创建常量列表的最佳方法是什么。我应该制作词汇表吗,或者有更好的做法或软件包?

谢谢!

在此处输入图片描述

答案1

以下是使用longtable

\documentclass{book} 

\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{longtable}

\begin{document}
\chapter{System of Units etc}

\section{International system of units}

\begin{longtable}{llll}
\toprule
\bfseries Quantity & \bfseries Unit &
\bfseries Symbol & \bfseries Dimension\\\midrule\endhead
Length & meter & \si{\meter} & \\
Mass & kilogram & \si{\kilo\gram}\\
Frequency & hertz & \si{\hertz} & \si{\per\second}\\
\bottomrule
\end{longtable}

\end{document}

得出的结果为:

表格图片

以下是等价的glossaries方法:

\documentclass{book} 

\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{glossaries}

\makenoidxglossaries

\glsnoexpandfields
\let\glsunit\glsuseri
\let\glsdim\glsuserii

\newglossaryentry{length}{%
  name=length,%
  description={},%
  symbol={\si{\meter}},
  user1={meter}% unit
}

\newglossaryentry{mass}{%
  name=mass,%
  description={},%
  symbol={\si{\kilo\gram}},
  user1={kilogram}% unit
}

\newglossaryentry{frequency}{%
  name=frequency,%
  description={},%
  symbol={\si{\hertz}},
  user1={hertz},% unit
  user2={\si{\per\second}}% dimension
}

\newglossarystyle{units}{%
  \setglossarystyle{long4col}%
  \renewcommand{\glossentry}[2]{%
    \glsentryitem{##1}\glstarget{##1}{\Glossentryname{##1}} &
    \glsentryuseri{##1} &
    \glossentrysymbol{##1} &
    \glsentryuserii{##1}\tabularnewline
  }%
  \renewcommand*{\glossaryheader}{%
    \toprule
    \bfseries Quantity &\bfseries Unit&
    \bfseries Symbol& \bfseries Dimension\tabularnewline
    \midrule\endhead
    \bottomrule\endfoot
    }%
    \renewcommand*{\glsgroupskip}{}%
}
\setglossarystyle{units}

\begin{document}
\chapter{Sample}

\gls{length}, \glsunit{length}, \glssymbol{length}.

\gls{mass}, \glsunit{mass}, \glssymbol{mass}.

\gls{frequency}, \glsunit{frequency}, \glssymbol{frequency},
\glsdim{frequency}.

\printnoidxglossary[sort=def,title={Systems of Units etc}]

\end{document}

第一页:

首页图片

符号列表:

词汇表图片

两种方法都需要运行两次 LaTeX 以确保文档是最新的。

相关内容