I was giving luadraw my first attempt, with extreme hard-working in French documentation(Non-naive English and French language speaker...)😭....
Now I want to draw the tangent line of "x=0.5" in the following example:
\documentclass{standalone}
\usepackage{luadraw}
\begin{document}
\begin{luadraw}{name=implicit_function}
local g = graph:new{window={-3,3,-3,3},size={10,10}}
g:Linecap("round")
local F = function(x,y) return x^2+y^2+x*y-1 end
g:Dimplicit(F,{draw_options="thick"})
g:Dgradbox(
{Z(-2,-2),Z(2,2),1,1},{grid=true,title="\\textbf{Implicit Function Plot}"}
)
-- g:Dtangent(F,0.5,3) -- This doesn't work...
g:Show()
\end{luadraw}
\end{document}
But in the documentation, I only found:
g:Dtangent(p, t0, long, draw_options)g:DtangentC(f, x0, long, draw_options)
which seemed not easy to handle the implicit funtion like above. Is there exist elegant solution with luadraw?

