Python Library REQ-IF
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Makefile 233B

1234567891011121314
  1. .PHONY: all
  2. .PRECIOUS: %.tex
  3. all: specification.pdf clean
  4. %.tex: %.reqif
  5. python3 reqif/scripts/parse.py $<
  6. %.pdf: %.tex
  7. latexmk -pdf -pdflatex="pdflatex -interaction=nonstopmode" -use-make $<
  8. clean:
  9. latexmk -c
  10. rm -f *~ *.tex