diff --git a/.vscode/launch.json b/.vscode/launch.json index a0197ab..4f2e74a 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,13 @@ // 如需詳細資訊,請瀏覽: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "a700_産生作業用工作暫存檔", + "type": "debugpy", + "request": "launch", + "program": "a700_産生作業用工作暫存檔.py", + "console": "integratedTerminal", + }, { "name": "a701_作業中活頁檔填入漢字", "type": "debugpy", @@ -12,17 +19,17 @@ "console": "integratedTerminal", }, { - "name": "a702_Zu_Tong_Piau_Zu_Im", + "name": "a702_查找及填入漢字標音", "type": "debugpy", "request": "launch", - "program": "a702_Zu_Tong_Piau_Zu_Im.py", + "program": "a702_查找及填入漢字標音.py", "console": "integratedTerminal", }, { - "name": "a703_Batch_Zu_Tong_Piau_Zu_Im", + "name": "a703_批次式查找及填入漢字標音", "type": "debugpy", "request": "launch", - "program": "a703_Batch_Zu_Tong_Piau_Zu_Im.py", + "program": "a703_批次式查找及填入漢字標音.py", "console": "integratedTerminal", }, { diff --git a/Tai_Loo_Han_Ji_Khoo.db b/Tai_Loo_Han_Ji_Khoo.db index 152e2df..f95d80a 100644 Binary files a/Tai_Loo_Han_Ji_Khoo.db and b/Tai_Loo_Han_Ji_Khoo.db differ diff --git a/a700_Iong_Excel_Piau_Zu_Im.py b/_000_Batch_Process_Template.py similarity index 100% rename from a700_Iong_Excel_Piau_Zu_Im.py rename to _000_Batch_Process_Template.py diff --git "a/a700_\347\224\243\347\224\237\344\275\234\346\245\255\347\224\250\345\267\245\344\275\234\346\232\253\345\255\230\346\252\224.py" "b/a700_\347\224\243\347\224\237\344\275\234\346\245\255\347\224\250\345\267\245\344\275\234\346\232\253\345\255\230\346\252\224.py" new file mode 100644 index 0000000..a83bf06 --- /dev/null +++ "b/a700_\347\224\243\347\224\237\344\275\234\346\245\255\347\224\250\345\267\245\344\275\234\346\232\253\345\255\230\346\252\224.py" @@ -0,0 +1,62 @@ +import os +import sys +from pathlib import Path + +import xlwings as xw + +# 指定虛擬環境的 Python 路徑 +venv_python = os.path.join(".venv", "Scripts", "python.exe") if sys.platform == "win32" else os.path.join(".venv", "bin", "python") + +# (0) 取得專案根目錄。 +# 使用已打開且處於作用中的 Excel 工作簿 +try: + wb = xw.apps.active.books.active +except Exception as e: + print(f"發生錯誤: {e}") + print("無法找到作用中的 Excel 工作簿") + sys.exit(2) + +# 獲取活頁簿的完整檔案路徑 +file_path = wb.fullname +print(f"完整檔案路徑: {file_path}") + +# 獲取活頁簿的檔案名稱(不包括路徑) +file_name = wb.name +print(f"檔案名稱: {file_name}") + +# 獲取當前檔案的路徑 +current_file_path = Path(file_path).resolve() + +# 專案根目錄 +working_dir_path = current_file_path.parent +print(f"專案根目錄為: {working_dir_path}") + +# (1) 存成作業暫存檔 +new_file_name = "working" + +# 設定檔案輸出路徑,存於專案根目錄下的 output2 資料夾 +new_file_path = os.path.join( + working_dir_path, + f"【河洛話注音】{new_file_name}.xlsx") + +# 儲存新建立的工作簿 +wb.save(new_file_path) +print(f"作業中暫存檔名: {wb.name}") + +# (2) 將儲存格內的舊資料清除 +sheet = wb.sheets['漢字注音'] # 選擇工作表 +sheet.activate() # 將「漢字注音」工作表設為作用中工作表 +sheet.range('A1').select() # 將 A1 儲存格設為作用儲存格 +sheet.range('D3:R166').clear_contents() # 清除 C3:R166 範圍的內容 + +# 獲取 V3 儲存格的合併範圍 +merged_range = sheet.range('V3').merge_area +# 清空合併儲存格的內容 +merged_range.clear_contents() + +# 顯示「已輸入之拼音字母及注音符號」 +named_range = wb.names['顯示注音輸入'] # 選擇名為 "顯示注音輸入" 的命名範圍# 選擇名為 "顯示注音輸入" 的命名範圍 +named_range.refers_to_range.value = True + +# 設定 V3 儲存格為作用儲存格 +sheet.range('V3').select() \ No newline at end of file diff --git "a/a701-v1_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227_BAK.py" "b/a701-v1_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227_BAK.py" deleted file mode 100644 index 6555842..0000000 --- "a/a701-v1_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227_BAK.py" +++ /dev/null @@ -1,69 +0,0 @@ -import getopt -import os -import sys -from pathlib import Path - -import xlwings as xw - -from p710_thiam_han_ji import fill_hanji_in_cells - -# ========================================================================= -# (1) 取得專案根目錄。 -# ========================================================================= -# 獲取當前檔案的路徑 -current_file_path = Path(__file__).resolve() - -# 專案根目錄 -project_root = current_file_path.parent - -print(f"專案根目錄為: {project_root}") - -# ========================================================================= -# (2) 若無指定輸入檔案,則獲取當前作用中的 Excel 檔案並另存新檔。 -# ========================================================================= -wb = None -# 使用已打開且處於作用中的 Excel 工作簿 -try: - # 嘗試獲取當前作用中的 Excel 工作簿 - wb = xw.apps.active.books.active -except Exception as e: - print(f"發生錯誤: {e}") - print("無法找到作用中的 Excel 工作簿") - sys.exit(2) - -if not wb: - print("無法執行,可能原因:(1) 未指定輸入檔案;(2) 未找到作用中的 Excel 工作簿") - sys.exit(2) - -# 清空儲存格內容 -sheet = wb.sheets['漢字注音'] -sheet.range('D3:R166').clear_contents() # 清除 C3:R166 範圍的內容 - -# 將待注音的漢字填入 -fill_hanji_in_cells(wb) - -# 將檔案存放路徑設為【專案根目錄】之下 -file_name = "Tai_Gi_Zu_Im_Bun.xlsx" -try: - file_name = str(wb.names['TITLE'].refers_to_range.value).strip() -except KeyError: - # print("未找到命名範圍 'TITLE',使用預設名稱") - # file_name = "default_file_name.xlsx" # 提供一個預設檔案名稱 - setting_sheet = wb.sheets["env"] - file_name = str( - setting_sheet.range("C4").value - ).strip() - -# 設定檔案輸出路徑,存於專案根目錄下的 output2 資料夾 -output_path = wb.names['OUTPUT_PATH'].refers_to_range.value -new_file_path = os.path.join( - ".\\{0}".format(output_path), - f"【河洛話注音】{file_name}.xlsx") - -# 儲存新建立的工作簿 -wb.save(new_file_path) - -# 關閉工作簿 -wb.close() - -print(f"檔案已成功存為 {new_file_path}") diff --git "a/a701_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227.py" "b/a701_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227.py" index a83bf06..ae3dffe 100644 --- "a/a701_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227.py" +++ "b/a701_\344\275\234\346\245\255\344\270\255\346\264\273\351\240\201\346\252\224\345\241\253\345\205\245\346\274\242\345\255\227.py" @@ -4,59 +4,61 @@ import xlwings as xw -# 指定虛擬環境的 Python 路徑 -venv_python = os.path.join(".venv", "Scripts", "python.exe") if sys.platform == "win32" else os.path.join(".venv", "bin", "python") +from p710_thiam_han_ji import fill_hanji_in_cells -# (0) 取得專案根目錄。 +# ========================================================================= +# (1) 取得專案根目錄。 +# ========================================================================= +# 獲取當前檔案的路徑 +current_file_path = Path(__file__).resolve() + +# 專案根目錄 +project_root = current_file_path.parent + +print(f"專案根目錄為: {project_root}") + +# ========================================================================= +# (2) 若無指定輸入檔案,則獲取當前作用中的 Excel 檔案並另存新檔。 +# ========================================================================= +wb = None # 使用已打開且處於作用中的 Excel 工作簿 try: + # 嘗試獲取當前作用中的 Excel 工作簿 wb = xw.apps.active.books.active except Exception as e: print(f"發生錯誤: {e}") print("無法找到作用中的 Excel 工作簿") sys.exit(2) -# 獲取活頁簿的完整檔案路徑 -file_path = wb.fullname -print(f"完整檔案路徑: {file_path}") +if not wb: + print("無法執行,可能原因:(1) 未指定輸入檔案;(2) 未找到作用中的 Excel 工作簿") + sys.exit(2) -# 獲取活頁簿的檔案名稱(不包括路徑) -file_name = wb.name -print(f"檔案名稱: {file_name}") +# 清空儲存格內容 +sheet = wb.sheets['漢字注音'] +sheet.range('D3:R166').clear_contents() # 清除 C3:R166 範圍的內容 -# 獲取當前檔案的路徑 -current_file_path = Path(file_path).resolve() +# 將待注音的漢字填入 +fill_hanji_in_cells(wb) -# 專案根目錄 -working_dir_path = current_file_path.parent -print(f"專案根目錄為: {working_dir_path}") - -# (1) 存成作業暫存檔 -new_file_name = "working" +# 將檔案存放路徑設為【專案根目錄】之下 +try: + file_name = str(wb.names['TITLE'].refers_to_range.value).strip() +except KeyError: + print("未找到命名範圍 'TITLE',使用預設名稱") + # file_name = "Tai_Gi_Zu_Im_Bun.xlsx" # 提供一個預設檔案名稱 + setting_sheet = wb.sheets["env"] + file_name = str( + setting_sheet.range("C4").value + ).strip() # 設定檔案輸出路徑,存於專案根目錄下的 output2 資料夾 +output_path = wb.names['OUTPUT_PATH'].refers_to_range.value new_file_path = os.path.join( - working_dir_path, - f"【河洛話注音】{new_file_name}.xlsx") + ".\\{0}".format(output_path), + f"【河洛話注音】{file_name}.xlsx") # 儲存新建立的工作簿 wb.save(new_file_path) -print(f"作業中暫存檔名: {wb.name}") - -# (2) 將儲存格內的舊資料清除 -sheet = wb.sheets['漢字注音'] # 選擇工作表 -sheet.activate() # 將「漢字注音」工作表設為作用中工作表 -sheet.range('A1').select() # 將 A1 儲存格設為作用儲存格 -sheet.range('D3:R166').clear_contents() # 清除 C3:R166 範圍的內容 - -# 獲取 V3 儲存格的合併範圍 -merged_range = sheet.range('V3').merge_area -# 清空合併儲存格的內容 -merged_range.clear_contents() - -# 顯示「已輸入之拼音字母及注音符號」 -named_range = wb.names['顯示注音輸入'] # 選擇名為 "顯示注音輸入" 的命名範圍# 選擇名為 "顯示注音輸入" 的命名範圍 -named_range.refers_to_range.value = True -# 設定 V3 儲存格為作用儲存格 -sheet.range('V3').select() \ No newline at end of file +print(f"待注音漢字已備妥: {new_file_path}") diff --git "a/a702_Zu_Tong_Piau_Zu_Im_\350\210\212\347\211\210.py" "b/a702_Zu_Tong_Piau_Zu_Im_\350\210\212\347\211\210.py" deleted file mode 100644 index 80a184a..0000000 --- "a/a702_Zu_Tong_Piau_Zu_Im_\350\210\212\347\211\210.py" +++ /dev/null @@ -1,27 +0,0 @@ -# ========================================================================= -# 當 Tai_Gi_Zu_Im_Bun.xlsx 檔案已完成人工手動注音後,執行此程式可完成以下工作: -# (1) A730: 將人工填入之拼音及注音,抄寫到漢字的上方(拼音)及下方(注音)。 -# (2) A740: 將【漢字注音】工作表的內容,轉成 HTML 網頁檔案。 -# (3) A750: 將 Tai_Gi_Zu_Im_Bun.xlsx 檔案,依 env 工作表的設定,另存新檔到指定目錄。 -# ========================================================================= -import os -import subprocess -import sys - -# 指定虛擬環境的 Python 路徑 -venv_python = os.path.join(".venv", "Scripts", "python.exe") if sys.platform == "win32" else os.path.join(".venv", "bin", "python") - -# 依次執行三個 Python 檔案 - -# (1) A720: 將 V3 儲存格內的漢字,填入標音用方格。 -subprocess.run([venv_python, "a720_待注音漢字填入標音用方格.py", "-i", "Tai_Gi_Zu_Im_Bun.xlsx"]) - -# (2) A731: 自動為漢字查找讀音,並抄寫到漢字的上方(拼音)及下方(注音)。 -subprocess.run([venv_python, "a731_自動為漢字查注音.py", "-i", "Tai_Gi_Zu_Im_Bun.xlsx"]) - -# (3) A740: 將【漢字注音】工作表的內容,轉成 HTML 網頁檔案。 -subprocess.run([venv_python, "a740_漢字注音轉網頁.py", "-i", "Tai_Gi_Zu_Im_Bun.xlsx"]) - -# (4) A750: 將 Tai_Gi_Zu_Im_Bun.xlsx 檔案,依 env 工作表的設定,另存新檔到指定目錄。 -# subprocess.run([venv_python, "a750_漢字注音存檔.py"]) -subprocess.run([venv_python, "a750_漢字注音存檔.py", "-i", "Tai_Gi_Zu_Im_Bun.xlsx"]) diff --git a/a702_Zu_Tong_Piau_Zu_Im.py "b/a702_\346\237\245\346\211\276\345\217\212\345\241\253\345\205\245\346\274\242\345\255\227\346\250\231\351\237\263.py" similarity index 100% rename from a702_Zu_Tong_Piau_Zu_Im.py rename to "a702_\346\237\245\346\211\276\345\217\212\345\241\253\345\205\245\346\274\242\345\255\227\346\250\231\351\237\263.py" diff --git a/a703_Batch_Zu_Tong_Piau_Zu_Im.py "b/a703_\346\211\271\346\254\241\345\274\217\346\237\245\346\211\276\345\217\212\345\241\253\345\205\245\346\274\242\345\255\227\346\250\231\351\237\263.py" similarity index 100% rename from a703_Batch_Zu_Tong_Piau_Zu_Im.py rename to "a703_\346\211\271\346\254\241\345\274\217\346\237\245\346\211\276\345\217\212\345\241\253\345\205\245\346\274\242\345\255\227\346\250\231\351\237\263.py" diff --git "a/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202_\346\274\242\345\255\227\346\263\250\351\237\263.html" "b/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202_\346\274\242\345\255\227\346\263\250\351\237\263.html" new file mode 100644 index 0000000..92edb71 --- /dev/null +++ "b/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202_\346\274\242\345\255\227\346\263\250\351\237\263.html" @@ -0,0 +1,285 @@ + + + + + 《金剛般若波羅蜜經015。》【漢字注音】 + + + + + 《金剛般若波羅蜜經015。》【漢字注音】 +
+ + 金剛般若波羅蜜經015。 + +
+ +

