Adding nomenclature support and example to the document (disabled by default).

This commit is contained in:
Máté Cserép 2019-06-08 07:50:34 +02:00
parent 228201c387
commit 90cbec0b1e
5 changed files with 20 additions and 8 deletions

View File

@ -23,7 +23,9 @@ A sablon alapértelmezetten a javasolt egy oldalas nyomtatásra konfigurált, de
* Szoros térközű felsorolások: [paralist](https://ctan.org/pkg/paralist)
**Matematika és algoritmusok:**
* Matematikai formulák, definíciók: [amsmath](https://ctan.org/pkg/amsmath), [amsthm](https://ctan.org/pkg/amsthm)
* Matematikai formulák: [amsmath](https://ctan.org/pkg/amsmath)
* Matematikai definíciók: [amsthm](https://ctan.org/pkg/amsthm)
* Matematikai szimbólumok: [amsfonts](https://ctan.org/pkg/amsfonts)
* Algoritmusok: [algorithmic](https://ctan.org/pkg/algorithms)
* Kódblokkok: [listingsutf8](https://ctan.org/pkg/listingsutf8)
@ -32,7 +34,7 @@ A sablon alapértelmezetten a javasolt egy oldalas nyomtatásra konfigurált, de
## Előre definiált tételszerű bekezdések
* definition: Definíció
* theorem: Tétel
* remark: Emlékeztető
* note: Megjegyzés
* *definition*: Definíció
* *theorem*: Tétel
* *remark*: Emlékeztető
* *note*: Megjegyzés

View File

@ -2,6 +2,8 @@
\label{ch:user}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis nibh leo, dapibus in elementum nec, aliquet id sem. Suspendisse potenti. Nullam sit amet consectetur nibh. Donec scelerisque varius turpis at tincidunt. Cras a diam in mauris viverra vehicula. Vivamus mi odio, fermentum vel arcu efficitur, lacinia viverra nibh. Aliquam aliquam ante mi, vel pretium arcu dapibus eu. Nulla finibus ante vel arcu tincidunt, ut consectetur ligula finibus. Mauris mollis lectus sed ipsum bibendum, ac ultrices erat dictum. Suspendisse faucibus euismod lacinia.
\nomenclature{$\mathbb{N}$}{Set of natural numbers}
\nomenclature{$\mathbb{Z}$}{Set of integer numbers}
\section{Felsorolások}

View File

@ -165,6 +165,7 @@
% Matematikai mód
\RequirePackage{amsthm}
\RequirePackage{amsmath}
\RequirePackage{amsfonts}
\DeclareMathAlphabet{\mathpzc}{OT1}{pzc}{m}{it}
% ------------------------------
@ -260,8 +261,7 @@
% ------------------------------
% Jelölésjegyzék
\RequirePackage [refpage,noprefix]{nomencl}
\renewcommand{\nomname}{Jelölésjegyzék}
\RequirePackage[intoc,noprefix,refpage]{nomencl}
% Elemek közötti bigskip kihagyása
\setlength{\nomitemsep}{-\parsep}
% Jobbra igazítás
@ -358,6 +358,7 @@
\newcommand{\lstfigurelabel}{Ábrajegyzék}
\newcommand{\lsttablelabel}{Táblázatjegyzék}
\newcommand{\lstcodelabel}{Forráskódjegyzék}
\newcommand{\lstnomencl}{Jelölésjegyzék}
\newcommand{\todolabel}{Teendők listája}
}
{
@ -377,7 +378,8 @@
\newcommand{\biblabel}{Bibliograhpy}
\newcommand{\lstfigurelabel}{List of Figures}
\newcommand{\lsttablelabel}{List of Tables}
\newcommand{\lstcodelabel}{List of Codes}
\newcommand{\lstcodelabel}{List of Codes}
\newcommand{\lstnomencl}{List of Symbols}
\newcommand{\todolabel}{Todo list}
}
@ -392,6 +394,8 @@
\renewcommand{\listtablename}{\lsttablelabel}
% Forráskódjegyzék elnevezése
\renewcommand{\lstlistlistingname}{\lstcodelabel}
% Jelölésjegyzék elnevezése
\renewcommand{\nomname}{\lstnomencl}
}
% ------------------------------

Binary file not shown.

View File

@ -82,5 +82,9 @@
% Forráskódjegyzék - ha szükséges
\addcontentsline{toc}{chapter}{\lstcodelabel}
\lstlistoflistings
\cleardoublepage
% Jelölésjegyzék - ha szükséges
%\printnomenclature
\end{document}