diff options
| author | Philipp Le <philipp-le-prviat@freenet.de> | 2020-05-11 00:29:47 +0200 |
|---|---|---|
| committer | Philipp Le <philipp-le-prviat@freenet.de> | 2021-03-04 01:16:19 +0100 |
| commit | 2e7157471c9d2c01b22646c8d62fbc54a18b9276 (patch) | |
| tree | 11f641365b11e20ba835b4fcb9b73488242d0278 /common | |
| parent | f02225dba2614611ec6e49fa5fc01e111000b2bc (diff) | |
| download | dcs-lecture-notes-2e7157471c9d2c01b22646c8d62fbc54a18b9276.zip dcs-lecture-notes-2e7157471c9d2c01b22646c8d62fbc54a18b9276.tar.gz dcs-lecture-notes-2e7157471c9d2c01b22646c8d62fbc54a18b9276.tar.bz2 | |
Adding nomenclature
Diffstat (limited to 'common')
| -rw-r--r-- | common/settings.tex | 41 |
1 files changed, 36 insertions, 5 deletions
diff --git a/common/settings.tex b/common/settings.tex index 09605e5..8227182 100644 --- a/common/settings.tex +++ b/common/settings.tex @@ -198,11 +198,6 @@ \usepackage[subfigure]{tocloft} -%% Nomenclature -%\usepackage[english]{nomencl} -%\makenomenclature -%\usepackage{etoolbox} - % Acronyms \usepackage[printonlyused]{acronym} @@ -220,6 +215,42 @@ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Nomenclature + +\usepackage[english]{nomencl} +\makenomenclature +%\usepackage{etoolbox} + + +\renewcommand\nomgroup[1]{% + \item[\bfseries + \ifstrequal{#1}{C}{Physics Constants}{% + \ifstrequal{#1}{N}{Notation}{% + \ifstrequal{#1}{S}{Symbols}{% + \ifstrequal{#1}{F}{Functions}{% + }% + }% + }% + }% +]} + +\newcommand{\nomunit}[1]{%
+ \renewcommand{\nomentryend}{\hspace*{\fill}#1}}
+ +\nomenclature[C]{$c$}{Speed of light}
+ +\nomenclature[Na]{$\underline{a}$}{Value, explicitly marked complex valued} +\nomenclature[Nb]{$\vect{a}$}{Vector} +\nomenclature[Nba]{$\vect{\underline{a}}$}{Vector, explicitly marked complex valued} +\nomenclature[Nc]{$\mat{A}$}{Matrix} +\nomenclature[Nca]{$\mat{\underline{A}}$}{Matrix, explicitly marked complex valued} +\nomenclature[Nxa]{$\underline{x}(t)$}{Analog signal in time domain} +\nomenclature[Nxb]{$\underline{X}(\j \omega)$}{Analog signal in frequency domain (Fourier transform)} +\nomenclature[Nxb]{$\underline{X}(\underline{s})$}{Analog signal in frequency domain (Laplace transform)} +\nomenclature[Nxc]{$\underline{x}[k] = \underline{x}\left(k T_S\right)$}{Digital signal in time domain, with sampling period $T_S$} +\nomenclature[Nxd]{$\underline{X}(\underline{z})$}{Digital signal in frequency domain (z-transform)} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % Listings \usepackage{listings} |