+None +None +None +None +None +None +None +None +

+None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +

+None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +

+None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +

+None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +None +

+ + + \ No newline at end of file diff --git "a/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224_\346\274\242\345\255\227\346\263\250\351\237\263.html" "b/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224_\346\274\242\345\255\227\346\263\250\351\237\263.html" new file mode 100644 index 0000000..20b24fa --- /dev/null +++ "b/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224_\346\274\242\345\255\227\346\263\250\351\237\263.html" @@ -0,0 +1,360 @@ + + + + + 《金剛般若波羅蜜經015。持經功德分第十五》【漢字注音】 + + + + + 《金剛般若波羅蜜經015。持經功德分第十五》【漢字注音】 +
+ + 金剛般若波羅蜜經015。持經功德分第十五 + +
+ +

+ci5ㄑㄧˊ +king1ㄍㄧㄥˉ +kong1ㄍㆲˉ +tik4ㄉㄧㆻ +hun1ㄏㄨㄣˉ +te7ㄉㆤ˫ +sip8ㄒ一ㆴ˙ +ngoo2ㄫㆦˋ +

+ +su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +jiok8ㆢㄧㆦㆻ˙ +iu2ㄧㄨˋ +sian3ㄒㄧㄢ˪ +lam5ㄌㆰˊ +zu2ㄗㄨˋ + +sian3ㄒㄧㄢ˪ +lu2ㄌㄨˋ +jin5ㆢㄧㄣˊ + +coo1ㄘㆦˉ +jit8ㆢㄧㆵ˙ +hun1ㄏㄨㄣˉ +i2ㄧˋ +hing5ㄏㄧㄥˊ +ho5ㄏㄜˊ +sa1ㄙㄚˉ +ting2ㄉㄧㄥˋ +sin1ㄒㄧㄣˉ +poo3ㄅㆦ˪ +si1ㄒㄧˉ + +tiong1ㄉㄧㆲˉ +jit8ㆢㄧㆵ˙ +hun1ㄏㄨㄣˉ +hok8ㄏㆦㆻ˙ +i2ㄧˋ +hing5ㄏㄧㄥˊ +ho5ㄏㄜˊ +sa1ㄙㄚˉ +ting2ㄉㄧㄥˋ +sin1ㄒㄧㄣˉ +poo3ㄅㆦ˪ +si1ㄒㄧˉ + +hoo7ㄏㆦ˫ +jit8ㆢㄧㆵ˙ +hun1ㄏㄨㄣˉ +ik8ㄧㆻ˙ +i2ㄧˋ +hing5ㄏㄧㄥˊ +ho5ㄏㄜˊ +sa1ㄙㄚˉ +ting2ㄉㄧㄥˋ +sin1ㄒㄧㄣˉ +poo3ㄅㆦ˪ +si1ㄒㄧˉ + +ju5ㆡㄨˊ +si6ㄒㄧˋ +bu5ㆠㄨˊ +liong7ㄌㄧㆲ˫ +pik4ㄅㄧㆻ +cian1ㄑㄧㄢˉ +ban7ㆠㄢ˫ +ik4ㄧㆻ +kiap4ㄍㄧㄚㆴ + +i2ㄧˋ +sin1ㄒㄧㄣˉ +poo3ㄅㆦ˪ +si1ㄒㄧˉ + +

