Examples of Bibliography


Examples of br.com.caelum.tubaina.bibliography.Bibliography

                .generateIntroductionChapters(book.getIntroductionChapters());
    }

    private String generateHtmlBibliography(File outputDir) {
        File bibliographyFile = new File(outputDir, "bib.xml");
        Bibliography bibliography = new BibliographyFactory().build(bibliographyFile);
        String htmlBibliography = new HtmlBibliographyGenerator(freeMarkerConfig)
                .generateTextOf(bibliography);
        return htmlBibliography;
    }
View Full Code Here

Examples of br.com.caelum.tubaina.bibliography.Bibliography

    copyResources(directory, book);
  }

  private void writeBibTex(File directory) throws FileNotFoundException, UnsupportedEncodingException {
    File bibliographyFile = new File(directory, "bib.xml");
    Bibliography bibliography = new BibliographyFactory().build(bibliographyFile);
    String latexBibliography = new LatexBibliographyGenerator().generateTextOf(bibliography);
    PrintStream stream = new PrintStream(new File(directory, "book.bib"), "UTF-8");
    stream.append(latexBibliography);
    stream.close();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.