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 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+