tds.go 695 B

12345678910111213141516171819202122
  1. // Copyright 2023 The Knuth Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // Package tds provides a minimal TeX Directory Structure.
  5. package tds // import "modernc.org/knuth/internal/tds"
  6. import (
  7. "embed"
  8. )
  9. // FS holds the contents of a minimal TeX Directory Structure.
  10. //
  11. //go:embed fonts/afm/public/amsfonts/cm/*.afm
  12. //go:embed fonts/pk/ljfour/public/cm/dpi600/*.pk
  13. //go:embed fonts/tfm/public/cm/*.tfm
  14. //go:embed fonts/type1/public/amsfonts/cm/*pfb
  15. //go:embed tex/generic/hyphen/hyphen.tex
  16. //go:embed tex/latex/graphics
  17. //go:embed tex/latex/xcolor
  18. //go:embed tex/plain/base/plain.tex
  19. var FS embed.FS