+jiok8ㆢㄧㆦㆻ˙ +hok8ㄏㆦㆻ˙ +iu2ㄧㄨˋ +jin5ㆢㄧㄣˊ + +bun5ㆠㄨㄣˊ +cu2ㄘㄨˋ +king1ㄍㄧㄥˉ +tian2ㄉㄧㄢˋ + +sin3ㄒㄧㄣ˪ +sim1ㄒㄧㆬˉ +put4ㄅㄨㆵ +gik8ㆣㄧㆻ˙ + +ki5ㄍㄧˊ +hok4ㄏㆦㆻ +sing3ㄒㄧㄥ˪ +pi2ㄅㄧˋ + +ho5ㄏㄜˊ +hong2ㄏㆲˋ +su1ㄙㄨˉ +sia2ㄒㄧㄚˋ + +siu7ㄒㄧㄨ˫ +ci5ㄑㄧˊ + +thok8ㄊㆦㆻ˙ +siong7ㄒㄧㆲ˫ + +ui5ㄨㄧˊ +jin5ㆢㄧㄣˊ +kai2ㄍㄞˋ +suat4ㄙㄨㄚㆵ + +

+su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +i2ㄧˋ +iau3ㄧㄠ˪ +gian5ㆣㄧㄢˊ +zi1ㄐㄧˉ + +si6ㄒㄧˋ +king1ㄍㄧㄥˉ +iu2ㄧㄨˋ +put4ㄅㄨㆵ +kho2ㄎㄜˋ +su1ㄙㄨˉ +gi7ㆣㄧ˫ + +put4ㄅㄨㆵ +kho2ㄎㄜˋ +cing1ㄑㄧㄥˉ +liong7ㄌㄧㆲ˫ + +bu5ㆠㄨˊ +pian1ㄅㄧㄢˉ +kong1ㄍㆲˉ +tik4ㄉㄧㆻ + +ju5ㆡㄨˊ +lai5ㄌㄞˊ +ui5ㄨㄧˊ +huat4ㄏㄨㄚㆵ +tai7ㄉㄞ˫ +sing5ㄒㄧㄥˊ +zia2ㄐㄧㄚˋ +suat4ㄙㄨㄚㆵ + +ui5ㄨㄧˊ +huat4ㄏㄨㄚㆵ +zue3ㄗㄨㆤ˪ +siang7ㄒㄧㄤ˫ +sing5ㄒㄧㄥˊ +zia2ㄐㄧㄚˋ +suat4ㄙㄨㄚㆵ + +jiok8ㆢㄧㆦㆻ˙ +iu2ㄧㄨˋ +jin5ㆢㄧㄣˊ +ling5ㄌㄧㄥˊ +siu7ㄒㄧㄨ˫ +ci5ㄑㄧˊ + +thok8ㄊㆦㆻ˙ +siong7ㄒㄧㆲ˫ + +kong2ㄍㆲˋ +ui5ㄨㄧˊ +jin5ㆢㄧㄣˊ +suat4ㄙㄨㄚㆵ + +ju5ㆡㄨˊ +lai5ㄌㄞˊ +sik4ㄒㄧㆻ +ti1ㄉㄧˉ +si6ㄒㄧˋ +jin5ㆢㄧㄣˊ + +sik4ㄒㄧㆻ +kian3ㄍㄧㄢ˪ +si6ㄒㄧˋ +jin5ㆢㄧㄣˊ + +kai1ㄍㄞˉ +tit4ㄉㄧㆵ +sing5ㄒㄧㄥˊ +ziu7ㄐㄧㄨ˫ +put4ㄅㄨㆵ +kho2ㄎㄜˋ +liong7ㄌㄧㆲ˫ + +put4ㄅㄨㆵ +kho2ㄎㄜˋ +cing1ㄑㄧㄥˉ + +bu5ㆠㄨˊ +iu2ㄧㄨˋ +pian1ㄅㄧㄢˉ + +put4ㄅㄨㆵ +kho2ㄎㄜˋ +su1ㄙㄨˉ +gi7ㆣㄧ˫ +kong1ㄍㆲˉ +tik4ㄉㄧㆻ + +ju5ㆡㄨˊ +si6ㄒㄧˋ +jin5ㆢㄧㄣˊ +ting2ㄉㄧㄥˋ + +zik4ㄐㄧㆻ +ui5ㄨㄧˊ +ho5ㄏㄜˊ +tam1ㄉㆰˉ +ju5ㆡㄨˊ +lai5ㄌㄞˊ +a1ㄚˉ +loo7ㄌㆦ˫ +to1ㄉㄜˉ +lo5ㄌㄜˊ +sam3ㄙㆰ˪ +biau2ㆠㄧㄠˋ +sam3ㄙㆰ˪ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +ho5ㄏㄜˊ +i2ㄧˋ +koo3ㄍㆦ˪ + +su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +jiok8ㆢㄧㆦㆻ˙ +ngau7ㄫㄠ˫ +sio2ㄒㄧㄜˋ +huat4ㄏㄨㄚㆵ +zia2ㄐㄧㄚˋ + +tiok8ㄉㄧㆦㆻ˙ +ngoo2ㄫㆦˋ +kian3ㄍㄧㄢ˪ + +jin5ㆢㄧㄣˊ +kian3ㄍㄧㄢ˪ + +ziong3ㄐㄧㆲ˪ +sing1ㄒㄧㄥˉ +kian3ㄍㄧㄢ˪ + +siu7ㄒㄧㄨ˫ +zia2ㄐㄧㄚˋ +kian3ㄍㄧㄢ˪ + +zik4ㄐㄧㆻ +u5ㄨˊ +cu2ㄘㄨˋ +king1ㄍㄧㄥˉ +put4ㄅㄨㆵ +ling5ㄌㄧㄥˊ +thing3ㄊㄧㄥ˪ +siu7ㄒㄧㄨ˫ + +thok8ㄊㆦㆻ˙ +siong7ㄒㄧㆲ˫ + +ui5ㄨㄧˊ +jin5ㆢㄧㄣˊ +kai2ㄍㄞˋ +suat4ㄙㄨㄚㆵ + +

