You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the publications are currently not tagged. categorizing them by tags would make it possible to list only an interesting subset. the underlying python module pybtex supports arbitrary fields, hence this would work:
@article{abc,
...
tags = { tag a, nt:something, linear}
}
then, extract they keywords like this: map(lambda t : t.strip(), entry.fields["tags"].split(",")) and build a suitable data structure.
The text was updated successfully, but these errors were encountered:
the publications are currently not tagged. categorizing them by tags would make it possible to list only an interesting subset. the underlying python module
pybtex
supports arbitrary fields, hence this would work:then, extract they keywords like this:
map(lambda t : t.strip(), entry.fields["tags"].split(","))
and build a suitable data structure.The text was updated successfully, but these errors were encountered: