9
9
from __future__ import annotations
10
10
11
11
import hashlib
12
- import os
13
12
import re
13
+ import subprocess
14
14
import unicodedata
15
15
from collections .abc import Iterable
16
16
from pathlib import Path
@@ -114,10 +114,11 @@ def generate_tex_file(
114
114
return result
115
115
116
116
117
- def tex_compilation_command (
117
+ def make_tex_compilation_command (
118
118
tex_compiler : str , output_format : str , tex_file : Path , tex_dir : Path
119
- ) -> str :
120
- """Prepares the tex compilation command with all necessary cli flags
119
+ ) -> list [str ]:
120
+ """Prepares the TeX compilation command, i.e. the TeX compiler name
121
+ and all necessary CLI flags.
121
122
122
123
Parameters
123
124
----------
@@ -132,40 +133,36 @@ def tex_compilation_command(
132
133
133
134
Returns
134
135
-------
135
- :class:`str`
136
+ :class:`list[ str] `
136
137
Compilation command according to given parameters
137
138
"""
138
139
if tex_compiler in {"latex" , "pdflatex" , "luatex" , "lualatex" }:
139
- commands = [
140
+ command = [
140
141
tex_compiler ,
141
142
"-interaction=batchmode" ,
142
- f' -output-format=" { output_format [1 :]} "' ,
143
+ f" -output-format={ output_format [1 :]} " ,
143
144
"-halt-on-error" ,
144
- f'-output-directory="{ tex_dir .as_posix ()} "' ,
145
- f'"{ tex_file .as_posix ()} "' ,
146
- ">" ,
147
- os .devnull ,
145
+ f"-output-directory={ tex_dir .as_posix ()} " ,
146
+ f"{ tex_file .as_posix ()} " ,
148
147
]
149
148
elif tex_compiler == "xelatex" :
150
149
if output_format == ".xdv" :
151
- outflag = "-no-pdf"
150
+ outflag = [ "-no-pdf" ]
152
151
elif output_format == ".pdf" :
153
- outflag = ""
152
+ outflag = []
154
153
else :
155
154
raise ValueError ("xelatex output is either pdf or xdv" )
156
- commands = [
155
+ command = [
157
156
"xelatex" ,
158
- outflag ,
157
+ * outflag ,
159
158
"-interaction=batchmode" ,
160
159
"-halt-on-error" ,
161
- f'-output-directory="{ tex_dir .as_posix ()} "' ,
162
- f'"{ tex_file .as_posix ()} "' ,
163
- ">" ,
164
- os .devnull ,
160
+ f"-output-directory={ tex_dir .as_posix ()} " ,
161
+ f"{ tex_file .as_posix ()} " ,
165
162
]
166
163
else :
167
164
raise ValueError (f"Tex compiler { tex_compiler } unknown." )
168
- return " " . join ( commands )
165
+ return command
169
166
170
167
171
168
def insight_inputenc_error (matching ):
@@ -200,14 +197,14 @@ def compile_tex(tex_file: Path, tex_compiler: str, output_format: str) -> Path:
200
197
result = tex_file .with_suffix (output_format )
201
198
tex_dir = config .get_dir ("tex_dir" )
202
199
if not result .exists ():
203
- command = tex_compilation_command (
200
+ command = make_tex_compilation_command (
204
201
tex_compiler ,
205
202
output_format ,
206
203
tex_file ,
207
204
tex_dir ,
208
205
)
209
- exit_code = os . system (command )
210
- if exit_code != 0 :
206
+ cp = subprocess . run (command , stdout = subprocess . DEVNULL )
207
+ if cp . returncode != 0 :
211
208
log_file = tex_file .with_suffix (".log" )
212
209
print_all_tex_errors (log_file , tex_compiler , tex_file )
213
210
raise ValueError (
@@ -237,18 +234,16 @@ def convert_to_svg(dvi_file: Path, extension: str, page: int = 1):
237
234
"""
238
235
result = dvi_file .with_suffix (".svg" )
239
236
if not result .exists ():
240
- commands = [
237
+ command = [
241
238
"dvisvgm" ,
242
- "--pdf" if extension == ".pdf" else "" ,
243
- "-p " + str (page ),
244
- f'"{ dvi_file .as_posix ()} "' ,
245
- "-n" ,
246
- "-v 0" ,
247
- "-o " + f'"{ result .as_posix ()} "' ,
248
- ">" ,
249
- os .devnull ,
239
+ * (["--pdf" ] if extension == ".pdf" else []),
240
+ f"--page={ page } " ,
241
+ "--no-fonts" ,
242
+ "--verbosity=0" ,
243
+ f"--output={ result .as_posix ()} " ,
244
+ f"{ dvi_file .as_posix ()} " ,
250
245
]
251
- os . system ( " " . join ( commands ) )
246
+ subprocess . run ( command , stdout = subprocess . DEVNULL )
252
247
253
248
# if the file does not exist now, this means conversion failed
254
249
if not result .exists ():
0 commit comments