+su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +zai6ㄗㄞˋ +zai6ㄗㄞˋ +cu3ㄘㄨ˪ +cu3ㄘㄨ˪ + +jiok8ㆢㄧㆦㆻ˙ +iu2ㄧㄨˋ +cu2ㄘㄨˋ +king1ㄍㄧㄥˉ + +it4ㄧㆵ +ce3ㄘㆤ˪ +se3ㄙㆤ˪ +kan1ㄍㄢˉ + +thian1ㄊㄧㄢˉ + +jin5ㆢㄧㄣˊ + +a1ㄚˉ +siu1ㄒㄧㄨˉ +lo5ㄌㄜˊ +soo2ㄙㆦˋ +in3ㄧㄣ˪ +king1ㄍㄧㄥˉ +iong2ㄧㆲˋ + +tong1ㄉㆲˉ +ti1ㄉㄧˉ +cu2ㄘㄨˋ +cu3ㄘㄨ˪ + +zik4ㄐㄧㆻ +ui5ㄨㄧˊ +si6ㄒㄧˋ +thap4ㄊㄚㆴ + +kai1ㄍㄞˉ +in3ㄧㄣ˪ +kiong1ㄍㄧㆲˉ +king3ㄍㄧㄥ˪ + +zok4ㄗㆦㆻ +le2ㄌㆤˋ +ui5ㄨㄧˊ +jiau2ㆢㄧㄠˋ + +i2ㄧˋ +zu1ㄗㄨˉ +hua3ㄏㄨㄚ˪ +hiong1ㄏㄧㆲˉ +ji5ㆢㄧˊ +san3ㄙㄢ˪ +ki5ㄍㄧˊ +cu3ㄘㄨ˪ + + +

