![Como desenhar um gráfico linear em LaTeX usando tikzpicture para a equação (22-x)/2?](https://rvso.com/image/449636/Como%20desenhar%20um%20gr%C3%A1fico%20linear%20em%20LaTeX%20usando%20tikzpicture%20para%20a%20equa%C3%A7%C3%A3o%20(22-x)%2F2%3F.png)
Responder1
Bem-vindo ao TeX.SE! Forneça sempre o MWE (Minimal Working Example), um pequeno documento completo que reproduza o seu problema.
\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}