Stephen Wilson wrote: > > A couple of problems due to my tagging system in that an equation isn't > always tagged with the top level subject, so stress is tagged under 'stress > and strain' but not the top level 'Statics'. > The linkability seems to have gone too! >
Yeah, I guess you must stick to a pretty rigid tagging structure when automating. But you can add items manually first or last to the list as long as it is within the columns style and styled with column-item. Below is the code using @@.columns and with links instead of titles. I was kind of assuming you'd experiment a bit yourself ;-) Apropos that long code-harangue below to get the link, this will be much simplified <https://tiddlywiki.com/prerelease/#LinkWidget> in the next release so you'll just write <$link/> instead! <:-) \define column-item(filter, subfilter) <$list filter="$filter$" variable=subject> <span class="column-item"> <div class="column-item-heading"><<subject>></div> <$list filter="""$subfilter$ +[tag<subject>]"""> <div class="column-item-item"> <$link to=<<currentTiddler>>><$view field="title"/></$link> </div> </$list> </span> </$list> \end @@.columns <<column-item "[tag[Table of Contents]]" "[tag[Equation]]">> @@ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/bda780b5-5e25-4770-ae0a-d7ea8f6e8304%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

