1234567891011121314151617181920 |
- /*
- * Copyright (c) 2025. Andrew Grant Carrick Software. All rights reserved
- *
- */
- package scot.carricksoftware.grantswriter.constants;
- import org.springframework.stereotype.Component;
- @Component
- public class LatexConstants {
- private LatexConstants() {
- // to stop checkstyle complaining
- }
- public static final String DOCUMENT_START = "\\begin{document}";
- public static final String DOCUMENT_END = "\\end{document}";
- }
|