// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java Document doc = new Document(dataDir + "TestFile.docx"); DocumentBuilder builder = new DocumentBuilder(doc); builder.write("Some text"); builder.insertFootnote(FootnoteType.ENDNOTE, "Endnote text."); EndnoteOptions option = doc.getEndnoteOptions(); option.setRestartRule(FootnoteNumberingRule.RESTART_PAGE); option.setPosition(EndnotePosition.END_OF_SECTION); dataDir = dataDir + "TestFile_Out.doc"; // Save the document to disk. doc.save(dataDir);