Μιλάμε για τον κάτωθι κώδικα
Κώδικας: Επιλογή όλων
\documentclass{article}
\usepackage{tikz,pgfplots}
\begin{document}
% Περίπτωση χωρίς άξονες.
\begin{tikzpicture}
\begin{axis}[
xlabel=$x$, % Ονομα οριζοντίου άξονα
ylabel={$f(x) = x^2 - x +4$} % Όνομα κατακόρυφου άξονα
]
% use TeX as calculator:
\addplot {x^2 - x +4}; % Τύπος συνάρτησης
\end{axis}
\end{tikzpicture}
% Περίπτωση με άξονες
\begin{tikzpicture}[>=latex]
\begin{axis}[
grid, % Για πλέγμα
axis x line=center,
axis y line=center,
xtick={-5,-4,...,5},
ytick={-5,-4,...,5},
xlabel={$x$}, % Ονομα οριζοντίου άξονα
ylabel={$y$}, % Όνομα κατακόρυφου άξονα
xlabel style={below right},
ylabel style={above left},
% Οριοθέτηση σχήματος
xmin=-5.5,
xmax=5.5,
ymin=-5.5,
ymax=5.5]
\addplot [mark=none,domain=0:4] {x^2-1/x}; % Τύπος συνάρτησης
\addplot [color=red,mark=none,domain=-3:0] {x^2-1/x}; % Τύπος συνάρτησης
\addplot[color=black,smooth,mark=x] coordinates {
(5, 1)
(3, -1)
(-2, 3)
}; % Για ομαλή (smooth) ένωση σημείων
\end{axis}
\end{tikzpicture}