summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/nl-interval/nl-interval.tex
blob: d3d01b37037f219b5574eb6472107581e59869eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
\documentclass{article}

\usepackage{fouriernc}
\usepackage[utf8]{inputenc}
\usepackage{nl-interval}
\usepackage{indentfirst}
\usepackage{fancyvrb}
\usepackage{siunitx}

\title{The {\bf nl-interval} package}
\author{Antero Neves}
\date{12 March 2021 \quad version 1.0}

\begin{document}
	\maketitle
	
	\begin{abstract}
	This is a \LaTeX\ package that aims to simplify and agilize the process of representing intervals in the real axis. 
	Four commands are provided: \verb*|\nlAxisX|, \verb*|\nlnuminf|, \verb*|\nlinfnum| and \verb*|\nlnumnum|, they were built around the packages {\bf tkz-fct}, {\bf ifthen} and {\bf xparse} and require being used inside a \verb*|tikzpicture| environment.
	\end{abstract}
	
	
	\section{How to use}
	
	\subsection{How to load the package}
	
	The package is loaded as usual, through the command 
	
	\medskip
	
	\verb*|\usepackage{nl-interval}|
	
	\medskip
	
	There are, at this time, no options available to include here.
	
	\subsection{The commands}
	
	The first command is \verb*|\nlAxisX| and it simply draws the \(x\) axis where the intervals are going to be represented. It has two mandatory inputs: the minimum and maximum of the axis, so, the full instruction is: \Verb*|\nlAxisX{min}{max}|:
	

	\begin{Verbatim}[gobble=1,xleftmargin=5mm]
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
	\end{tikzpicture}	
	\end{Verbatim}

	
	would give the output:
	
	\medskip
	
	\begin{center}
		\begin{tikzpicture}
			\nlAxisX{-2}{5}
		\end{tikzpicture}
	\end{center}


	After the axis is drawn, one can start placing the intervals. To do this we will consider two kinds of intervals, the ones with infinity, either \(-\infty\) or \(+\infty\) and the ones with two numbers.
	
	\newpage
	
	
	Let's start with the first group.
	
	\begin{itemize}
		\item \verb*|\nlinfnum| will draw intervals of the kind: \(\left]-\infty, number\right]\) or \(\left]-\infty, number\right[\).
		\item \verb*|\nlnuminf| will draw intervals of the kind: \(\left[number, +\infty\right[\) or \(\left]number, +\infty\right[\).
	\end{itemize}

	These two commands also have two mandatory inputs: first one is the number ({\it always a decimal representation, so, something like \(\pi\) doesn't work but there is a workaround!}) and the second if it's an \underline{o}pen or \underline{c}losed interval at the number. So, for instance
	
	\medskip
	
	\begin{Verbatim}[gobble=1,xleftmargin=5mm]
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
		\nlnuminf{3}{o}
		\nlinfnum{1}{c}
	\end{tikzpicture}	
	\end{Verbatim}
	
	gives us
	
	\medskip

	
	\begin{center}
		\begin{tikzpicture}
			\nlAxisX{-2}{5}
			\nlnuminf{3}{o}
			\nlinfnum{1}{c}
		\end{tikzpicture}
	\end{center}
	
	This time, there are a few optional inputs, the full commands are like this:
	
	\begin{Verbatim}[gobble=1,xleftmargin=5mm]
		\nlnuminf[1]{number}[2]{o or c}[3]
		\nlinfnum[1]{number}[2]{o or c}[3]
	\end{Verbatim}

	\begin{itemize}
		\item in [1] you can put options like different colours or patters used;
		\item in [2] you can substitute the number for a letter or an exact representation of the number, don't put it in math environment!;
		\item in [3] you can change the height of the interval, which is \(0.5\si{\centi\meter}\) by default.
	\end{itemize}


	Let's try some of these options:
	
	\begin{Verbatim}[gobble=1,xleftmargin=5mm]
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
		\nlnuminf[pattern=north west lines]{1.4142}[\sqrt{2}]{c}[.7]
		\nlinfnum[red!20]{3.1416}[\pi]{o}
	\end{tikzpicture}	
	\end{Verbatim}
	
	
	\begin{center}
		\begin{tikzpicture}
			\nlAxisX{-1}{4}
			\nlnuminf[pattern=north west lines]{1.4142}[\sqrt{2}]{c}[.7]
			\nlinfnum[red!20]{3.1416}[\pi]{o}
		\end{tikzpicture}
	\end{center}


\newpage
	
The second group of intervals, works with a single command:

\begin{itemize}
	\item \verb*|\nlnumnum|
\end{itemize}

and, since it uses two numbers, we have four mandatory inputs: the numbers and the instruction of closed or open. It works like this:


\begin{Verbatim}[gobble=1,xleftmargin=5mm]
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
		\nlnumnum{-1}{o}{3}{c}
	\end{tikzpicture}
\end{Verbatim}
	
	\begin{center}
		\begin{tikzpicture}
			\nlAxisX{-2}{5}
			\nlnumnum{-1}{o}{3}{c}
		\end{tikzpicture}
	\end{center}
	
As with the previous commands, there are a few options, this time we have one more which allows us to change what is shown in the second number:


\begin{Verbatim}[gobble=1,xleftmargin=5mm]
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
		\nlnumnum[red!20]{-1.4142}[-\sqrt{2}]{o}{3.1416}[\pi]{c}
	\end{tikzpicture}
\end{Verbatim}


\begin{center}
	\begin{tikzpicture}
	\nlAxisX{-2}{5}
	\nlnumnum[red!20]{-1.4142}[-\sqrt{2}]{o}{3.1416}[\pi]{c}
\end{tikzpicture}
\end{center}


\section{Conclusion}

This is a really simple package (my first attempt at a package) but one that, I hope, can help you draw stuff like:

\begin{center}
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
		\nlnumnum[red!20]{-1.4142}[-\sqrt{2}]{o}{3.1416}[\pi]{c}
		\nlnuminf[pattern=north west lines]{1.4142}[\sqrt{2}]{c}[.7]
		\nlinfnum{2}{o}[.3]
	\end{tikzpicture}
\end{center}

somewhat quickly and easily. By the way, the instructions for this are:

\begin{Verbatim}[gobble=1,xleftmargin=5mm]
	\begin{tikzpicture}
		\nlAxisX{-2}{5}
		\nlnumnum[red!20]{-1.4142}[-\sqrt{2}]{o}{3.1416}[\pi]{c}
		\nlnuminf[pattern=north west lines]{1.4142}[\sqrt{2}]{c}[.7]
		\nlinfnum{2}{o}[.3]
	\end{tikzpicture}
\end{Verbatim}


\end{document}