in my bib file I have added to all items a field to tag the research project the publication belongs to, that is
@book{item1,
title = {Carpe Diem},
project = {project_1},
author = {John Doe},
year = {2008}
}
Now, I can query the items belonging to this project as
{% bibliography --query @[project=project_1] %}
However, there can be items that are associated to multiple projects, such as
@book{item2,
title = {Lorem ipsum},
project = {project_1,project_2},
author = {John Doe},
year = {2008}
}
and these items are not captured by the filter above.
I assume that I would have to use some regular expression or parse the field into tokens. Is there a way to modify the query to do this?
Hi,
in my bib file I have added to all items a field to tag the research project the publication belongs to, that is @book{item1, title = {Carpe Diem}, project = {project_1}, author = {John Doe}, year = {2008} }
Now, I can query the items belonging to this project as {% bibliography --query @[project=project_1] %}
However, there can be items that are associated to multiple projects, such as @book{item2, title = {Lorem ipsum}, project = {project_1,project_2}, author = {John Doe}, year = {2008} }
and these items are not captured by the filter above. I assume that I would have to use some regular expression or parse the field into tokens. Is there a way to modify the query to do this?