Mark first sentence in a document

Viewed 24

I already have marked Sentences in a document (type: Sentence). How can I mark the first one as the document title? I already tried Sentence{->MARKFIRST(DocTitle)};, but this didn't work.

All the best Philipp

1 Answers

that`s easy:

# Sentence{-> DocTitle};

"#" consumes everything until the first Sentence annotation. All the best

Related