Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
latex.pp 540 B
# @summary
#   Install required LaTeX packages for PDF generation.
#
#   Detailed summary info if suitable
#
#
class aes::latex {
  package {
    [
      'texlive',
      'texlive-latex',
      'texlive-xetex',
      'texlive-collection-xetex',
      'texlive-collection-latex',
      'texlive-collection-latexrecommended',
#      'texlive-xetex-def', # Not in RHEL9, why is this required? What breaks?
      'texlive-tcolorbox',
      'texlive-booktabs',
      'texlive-varwidth',
      'latexmk',
    ]:
      ensure  => installed,
  }
}