-
I have been using this template to showcase the different research projects I am working on. I would like to add, to each project page a list of the relevant publications from the bib file. @book{einstein1956investigations, In the end I am able to add the list of relevant publications to a project page with just a few lines <h2>Related Publications</h2>
<div class="publications">
{% bibliography -f papers -q @*[topic=project_1]* %}
</div> My problem is that some publications are actually related to multiple projects. However, if I write something like the entry is not captured by the filter. Is there a way to do such a thing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I found the answer to my question in one issue of the jekyll-scholar package inukshuk/jekyll-scholar#249 I just had to change the filter in the query replacing = with ~= In other words <h2>Related Publications</h2>
<div class="publications">
{% bibliography -f papers -q @*[topic~=project_1]* %}
</div> |
Beta Was this translation helpful? Give feedback.
I found the answer to my question in one issue of the jekyll-scholar package inukshuk/jekyll-scholar#249
I just had to change the filter in the query replacing = with ~=
In other words