我想绘制函数
f(x)=\ln \left(\frac{1}{2} \frac{x-2}{x}\right)
使用TikZ
。有人能帮我找到正确的语法吗?
答案1
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[domain=-5:-0.05] {.5 * (x-2) / x};
\addplot[domain=0.05:5] {.5 * (x-2) / x};
\end{axis}
\end{tikzpicture}
\end{document}