Merge TEX

How to merge TEX files in Java

GroupDocs.Merger allows developers to merge TEX files when it’s needed to organize multiple TEX files into single document or send fewer attachments etc. And you can do this without any third-party software or manual work involved. With GroupDocs.Merger it is possible to combine TEX documents of any size and structure - all text, images, tables, graphs, forms and other content will be preserved.

The following example demonstrates how to merge TEX files with several lines of java code:

  • Create an instance of Merger class and pass source TEX file path as a constructor parameter. You may specify absolute or relative file path as per your requirements.
  • Add another TEX file to merge with join method. Repeat this step for other TEX documents you want to merge.
  • Call Merger class save method and specify the filename for the merged TEX file as parameter.
// Load the source TEX file
Merger merger = new Merger("c:\sample1.tex")

// Add another TEX file to merge
merger.join("c:\sample2.tex");
// Merge TEX files and save result
merger.save("c:\merged.tex");

About TEX File Format

TeX is a language that consists of programming as well as mark-up features, used to typeset documents. Donald Knuth from Stanford University, is the creator of this resourceful typesetting system. Across the world, TeX is the ultimate choice of authors and publishers to produce high quality technical documents. TeX performs an outstanding job of formatting complex mathematical expressions. In conjunction with a high-quality phototypesetter, TeX competes the results generated by the best traditional typesetting systems.

Code Examples

Please find more use-cases and complete Java sources of our backend and frontend examples and try them for free!

Merge TEX Live Demo

GroupDocs.Merger for Java provides an online TEX Merger App, which allows you to try it for free and check its quality and accuracy.

“Merge TEX”