-
Notifications
You must be signed in to change notification settings - Fork 537
Closed
Labels
Description
Feature needed to give possibility to set the page range for header extraction, now the default value is set to 2 :
public String processHeader(String inputFile, boolean consolidate, BiblioItem result) {
GrobidAnalysisConfig config = new GrobidAnalysisConfig.GrobidAnalysisConfigBuilder()
.startPage(0)
.endPage(2)
.consolidateHeader(consolidate)
.build();
return processHeader(inputFile, config, result);
}
Also related to this issue which gives an example : #281
Reactions are currently unavailable