镜像自地址
https://github.com/binary-husky/gpt_academic.git
已同步 2025-12-07 15:06:48 +00:00
考虑有人用input不加.tex的情况
这个提交包含在:
@@ -20,8 +20,14 @@ def merge_tex_files_(project_foler, main_file, mode):
|
|||||||
for s in reversed([q for q in re.finditer(r"\\input\{(.*?)\}", main_file, re.M)]):
|
for s in reversed([q for q in re.finditer(r"\\input\{(.*?)\}", main_file, re.M)]):
|
||||||
f = s.group(1)
|
f = s.group(1)
|
||||||
fp = os.path.join(project_foler, f)
|
fp = os.path.join(project_foler, f)
|
||||||
|
if os.path.exists(fp):
|
||||||
|
# e.g., \input{srcs/07_appendix.tex}
|
||||||
with open(fp, 'r', encoding='utf-8', errors='replace') as fx:
|
with open(fp, 'r', encoding='utf-8', errors='replace') as fx:
|
||||||
c = fx.read()
|
c = fx.read()
|
||||||
|
else:
|
||||||
|
# e.g., \input{srcs/07_appendix}
|
||||||
|
with open(fp+'.tex', 'r', encoding='utf-8', errors='replace') as fx:
|
||||||
|
c = fx.read()
|
||||||
c = merge_tex_files_(project_foler, c, mode)
|
c = merge_tex_files_(project_foler, c, mode)
|
||||||
main_file = main_file[:s.span()[0]] + c + main_file[s.span()[1]:]
|
main_file = main_file[:s.span()[0]] + c + main_file[s.span()[1]:]
|
||||||
return main_file
|
return main_file
|
||||||
|
|||||||
在新工单中引用
屏蔽一个用户