![Wie zeichnet man in LaTeX mit tikzpicture einen linearen Graphen für die Gleichung (22-x)/2?](https://rvso.com/image/449636/Wie%20zeichnet%20man%20in%20LaTeX%20mit%20tikzpicture%20einen%20linearen%20Graphen%20f%C3%BCr%20die%20Gleichung%20(22-x)%2F2%3F.png)
Antwort1
Willkommen bei TeX.SE! Bitte stellen Sie immer MWE (Minimal Working Example) zur Verfügung, ein vollständiges kleines Dokument, das Ihr Problem reproduziert.
\documentclass[margin=3mm]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.18}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines = middle,
xlabel={$\omega_{m}$},
ylabel={T},
label style = {below left},
xmin=0, xmax=28, xtick={22},
ymin=0, ymax=13, ytick={11}]
\addplot[red, ultra thick, domain=0:22] {(22-x)/2};
\end{axis}
\end{tikzpicture}
\end{document}