Open
Description
Atomic conditions
condition(field: "all"|"au"|..., value: string)
:
condition("au", "Balents Leon")
→"au:\"Balents Leon\""
condition("au", "balents_leon")
→"au:balents_leon"
condition("cat", "cond-mat.str-el")
→"au:cond-mat.str-el"
- Open question: how to enumerate the available fields, values when they're enumerable.
prefix | explanation |
---|---|
ti | Title |
au | Author |
abs | Abstract |
co | Comment |
jr | Journal Reference |
cat | Subject Category |
rn | Report Number |
id | Id (use id_list instead) |
all | All of the above |
Boolean assembly
These correspond to the three Boolean operators supported by the arXiv API.
and(cond1, cond2)
→ "$(cond1) AND $(cond2)"
or(cond1, cond2)
→ "$(cond1) OR $(cond2)"
andnot(cond1, cond2)
→ "$(cond1) ANDNOT $(cond2)"
Grouping
group(cond)
→ "($(cond))"