@@ -73,17 +73,17 @@ Suppose you have a directory `my_resource_dir` with the following contents:
7373- ` reference_style.csl `
7474- ` template.tex `
7575
76- ` template.tex ` and any input files can refer to files in ` resource_dir ` , for example
77- by using ` \includegraphics{extra/my_resource_dir/ img/cover_page_background.png} ` .
76+ ` template.tex ` and any input files can refer to files in ` my_resource_dir ` , for example
77+ by using ` \includegraphics{img/cover_page_background.png} ` .
7878
7979You can then run the following:
8080
8181``` sh
8282./docker_run \
83- --extra_resource_dir path/to/ my_resource_dir \
84- --template extra /my_resource_dir/template.tex \
85- --reference_doc extra /my_resource_dir/reference_doc.docx \
86- --csl extra /my_resource_dir/reference_style.csl \
83+ --resourcedir my_resource_dir \
84+ --template /my_resource_dir/template.tex" \
85+ --reference_doc /my_resource_dir/reference_doc.docx" \
86+ --csl /my_resource_dir/reference_style.csl \
8787 --pdf output.pdf \
8888 input.tcg
8989```
@@ -98,10 +98,10 @@ To render a document to HTML:
9898
9999``` sh
100100./docker_run \
101- --extra_resource_dir path/to/ my_resource_dir \
102- --template_html extra /my_resource_dir/html.template \
103- --html_stylesheet extra /my_resource_dir/style1.css \
104- --html_stylesheet extra /my_resource_dir/style2.css \
101+ --resourcedir my_resource_dir \
102+ --template_html /my_resource_dir/html.template \
103+ --html_stylesheet /my_resource_dir/style1.css \
104+ --html_stylesheet /my_resource_dir/style2.css \
105105 --html output.html \
106106 input.tcg
107107```
0 commit comments