+ + + \ No newline at end of file diff --git "a/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223016\343\200\202\350\203\275\346\267\250\346\245\255\351\232\234\345\210\206\347\254\254\345\215\201\345\205\255_\346\274\242\345\255\227\346\263\250\351\237\263.html" "b/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223016\343\200\202\350\203\275\346\267\250\346\245\255\351\232\234\345\210\206\347\254\254\345\215\201\345\205\255_\346\274\242\345\255\227\346\263\250\351\237\263.html" new file mode 100644 index 0000000..c94f80b --- /dev/null +++ "b/docs/\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223016\343\200\202\350\203\275\346\267\250\346\245\255\351\232\234\345\210\206\347\254\254\345\215\201\345\205\255_\346\274\242\345\255\227\346\263\250\351\237\263.html" @@ -0,0 +1,285 @@ + + + + + 《金剛般若波羅蜜經016。能淨業障分第十六》【漢字注音】 + + + + + 《金剛般若波羅蜜經016。能淨業障分第十六》【漢字注音】 +
+ + 金剛般若波羅蜜經016。能淨業障分第十六 + +
+ +

+ling5ㄌㄧㄥˊ +zing7ㄐㄧㄥ˫ +giap8ㆣㄧㄚㆴ˙ +ziong3ㄐㄧㆲ˪ +hun1ㄏㄨㄣˉ +te7ㄉㆤ˫ +sip8ㄒ一ㆴ˙ +liok8ㄌㄧㆦㆻ˙ +

