public static void body(BufferedWriter wrlatex, List<Section> listSections, String referenceLink) throws IOException {
for (int j = 0; j < listSections.size(); j++) {
Section section = listSections.get(j);
sectionWriting(wrlatex, section);
} //end of Sections
wrlatex.newLine();
wrlatex.write("\\bibliography{");
wrlatex.write(referenceLink);
wrlatex.write("}");
wrlatex.newLine();
wrlatex.write("\\end{document}");
wrlatex.close();
}
BodyStandard.java 文件源码
java
阅读 38
收藏 0
点赞 0
评论 0
项目:JATS2LaTeX
作者:
评论列表
文章目录