mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
18 lines
378 B
TeX
18 lines
378 B
TeX
|
\documentclass{article}
|
||
|
|
||
|
\usepackage{glossaries}
|
||
|
\makeglossaries
|
||
|
|
||
|
\newglossaryentry{Physics}{
|
||
|
name=Physics,
|
||
|
description={is the study of stuff}
|
||
|
}
|
||
|
|
||
|
\begin{document}
|
||
|
|
||
|
To solve various problems in \Gls{Physics} it can useful to express any arbitrary piecewise-smooth function as a Fourier Series composed of multiple sine and cosine funcions.
|
||
|
|
||
|
\printglossaries
|
||
|
|
||
|
\end{document}
|