+hok8ㄏㆦㆻ˙ +cu3ㄘㄨ˪ + + +su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +sian3ㄒㄧㄢ˪ +lam5ㄌㆰˊ +zu2ㄗㄨˋ + +sian3ㄒㄧㄢ˪ +lu2ㄌㄨˋ +jin5ㆢㄧㄣˊ + +siu7ㄒㄧㄨ˫ +ci5ㄑㄧˊ + +thok8ㄊㆦㆻ˙ +siong7ㄒㄧㆲ˫ +cu2ㄘㄨˋ +king1ㄍㄧㄥˉ + +jiok8ㆢㄧㆦㆻ˙ +ui5ㄨㄧˊ +jin5ㆢㄧㄣˊ +khing1ㄎㄧㄥˉ +zian7ㄐㄧㄢ˫ + +si6ㄒㄧˋ +jin5ㆢㄧㄣˊ +sian1ㄒㄧㄢˉ +se3ㄙㆤ˪ +zue6ㄗㄨㆤˋ +giap8ㆣㄧㄚㆴ˙ + +in3ㄧㄣ˪ +tui7ㄉㄨㄧ˫ +ok4ㆦㆻ +to7ㄉㄜ˫ + +i2ㄧˋ +kin1ㄍㄧㄣˉ +se3ㄙㆤ˪ +jin5ㆢㄧㄣˊ +khing1ㄎㄧㄥˉ +zian7ㄐㄧㄢ˫ +koo3ㄍㆦ˪ + +sian1ㄒㄧㄢˉ +se3ㄙㆤ˪ +zue6ㄗㄨㆤˋ +giap8ㆣㄧㄚㆴ˙ + +zik4ㄐㄧㆻ +ui5ㄨㄧˊ +siau1ㄒㄧㄠˉ +biat8ㆠㄧㄚㆵ˙ + +tong1ㄉㆲˉ +tit4ㄉㄧㆵ +a1ㄚˉ +loo7ㄌㆦ˫ +to1ㄉㄜˉ +lo5ㄌㄜˊ +sam3ㄙㆰ˪ +biau2ㆠㄧㄠˋ +sam3ㄙㆰ˪ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +

