Distinguishing the Title token
We can distinguish the book Title from the other Field tokens because the Title is within quotes.
So, lets add a regular expression for the Title:
Title = \"[^/\r\n]+\"
…
{Title} { -- code -- }
We must "escape" the quote symbol
since it is a reserved symbol.
Previous slide
Next slide
Back to first slide
View graphic version