This is what the variable tiddler looks like once it's displayed. The code automatically found all the tiddlers tagged Equation that included actual vapor pressure in the "equation" field.
This is what an equation tiddler looks like. This is where I would like to include a list of all the tiddlers tagged "Variable" where the "variable' field of the tiddler is included in the "equation" field of the Equation tiddler.
The list of variables would look like this, but would only include the variables that are included in the equation.
My variables are unique through the tiddler.
Thanks,
Sar
\define varPattern()
^<.*?(?:=).*?(?:=).*?(?:$(var)$)
\end
<$list filter="[has[variable]sort[title]]" variable="varTiddler">
<$set name="var" filter="[<varTiddler>get[variable]]">
<$list filter="[all[current]regexp:equation<varPattern>]">
<$tiddler tiddler=<<varTiddler>>>
<$link><$view field="title"/></$link>: <code><$text text=<<var>>/></code><br>
</$tiddler>
</$list>
</$set>
</$list>
First thank you for a "ah ha" moment on how to put latex in fields so
http://stephenteacher.tiddlyspot.com/#To%20replace%20once%20%24%20is%20fixed.
Works, at least until the missing $ problem is solved (I really should mention on git hub that that's still happening).
Secondly...
I don't understand.
I've no clue what or why you are doing. Does it mean you have to do less latex typing, once the equation is done once..
Could should I take advantage of this technique in my tiddlywiki as it's equation heavy?
http://stephenteacher.tiddlyspot.com
What would be the advantage? Is it increased flexablity?
intrigued but puzzeled.
Ste
What would be the advantage? Is it increased flexablity?
intrigued but puzzeled.
\define varPattern()
\b$(var)$\b
\endSte