+su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +ngoo2ㄫㆦˋ +liam7ㄌㄧㆰ˫ +ko3ㄍㄜ˪ +khu2ㄎㄨˋ +bu5ㆠㄨˊ +liong7ㄌㄧㆲ˫ +a1ㄚˉ +zing1ㄐㄧㄥˉ +ki5ㄍㄧˊ +kiap4ㄍㄧㄚㆴ + +u5ㄨˊ +jian5ㆢㄧㄢˊ +ting1ㄉㄧㄥˉ +hut8ㄏㄨㆵ˙ +zian5ㄐㄧㄢˊ + +tit4ㄉㄧㆵ +tit8ㄉㄧㆵ˙ +pat4ㄅㄚㆵ +pik4ㄅㄧㆻ +su3ㄙㄨ˪ +cian1ㄑㄧㄢˉ +ban7ㆠㄢ˫ +ik4ㄧㆻ +na2ㄋㄚˋ +iu5ㄧㄨˊ +thann1ㄊㆩˉ +zu1ㄗㄨˉ +hut8ㄏㄨㆵ˙ + +sik4ㄒㄧㆻ +kai1ㄍㄞˉ +king1ㄍㄧㄥˉ +iong2ㄧㆲˋ +sing5ㄒㄧㄥˊ +su7ㄙㄨ˫ + +bu5ㆠㄨˊ +khong1ㄎㆲˉ +ko3ㄍㄜ˪ +zia2ㄐㄧㄚˋ + +jiok8ㆢㄧㆦㆻ˙ +hok8ㄏㆦㆻ˙ +iu2ㄧㄨˋ +jin5ㆢㄧㄣˊ + +u5ㄨˊ +hoo7ㄏㆦ˫ +buah8ㆠㄨㄚㆷ˙ +se3ㄙㆤ˪ + +ling5ㄌㄧㄥˊ +siu7ㄒㄧㄨ˫ +ci5ㄑㄧˊ + +thok8ㄊㆦㆻ˙ +siong7ㄒㄧㆲ˫ +cu2ㄘㄨˋ +king1ㄍㄧㄥˉ + +soo2ㄙㆦˋ +tit4ㄉㄧㆵ +kong1ㄍㆲˉ +tik4ㄉㄧㆻ + +u5ㄨˊ +ngoo2ㄫㆦˋ +soo2ㄙㆦˋ +king1ㄍㄧㄥˉ +iong2ㄧㆲˋ +zu1ㄗㄨˉ +hut8ㄏㄨㆵ˙ +kong1ㄍㆲˉ +tik4ㄉㄧㆻ + +pik4ㄅㄧㆻ +hun1ㄏㄨㄣˉ +put4ㄅㄨㆵ +kip8ㄍ一ㆴ˙ +it4ㄧㆵ + +cian1ㄑㄧㄢˉ +ban7ㆠㄢ˫ +ik4ㄧㆻ +hun1ㄏㄨㄣˉ + +nai2ㄋㄞˋ +zi3ㄐㄧ˪ +suan3ㄙㄨㄢ˪ +soo3ㄙㆦ˪ +phi3ㄆㄧ˪ +ju7ㆡㄨ˫ +soo2ㄙㆦˋ +put4ㄅㄨㆵ +ling5ㄌㄧㄥˊ +kip8ㄍ一ㆴ˙ + +

