LatexConstants.java 449 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
  3. *
  4. */
  5. package scot.carricksoftware.grantswriter.constants;
  6. import org.springframework.stereotype.Component;
  7. @Component
  8. public class LatexConstants {
  9. private LatexConstants() {
  10. // to stop checkstyle complaining
  11. }
  12. public static final String DOCUMENT_START = "\\begin{document}";
  13. public static final String DOCUMENT_END = "\\end{document}";
  14. }