Module:TA4TK:myTest: Difference between revisions

From MaRDI portal
No edit summary
No edit summary
Line 7: Line 7:
end
end
function p.renderFormula()
function p.renderFormula()
     local formula = "\\sinx" -- LaTeX formula
     local formula = "\\sin x" -- LaTeX formula
end
end
return p
return p

Revision as of 14:41, 3 January 2025

Documentation for this module may be created at Module:TA4TK:myTest/doc

-- Main table to hold all functions

local p = {}
function p.hello()
	local str = "Hello World!"
	return str
end
function p.renderFormula()
    local formula = "\\sin x" -- LaTeX formula
end
return p