遵循 ConTeXt 文档在此处输入链接描述我应该能够使用这个项目结构。
- 测试.tex
\startproject *
\environment test_env
\product test_prod
\stopproject
- 测试环境.tex
\startenvironment *
\setuphead
[section]
[textstyle=\em]
\stopenvironment
- 测试产品.tex
\startproduct *
\project test
\component test_comp
\stopproduct
- 测试文件
\startcomponent *
\product test_prod
\section{Test}
Blabla
\stopcomponent
现在,编译test_prod
给了我想要的结果。环境 test_env 已应用。但如果我编译test_comp
我会得到没有环境文件中设置的标准布局。我需要添加一行\project test
才能获得所需的结果。这其实不是什么大问题,但如果我正确理解了文档,那么即使没有这个,它应该也可以工作……