+su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +jiok8ㆢㄧㆦㆻ˙ +sian3ㄒㄧㄢ˪ +lam5ㄌㆰˊ +zu2ㄗㄨˋ + +sian3ㄒㄧㄢ˪ +lu2ㄌㄨˋ +jin5ㆢㄧㄣˊ + +u5ㄨˊ +hoo7ㄏㆦ˫ +buah8ㆠㄨㄚㆷ˙ +se3ㄙㆤ˪ + +iu2ㄧㄨˋ +siu7ㄒㄧㄨ˫ +ci5ㄑㄧˊ + +thok8ㄊㆦㆻ˙ +siong7ㄒㄧㆲ˫ +cu2ㄘㄨˋ +king1ㄍㄧㄥˉ + +soo2ㄙㆦˋ +tit4ㄉㄧㆵ +kong1ㄍㆲˉ +tik4ㄉㄧㆻ + +ngoo2ㄫㆦˋ +jiok8ㆢㄧㆦㆻ˙ +khu7ㄎㄨ˫ +suat4ㄙㄨㄚㆵ +zia2ㄐㄧㄚˋ + +hik8ㄏㄧㆻ˙ +iu2ㄧㄨˋ +jin5ㆢㄧㄣˊ +bun5ㆠㄨㄣˊ + +sim1ㄒㄧㆬˉ +zik4ㄐㄧㆻ +kong5ㄍㆲˊ +luan7ㄌㄨㄢ˫ + +hoo5ㄏㆦˊ +gi5ㆣㄧˊ +put4ㄅㄨㆵ +sin3ㄒㄧㄣ˪ + +

+su1ㄙㄨˉ +phoo5ㄆㆦˊ +the5ㄊㆤˊ + +tong1ㄉㆲˉ +ti1ㄉㄧˉ +si6ㄒㄧˋ +king1ㄍㄧㄥˉ +gi7ㆣㄧ˫ +put4ㄅㄨㆵ +kho2ㄎㄜˋ +su1ㄙㄨˉ +gi7ㆣㄧ˫ + +ko2ㄍㄜˋ +po3ㄅㄜ˪ +ik8ㄧㆻ˙ +put4ㄅㄨㆵ +kho2ㄎㄜˋ +su1ㄙㄨˉ +gi7ㆣㄧ˫ + + +

+ + + \ No newline at end of file diff --git "a/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221working.xlsx" "b/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221working.xlsx" index b097293..70657ac 100644 Binary files "a/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221working.xlsx" and "b/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221working.xlsx" differ diff --git "a/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224.xlsx" "b/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224.xlsx" index d11fa33..9a21048 100644 Binary files "a/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224.xlsx" and "b/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223015\343\200\202\346\214\201\347\266\223\345\212\237\345\276\267\345\210\206\347\254\254\345\215\201\344\272\224.xlsx" differ diff --git "a/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223016\343\200\202\350\203\275\346\267\250\346\245\255\351\232\234\345\210\206\347\254\254\345\215\201\345\205\255.xlsx" "b/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223016\343\200\202\350\203\275\346\267\250\346\245\255\351\232\234\345\210\206\347\254\254\345\215\201\345\205\255.xlsx" new file mode 100644 index 0000000..f32682a Binary files /dev/null and "b/output2/\343\200\220\346\262\263\346\264\233\350\251\261\346\263\250\351\237\263\343\200\221\351\207\221\345\211\233\350\210\254\350\213\245\346\263\242\347\276\205\350\234\234\347\266\223016\343\200\202\350\203\275\346\267\250\346\245\255\351\232\234\345\210\206\347\254\254\345\215\201\345\205\255.xlsx" differ