From bb25461952edf0c4ecaeb4422c23a54cc1b0816f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=A7=8B=E4=BA=8E=E5=88=9D=E8=A7=81?= <752204717@qq.com>
Date: Tue, 24 Mar 2026 09:52:58 +0800
Subject: [PATCH] =?UTF-8?q?=E5=B0=9D=E8=AF=95=E5=8C=85=E8=A3=B9=E9=93=BE?=
=?UTF-8?q?=E6=8E=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
bmec/author-guidelines/index.html | 17 ++++++++++++
cancer/author-guidelines/index.html | 17 ++++++++++++
collection/clinical-medicine1/index.html | 18 +++++++++++++
collection/copy.py | 33 ++++++++++++++++++++++++
collection/covid-191/index.html | 18 +++++++++++++
collection/food1/index.html | 18 +++++++++++++
collection/immunology1/index.html | 18 +++++++++++++
collection/nutriology1/index.html | 18 +++++++++++++
collection/oncology1/index.html | 18 +++++++++++++
collection/pharmacology1/index.html | 18 +++++++++++++
copy.py | 33 ++++++++++++++++++++++++
editorial-workflow1/index.html | 18 +++++++++++++
for-authors1/index.html | 18 +++++++++++++
for-conference-organizers1/index.html | 18 +++++++++++++
for-librarians1/index.html | 18 +++++++++++++
hpm/author-guidelines/index.html | 17 ++++++++++++
ia/author-guidelines/index.html | 17 ++++++++++++
in/author-guidelines/index.html | 17 ++++++++++++
lr/author-guidelines/index.html | 17 ++++++++++++
mdm/author-guidelines/index.html | 17 ++++++++++++
new-papers1/index.html | 18 +++++++++++++
online-first1/index.html | 18 +++++++++++++
open-access1/index.html | 18 +++++++++++++
peer-review-process1/index.html | 18 +++++++++++++
tmr/author-guidelines/index.html | 17 ++++++++++++
top-cited1/index.html | 18 +++++++++++++
26 files changed, 490 insertions(+)
create mode 100644 bmec/author-guidelines/index.html
create mode 100644 cancer/author-guidelines/index.html
create mode 100644 collection/clinical-medicine1/index.html
create mode 100644 collection/copy.py
create mode 100644 collection/covid-191/index.html
create mode 100644 collection/food1/index.html
create mode 100644 collection/immunology1/index.html
create mode 100644 collection/nutriology1/index.html
create mode 100644 collection/oncology1/index.html
create mode 100644 collection/pharmacology1/index.html
create mode 100644 copy.py
create mode 100644 editorial-workflow1/index.html
create mode 100644 for-authors1/index.html
create mode 100644 for-conference-organizers1/index.html
create mode 100644 for-librarians1/index.html
create mode 100644 hpm/author-guidelines/index.html
create mode 100644 ia/author-guidelines/index.html
create mode 100644 in/author-guidelines/index.html
create mode 100644 lr/author-guidelines/index.html
create mode 100644 mdm/author-guidelines/index.html
create mode 100644 new-papers1/index.html
create mode 100644 online-first1/index.html
create mode 100644 open-access1/index.html
create mode 100644 peer-review-process1/index.html
create mode 100644 tmr/author-guidelines/index.html
create mode 100644 top-cited1/index.html
diff --git a/bmec/author-guidelines/index.html b/bmec/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/bmec/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/cancer/author-guidelines/index.html b/cancer/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/cancer/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/clinical-medicine1/index.html b/collection/clinical-medicine1/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/clinical-medicine1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/copy.py b/collection/copy.py
new file mode 100644
index 0000000..c547e36
--- /dev/null
+++ b/collection/copy.py
@@ -0,0 +1,33 @@
+import shutil
+import os
+
+# 1. 设定你要复制哪个文件夹
+source_folder = "covid-191"
+
+# 2. 设定你想要生成的多个新名字
+new_names = ["immunology1",]
+
+def batch_copy():
+ # 检查原文件夹是否存在
+ if not os.path.exists(source_folder):
+ print(f"❌ 找不到原文件夹: {source_folder}")
+ return
+
+ for name in new_names:
+ # 检查目标文件夹是否已经存在,避免覆盖
+ if os.path.exists(name):
+ print(f"⚠️ 跳过:'{name}' 已经存在了。")
+ continue
+
+ try:
+ print(f"正在生成 {name}...")
+ shutil.copytree(source_folder, name)
+ print(f"✅ 成功复制为: {name}")
+ except Exception as e:
+ print(f"❌ 复制 {name} 时出错: {e}")
+
+ print("\n所有任务处理完毕!")
+
+if __name__ == "__main__":
+ batch_copy()
+ input("按回车键退出...")
\ No newline at end of file
diff --git a/collection/covid-191/index.html b/collection/covid-191/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/covid-191/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/food1/index.html b/collection/food1/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/food1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/immunology1/index.html b/collection/immunology1/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/immunology1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/nutriology1/index.html b/collection/nutriology1/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/nutriology1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/oncology1/index.html b/collection/oncology1/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/oncology1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/collection/pharmacology1/index.html b/collection/pharmacology1/index.html
new file mode 100644
index 0000000..5d4a0e4
--- /dev/null
+++ b/collection/pharmacology1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/copy.py b/copy.py
new file mode 100644
index 0000000..501df71
--- /dev/null
+++ b/copy.py
@@ -0,0 +1,33 @@
+import shutil
+import os
+
+# 1. 设定你要复制哪个文件夹
+source_folder = "peer-review-process1"
+
+# 2. 设定你想要生成的多个新名字
+new_names = ["new-papers1",]
+
+def batch_copy():
+ # 检查原文件夹是否存在
+ if not os.path.exists(source_folder):
+ print(f"❌ 找不到原文件夹: {source_folder}")
+ return
+
+ for name in new_names:
+ # 检查目标文件夹是否已经存在,避免覆盖
+ if os.path.exists(name):
+ print(f"⚠️ 跳过:'{name}' 已经存在了。")
+ continue
+
+ try:
+ print(f"正在生成 {name}...")
+ shutil.copytree(source_folder, name)
+ print(f"✅ 成功复制为: {name}")
+ except Exception as e:
+ print(f"❌ 复制 {name} 时出错: {e}")
+
+ print("\n所有任务处理完毕!")
+
+if __name__ == "__main__":
+ batch_copy()
+ input("按回车键退出...")
\ No newline at end of file
diff --git a/editorial-workflow1/index.html b/editorial-workflow1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/editorial-workflow1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/for-authors1/index.html b/for-authors1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/for-authors1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/for-conference-organizers1/index.html b/for-conference-organizers1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/for-conference-organizers1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/for-librarians1/index.html b/for-librarians1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/for-librarians1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/hpm/author-guidelines/index.html b/hpm/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/hpm/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ia/author-guidelines/index.html b/ia/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/ia/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/in/author-guidelines/index.html b/in/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/in/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lr/author-guidelines/index.html b/lr/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/lr/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/mdm/author-guidelines/index.html b/mdm/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/mdm/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/new-papers1/index.html b/new-papers1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/new-papers1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/online-first1/index.html b/online-first1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/online-first1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/open-access1/index.html b/open-access1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/open-access1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/peer-review-process1/index.html b/peer-review-process1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/peer-review-process1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/tmr/author-guidelines/index.html b/tmr/author-guidelines/index.html
new file mode 100644
index 0000000..8d98365
--- /dev/null
+++ b/tmr/author-guidelines/index.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/top-cited1/index.html b/top-cited1/index.html
new file mode 100644
index 0000000..9297501
--- /dev/null
+++ b/top-cited1/index.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+