diff --git a/000000_DIW_2504회_B형_채점결과_0점카운트.xlsx b/000000_DIW_2504회_B형_채점결과_0점카운트.xlsx new file mode 100644 index 0000000..cdfa50d Binary files /dev/null and b/000000_DIW_2504회_B형_채점결과_0점카운트.xlsx differ diff --git a/250501_DIW_2504회_A형_채점결과.xlsx b/250501_DIW_2504회_A형_채점결과.xlsx new file mode 100644 index 0000000..759a530 Binary files /dev/null and b/250501_DIW_2504회_A형_채점결과.xlsx differ diff --git a/250501_DIW_2504회_B형_채점결과.xlsx b/250501_DIW_2504회_B형_채점결과.xlsx new file mode 100644 index 0000000..5782c5a Binary files /dev/null and b/250501_DIW_2504회_B형_채점결과.xlsx differ diff --git a/250501_DIW_2504회_C형_채점결과.xlsx b/250501_DIW_2504회_C형_채점결과.xlsx new file mode 100644 index 0000000..ab18a38 Binary files /dev/null and b/250501_DIW_2504회_C형_채점결과.xlsx differ diff --git a/conversion_hwp_to_xml.py b/conversion_hwp_to_xml.py new file mode 100644 index 0000000..051d7c6 --- /dev/null +++ b/conversion_hwp_to_xml.py @@ -0,0 +1,162 @@ +# from pyhwpx import Hwp # 임포트 + +# hwp = Hwp() # 아래아한글 실행(프로그램이 실행되어 있는 경우, 기존 한/글 프로그램에 연결됨) +# hwp.insert_text("Hello world!\r\n") # 문자열 삽입 +# hwp.create_table(5, 5, treat_as_char=True) # 5행5열의 표 삽입(글자처럼 취급) + +# for i in range(25): # 표에 내용 삽입 +# hwp.insert_text(i) +# hwp.TableRightCell() + +# hwp.MoveDown() + +# hwp.insert_picture("https://ultralytics.com/images/zidane.jpg") # 이미지 삽입 +# hwp.ShapeObjAttachCaption() # 캡션 삽입 +# hwp.insert_text("Zidane") # 캡션 문자열 입력 +# hwp.ParagraphShapeAlignCenter() # 캡션 가운데정렬 +# hwp.SelectAll() # 캡션 전체선택 +# hwp.set_font(Bold=True, FaceName="돋움", Height=20, TextColor="Red") # 캡션 글자모양 변경 +# hwp.Cancel() # 선택해제 +# hwp.Close() # 캡션 편집 종료 + +import win32com.client +import os +import logging +import shutil +from pathlib import Path +from pywinauto import Application +from itertools import chain +import time + +import win32com.client.gencache + +def setup_logging(): + """로깅 설정""" + logging.basicConfig( + level = logging.INFO, + format = '%(asctime)s - %(levelname)s - %(message)s', + handlers = [ + logging.FileHandler('hwp_conversion.log', encoding='utf-8'), + logging.StreamHandler() + ] + ) + +def convert_hwp_to_xml(input_folder, output_folder): + """ + 지정된 폴더 내의 모든 HWP 파일을 XML로 변환 + + Args: + input_folder (str): HWP 파일이 있는 폴더 경로 + output_folder (str): XML 파일을 저장할 폴더 경로 + """ + try: + # 한글 애플리케이션 객체 생성 + # hwp = win32com.client.Dispatch("HWPFrame.HwpObject") + hwp = win32com.client.gencache.EnsureDispatch("HWPFrame.HwpObject") + + # 자동화 보안 설정 + hwp.RegisterModule("FilePathCheckDLL", "FilePathCheckerModule") + hwp.XHwpWindows.Item(0).Visible = False + # hwp.XHwpWindows.Item(0).Visible = True + + # 출력 폴더가 없으면 생성 + os.makedirs(output_folder, exist_ok=True) + + # HWP 파일 검색 및 변환 + input_path = Path(input_folder) + + # for hwp_file in input_path.glob("DIW_2503B.hwpx"): + for hwp_file in chain(input_path.glob("*.hwp"), input_path.glob("*.hwpx")): + try: + # 파일 열기 + if hwp_file.suffix == ".hwpx": + hwp.Open(str(hwp_file), "HWPX") + elif hwp_file.suffix == ".hwp": + hwp.Open(str(hwp_file), "HWP") + + #hwpactionid 기반 + hwp.Run("MoveDocBegin") + hwp.Run("SelectCtrlFront") + + while True: + curr = hwp.KeyIndicator() + # print(curr[-1]) + hwp.Run("SelectCtrlFront") + hwp.SetMessageBoxMode(0x111111) + hwp.Run("VtChartConverter") + + next = hwp.KeyIndicator() + if next == curr: + break + + hwp.SetMessageBoxMode(0x0000F0) #메시지 박스 원래대로 + + # XML 파일 경로 설정 + xml_filename = hwp_file.stem + ".hml" + xml_path = os.path.join(output_folder, xml_filename) + # print(f"xml_path:{xml_path} type:{type(xml_path)}") + # XML로 저장 + hwp.SaveAs(xml_path, "HWPML2X", "") + + logging.info(f"변환 성공: {hwp_file.name} -> {xml_filename}") + + except Exception as e: + logging.error(f"파일 변환 실패: {hwp_file.name} -> {e}") + + finally: + # 현재 문서 닫기 + hwp.Clear(3) + + except Exception as e: + + logging.error(f"프로그램 실행 오류: {str(e)}") + + finally: + # 한글 프로그램 종료 + try: + hwp.Quit() + except: + pass + +def delete_gen_py(): + # gen_py 디렉토리 경로 + + gen_py_dir = os.path.join(os.environ['LOCALAPPDATA'], 'Temp', 'gen_py') + + # gen_py 디렉토리 삭제 + if os.path.exists(gen_py_dir): + shutil.rmtree(gen_py_dir) + print(f'{gen_py_dir} 디렉토리를 삭제했습니다.') + +if __name__ == "__main__": + + exam_rounds = [ + "2504", + # "2504_3" + ] + + delete_gen_py() + + # 로깅 설정 + setup_logging() + + # 변환할 폴더 경로 설정 + # 배열 동시에 변환하면 에러발생 -> 하나씩 변환 -> time.sleep(0.5) 추가 + for exam_round in exam_rounds: + folders = [ + (f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\input\\{exam_round}\\A\\DIW",f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\output\\{exam_round}\\A\\DIW"), + (f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\input\\{exam_round}\\B\\DIW",f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\output\\{exam_round}\\B\\DIW"), + (f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\input\\{exam_round}\\C\\DIW",f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\output\\{exam_round}\\C\\DIW"), + # (f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\input\\{exam_round}\\D\\DIW",f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\output\\{exam_round}\\D\\DIW"), + # (f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\input\\{exam_round}\\E\\DIW",f"C:\\Users\\dra\\project\\HWP\\HWP-Scoring\\output\\{exam_round}\\E\\DIW"), + ] + + # 변환 실행 + for input, output in folders: + try: + logging.info(f"폴더 변환 시작: {input} -> {output}") + convert_hwp_to_xml(input, output) + logging.info(f"폴더 변환 완료: {input} -> {output}") + time.sleep(0.5) + except Exception as e: + logging.error(f"폴더 변환 중 오류 발생: {input} -> {output}, 오류: {e}") diff --git a/회차별채점자료/2501/EXCEL_채점결과/0124_2501A.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0124_2501A.xlsx new file mode 100644 index 0000000..aa88c4d Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0124_2501A.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0124_2501B.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0124_2501B.xlsx new file mode 100644 index 0000000..449598c Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0124_2501B.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0124_2501C.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0124_2501C.xlsx new file mode 100644 index 0000000..0e610b7 Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0124_2501C.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0203_2501A.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0203_2501A.xlsx new file mode 100644 index 0000000..73ad771 Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0203_2501A.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0203_2501B.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0203_2501B.xlsx new file mode 100644 index 0000000..ebcc61c Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0203_2501B.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0203_2501C.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0203_2501C.xlsx new file mode 100644 index 0000000..1fb8561 Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0203_2501C.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0206_2501A.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0206_2501A.xlsx new file mode 100644 index 0000000..ebbc30f Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0206_2501A.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0206_2501B.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0206_2501B.xlsx new file mode 100644 index 0000000..179e7b8 Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0206_2501B.xlsx differ diff --git a/회차별채점자료/2501/EXCEL_채점결과/0206_2501C.xlsx b/회차별채점자료/2501/EXCEL_채점결과/0206_2501C.xlsx new file mode 100644 index 0000000..741d6f4 Binary files /dev/null and b/회차별채점자료/2501/EXCEL_채점결과/0206_2501C.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250225_result_2502A.xlsx b/회차별채점자료/2502/excel_채점결과/250225_result_2502A.xlsx new file mode 100644 index 0000000..325bc3d Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250225_result_2502A.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250225_result_2502B.xlsx b/회차별채점자료/2502/excel_채점결과/250225_result_2502B.xlsx new file mode 100644 index 0000000..9d0beec Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250225_result_2502B.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250225_result_2502C.xlsx b/회차별채점자료/2502/excel_채점결과/250225_result_2502C.xlsx new file mode 100644 index 0000000..c8fcbdd Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250225_result_2502C.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250225_result_2502D.xlsx b/회차별채점자료/2502/excel_채점결과/250225_result_2502D.xlsx new file mode 100644 index 0000000..bbb1792 Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250225_result_2502D.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250225_result_2502E.xlsx b/회차별채점자료/2502/excel_채점결과/250225_result_2502E.xlsx new file mode 100644 index 0000000..c586c2c Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250225_result_2502E.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250227_DIW_2502A_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502A_채점결과.xlsx new file mode 100644 index 0000000..7adc73b Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502A_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250227_DIW_2502B_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502B_채점결과.xlsx new file mode 100644 index 0000000..27efa83 Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502B_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250227_DIW_2502C_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502C_채점결과.xlsx new file mode 100644 index 0000000..8d13e3c Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502C_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250227_DIW_2502D_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502D_채점결과.xlsx new file mode 100644 index 0000000..ca7871c Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502D_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250227_DIW_2502E_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502E_채점결과.xlsx new file mode 100644 index 0000000..335133b Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250227_DIW_2502E_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250228_DIW_2502A_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250228_DIW_2502A_채점결과.xlsx new file mode 100644 index 0000000..d9c9a8c Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250228_DIW_2502A_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250228_DIW_2502B_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250228_DIW_2502B_채점결과.xlsx new file mode 100644 index 0000000..4d4023e Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250228_DIW_2502B_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점결과/250228_DIW_2502E_채점결과.xlsx b/회차별채점자료/2502/excel_채점결과/250228_DIW_2502E_채점결과.xlsx new file mode 100644 index 0000000..45fba5a Binary files /dev/null and b/회차별채점자료/2502/excel_채점결과/250228_DIW_2502E_채점결과.xlsx differ diff --git a/회차별채점자료/2502/excel_채점기준표/DIW_2502A.xlsx b/회차별채점자료/2502/excel_채점기준표/DIW_2502A.xlsx new file mode 100644 index 0000000..c3a9d5b Binary files /dev/null and b/회차별채점자료/2502/excel_채점기준표/DIW_2502A.xlsx differ diff --git a/회차별채점자료/2502/excel_채점기준표/DIW_2502B.xlsx b/회차별채점자료/2502/excel_채점기준표/DIW_2502B.xlsx new file mode 100644 index 0000000..60bc3d1 Binary files /dev/null and b/회차별채점자료/2502/excel_채점기준표/DIW_2502B.xlsx differ diff --git a/회차별채점자료/2502/excel_채점기준표/DIW_2502C.xlsx b/회차별채점자료/2502/excel_채점기준표/DIW_2502C.xlsx new file mode 100644 index 0000000..e9dd23b Binary files /dev/null and b/회차별채점자료/2502/excel_채점기준표/DIW_2502C.xlsx differ diff --git a/회차별채점자료/2502/excel_채점기준표/DIW_2502D.xlsx b/회차별채점자료/2502/excel_채점기준표/DIW_2502D.xlsx new file mode 100644 index 0000000..4202100 Binary files /dev/null and b/회차별채점자료/2502/excel_채점기준표/DIW_2502D.xlsx differ diff --git a/회차별채점자료/2502/excel_채점기준표/DIW_2502E.xlsx b/회차별채점자료/2502/excel_채점기준표/DIW_2502E.xlsx new file mode 100644 index 0000000..c621cce Binary files /dev/null and b/회차별채점자료/2502/excel_채점기준표/DIW_2502E.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250325_DIW_2503A_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250325_DIW_2503A_채점결과.xlsx new file mode 100644 index 0000000..02c3690 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250325_DIW_2503A_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250326_DIW_2503A_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250326_DIW_2503A_채점결과.xlsx new file mode 100644 index 0000000..6d63553 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250326_DIW_2503A_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250326_DIW_2503B_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250326_DIW_2503B_채점결과.xlsx new file mode 100644 index 0000000..ab0f70f Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250326_DIW_2503B_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250326_DIW_2503C_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250326_DIW_2503C_채점결과.xlsx new file mode 100644 index 0000000..281ed52 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250326_DIW_2503C_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250327_DIW_2503A_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250327_DIW_2503A_채점결과.xlsx new file mode 100644 index 0000000..1752aa9 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250327_DIW_2503A_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250327_DIW_2503B_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250327_DIW_2503B_채점결과.xlsx new file mode 100644 index 0000000..0166ecf Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250327_DIW_2503B_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250327_DIW_2503C_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250327_DIW_2503C_채점결과.xlsx new file mode 100644 index 0000000..f5f487d Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250327_DIW_2503C_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250331_DIW_2503A_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250331_DIW_2503A_채점결과.xlsx new file mode 100644 index 0000000..048b973 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250331_DIW_2503A_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250331_DIW_2503B_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250331_DIW_2503B_채점결과.xlsx new file mode 100644 index 0000000..8c25b0f Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250331_DIW_2503B_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250331_DIW_2503C_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250331_DIW_2503C_채점결과.xlsx new file mode 100644 index 0000000..714f902 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250331_DIW_2503C_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_TEST.xlsx new file mode 100644 index 0000000..ca9c299 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_채점결과 copy.xlsx b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_채점결과 copy.xlsx new file mode 100644 index 0000000..f69be7f Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_채점결과 copy.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_채점결과.xlsx new file mode 100644 index 0000000..cf1c507 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503A_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250402_DIW_2503B_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503B_채점결과.xlsx new file mode 100644 index 0000000..4feb91e Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503B_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250402_DIW_2503C_채점결과.xlsx b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503C_채점결과.xlsx new file mode 100644 index 0000000..c4f03eb Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250402_DIW_2503C_채점결과.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250417_DIW_2503A_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250417_DIW_2503A_TEST.xlsx new file mode 100644 index 0000000..fee98f8 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250417_DIW_2503A_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250417_DIW_2503B_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250417_DIW_2503B_TEST.xlsx new file mode 100644 index 0000000..3bcd3c6 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250417_DIW_2503B_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250417_DIW_2503C_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250417_DIW_2503C_TEST.xlsx new file mode 100644 index 0000000..1d1f15e Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250417_DIW_2503C_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250418_DIW_2503A_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250418_DIW_2503A_TEST.xlsx new file mode 100644 index 0000000..04c0c04 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250418_DIW_2503A_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250421_DIW_2503A_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250421_DIW_2503A_TEST.xlsx new file mode 100644 index 0000000..6d663b0 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250421_DIW_2503A_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250422_DIW_2503A_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250422_DIW_2503A_TEST.xlsx new file mode 100644 index 0000000..61e7ef1 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250422_DIW_2503A_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250423_DIW_2503A_TEST.xlsx b/회차별채점자료/2503/excel_채점결과/250423_DIW_2503A_TEST.xlsx new file mode 100644 index 0000000..75337a3 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250423_DIW_2503A_TEST.xlsx differ diff --git a/회차별채점자료/2503/excel_채점결과/250423_DIW_2503A_TEST_2.xlsx b/회차별채점자료/2503/excel_채점결과/250423_DIW_2503A_TEST_2.xlsx new file mode 100644 index 0000000..f431ea1 Binary files /dev/null and b/회차별채점자료/2503/excel_채점결과/250423_DIW_2503A_TEST_2.xlsx differ diff --git a/회차별채점자료/2503/excel_채점기준표/DIW_2503A.xlsx b/회차별채점자료/2503/excel_채점기준표/DIW_2503A.xlsx new file mode 100644 index 0000000..4b64aa0 Binary files /dev/null and b/회차별채점자료/2503/excel_채점기준표/DIW_2503A.xlsx differ diff --git a/회차별채점자료/2503/excel_채점기준표/DIW_2503B.xlsx b/회차별채점자료/2503/excel_채점기준표/DIW_2503B.xlsx new file mode 100644 index 0000000..bd076ad Binary files /dev/null and b/회차별채점자료/2503/excel_채점기준표/DIW_2503B.xlsx differ diff --git a/회차별채점자료/2503/excel_채점기준표/DIW_2503C.xlsx b/회차별채점자료/2503/excel_채점기준표/DIW_2503C.xlsx new file mode 100644 index 0000000..92a9f67 Binary files /dev/null and b/회차별채점자료/2503/excel_채점기준표/DIW_2503C.xlsx differ diff --git a/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_A형_채점결과.xlsx b/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_A형_채점결과.xlsx new file mode 100644 index 0000000..052512f Binary files /dev/null and b/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_A형_채점결과.xlsx differ diff --git a/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_B형_채점결과.xlsx b/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_B형_채점결과.xlsx new file mode 100644 index 0000000..4392c6f Binary files /dev/null and b/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_B형_채점결과.xlsx differ diff --git a/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_C형_채점결과.xlsx b/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_C형_채점결과.xlsx new file mode 100644 index 0000000..ba416c8 Binary files /dev/null and b/회차별채점자료/2504/excel_채점결과/250429_DIW_2504회_C형_채점결과.xlsx differ diff --git a/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_A형_채점결과.xlsx b/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_A형_채점결과.xlsx new file mode 100644 index 0000000..15ea1b8 Binary files /dev/null and b/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_A형_채점결과.xlsx differ diff --git a/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_B형_채점결과.xlsx b/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_B형_채점결과.xlsx new file mode 100644 index 0000000..0d54665 Binary files /dev/null and b/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_B형_채점결과.xlsx differ diff --git a/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_C형_채점결과.xlsx b/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_C형_채점결과.xlsx new file mode 100644 index 0000000..9a95053 Binary files /dev/null and b/회차별채점자료/2504/excel_채점결과/250501_DIW_2504회_C형_채점결과.xlsx differ diff --git a/회차별채점자료/2504/excel_채점기준표/DIW_2504A.xlsx b/회차별채점자료/2504/excel_채점기준표/DIW_2504A.xlsx new file mode 100644 index 0000000..a01420e Binary files /dev/null and b/회차별채점자료/2504/excel_채점기준표/DIW_2504A.xlsx differ diff --git a/회차별채점자료/2504/excel_채점기준표/DIW_2504B.xlsx b/회차별채점자료/2504/excel_채점기준표/DIW_2504B.xlsx new file mode 100644 index 0000000..bc7d1db Binary files /dev/null and b/회차별채점자료/2504/excel_채점기준표/DIW_2504B.xlsx differ diff --git a/회차별채점자료/2504/excel_채점기준표/DIW_2504C.xlsx b/회차별채점자료/2504/excel_채점기준표/DIW_2504C.xlsx new file mode 100644 index 0000000..e635117 Binary files /dev/null and b/회차별채점자료/2504/excel_채점기준표/DIW_2504C.xlsx differ diff --git a/회차별채점자료/2504/json_채점기준표/0501/DIW_2504A.json b/회차별채점자료/2504/json_채점기준표/0501/DIW_2504A.json new file mode 100644 index 0000000..c6348ec --- /dev/null +++ b/회차별채점자료/2504/json_채점기준표/0501/DIW_2504A.json @@ -0,0 +1,863 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": "맑은 고딕", + "points": 1, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/① 글씨체 (맑은 고딕)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": "6438172", + "points": 2, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": 31181, + "points": 2, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "클라우드컴퓨팅컨퍼런스", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (클라우드컴퓨팅컨퍼런스)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='전']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "전/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='전']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "궁서체", + "points": 1, + "category": "문단첫글자장식", + "item": "전/② 글씨체 (궁서체)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='전']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "3835135", + "points": 2, + "category": "문단첫글자장식", + "item": "전/③ 면색 : 색상(RGB:255,132,58)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='전']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "전/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "글로벌 클라우드 컴퓨팅 컨퍼런스", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (글로벌 클라우드 컴퓨팅 컨퍼런스)/① 진하게" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "글로벌 클라우드 컴퓨팅 컨퍼런스", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (글로벌 클라우드 컴퓨팅 컨퍼런스)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'●')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'●')]) - string-length(translate(//CHAR[contains(text(),'●')], '●', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ●, ② ●, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "참여안내", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (● 참여안내 ●)/① 글씨체 (궁서)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "참여안내", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (● 참여안내 ●)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][ITALIC])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr) 참조", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr) 참조)/① 기울임" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][UNDERLINE])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr) 참조", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr) 참조)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 04. 26.", + "value": 1400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 04. 26.)/① 크기 (14pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 04. 26.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 04. 26.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "글로벌멀티클라우드협의회", + "value": "궁서체", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (글로벌멀티클라우드협의회)/① 글씨체 (궁서체)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "글로벌멀티클라우드협의회", + "value": 2600, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (글로벌멀티클라우드협의회)/② 크기 (26pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "글로벌멀티클라우드협의회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (글로벌멀티클라우드협의회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "궁서", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (궁서)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "LatinCapital", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (A,B,C 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomRight", + "points": 2, + "category": "쪽번호", + "item": "② 오른쪽 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='200'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 200% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽 테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": 17007, + "points": 2, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/① 크기-너비 (60mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/③ 테두리 : 이중 실선(1.00mm)" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": 50, + "points": 2, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": "10966730", + "points": 2, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/⑤ 채우기 : 색상(RGB:202,86,167)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "클라우드 컴퓨팅", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (클라우드 컴퓨팅)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (80mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6803, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 주목하는 최신 트렌드", + "value": "굴림", + "points": 1, + "category": "속성", + "item": "문구① (1. 주목하는 최신 트렌드)/① 글씨체 (굴림)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 주목하는 최신 트렌드", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 주목하는 최신 트렌드)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 주목하는 최신 트렌드", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 주목하는 최신 트렌드)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 기술의 경제적 가치", + "value": "굴림", + "points": 1, + "category": "속성", + "item": "문구② (2. 기술의 경제적 가치)/① 글씨체 (굴림)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 기술의 경제적 가치", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 기술의 경제적 가치)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 기술의 경제적 가치", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 기술의 경제적 가치)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'클라우드')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('클라우드') + 1) = '클라우드']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (클라우드)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "인터넷을 통해 액세스할 수 있는 가상화된 서버에서 실행되는 프로그램과 데이터베이스를 제공하는 환경", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (클라우드)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "인터넷을 통해 액세스할 수 있는 가상화된 서버에서 실행되는 프로그램과 데이터베이스를 제공하는 환경", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (클라우드)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "인터넷을 통해 액세스할 수 있는 가상화된 서버에서 실행되는 프로그램과 데이터베이스를 제공하는 환경", + "value": "Ideograph", + "points": 2, + "category": "각주", + "item": "문구 (클라우드)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'Digital')])", + "path2": null, + "ignoreWord": "Digital", + "value": true, + "points": 3, + "category": "영단어", + "item": "Digital/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'전환')][contains(text(),'轉換')])+count(//CHAR[contains(text(),'핵심')][contains(text(),'核心')])+count(//CHAR[contains(text(),'확산')][contains(text(),'擴散')])+count(//CHAR[contains(text(),'보안')][contains(text(),'保安')])+count(//CHAR[contains(text(),'도입')][contains(text(),'導入')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 전환(轉換), ② 핵심(核心), ③ 확산(擴散), ④ 보안(保安), ⑤ 도입(導入)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'션이발전')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…보안(保安) 솔루션은 발전하면서…)/\"은\" → \"이\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'이터유출')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…유출과 데이터 사이버…)/\"유출과\" / \"데이터\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "클라우드 보안(단위: 백만 달러)", + "value": "돋움", + "points": 1, + "category": "표", + "item": "제목 문구 (클라우드 보안(단위: 백만 달러))/① 글씨체 (돋움)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "클라우드 보안(단위: 백만 달러)", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (클라우드 보안(단위: 백만 달러))/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "클라우드 보안(단위: 백만 달러)", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (클라우드 보안(단위: 백만 달러))/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "클라우드 보안(단위: 백만 달러)", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (클라우드 보안(단위: 백만 달러))/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "2862825", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:233,174,43)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "한양중고딕", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (중고딕)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=SUM') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=SUM')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록 계산식/합계" + }, + "45": { + "path": "boolean(//c:barChart[c:barDir[@val='col'] and c:grouping[@val='clustered']])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은 세로 막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='합계'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "클라우드 보안 투자", + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (클라우드 보안 투자)/① 글씨체 (굴림)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "클라우드 보안 투자", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (클라우드 보안 투자)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "클라우드 보안 투자", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (클라우드 보안 투자)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (돋움)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (돋움)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (돋움)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504/json_채점기준표/0501/DIW_2504B.json b/회차별채점자료/2504/json_채점기준표/0501/DIW_2504B.json new file mode 100644 index 0000000..20fd3ec --- /dev/null +++ b/회차별채점자료/2504/json_채점기준표/0501/DIW_2504B.json @@ -0,0 +1,863 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": "궁서체", + "points": 1, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/① 글씨체 : 궁서체" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": "5395143", + "points": 2, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/② 채우기 : 색상(RGB:199,82,82)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": 31181, + "points": 2, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/③ 크기 : 너비(110mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/④ 크기 : 높이(20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "친환경에너지박람회", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (친환경에너지박람회)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='지']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='지']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "궁서", + "points": 1, + "category": "문단첫글자장식", + "item": "지/② 글씨체 (궁서)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='지']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "16768058", + "points": 2, + "category": "문단첫글자장식", + "item": "지/③ 면색 : 색상(RGB:58,220,255)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='지']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "지/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "태양광, 풍력, 수소에너지 등 신재생 에너지 기술", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (태양광, 풍력, 수소에너지 등 신재생 에너지 기술)/① 진하게" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "태양광, 풍력, 수소에너지 등 신재생 에너지 기술", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (태양광, 풍력, 수소에너지 등 신재생 에너지 기술)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'▶')]) + count(//CHAR[contains(text(),'◀')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'▶')]) - string-length(translate(//CHAR[contains(text(),'▶')], '▶', '')) + string-length(//CHAR[contains(text(),'◀')]) - string-length(translate(//CHAR[contains(text(),'◀')], '◀', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ▶, ② ◀, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "행사안내", + "value": "한양중고딕", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (▶ 행사안내 ◀)/① 글씨체 (중고딕)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "행사안내", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (▶ 행사안내 ◀)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][BOLD])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][BOLD])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "블로그(http://www.ihd.or.kr) 참조하여 온라인으로 등록", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (블로그(http://www.ihd.or.kr) 참조하여 온라인으로 등록)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][ITALIC])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "블로그(http://www.ihd.or.kr) 참조하여 온라인으로 등록", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (블로그(http://www.ihd.or.kr) 참조하여 온라인으로 등록)/② 기울임" + }, + "1-19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=2000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (10pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 04. 26.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 04. 26.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 04. 26.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 04. 26.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "친환경에너지발전협의회", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (친환경에너지발전협의회)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "친환경에너지발전협의회", + "value": 2700, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (친환경에너지발전협의회)/② 크기 (27pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "친환경에너지발전협의회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (친환경에너지발전협의회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽 테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "친환경 에너지", + "value": 14173, + "points": 2, + "category": "글상자", + "item": "문구 (친환경 에너지)/① 크기-너비 (50mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "친환경 에너지", + "value": 3402, + "points": 2, + "category": "글상자", + "item": "문구 (친환경 에너지)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "친환경 에너지", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (친환경 에너지)/③ 테두리 : 이중 실선(1.00mm)" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "친환경 에너지", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (친환경 에너지)/④ 글상자 모서리 (둥근 모양)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "친환경 에너지", + "value": "9537333", + "points": 2, + "category": "글상자", + "item": "문구 (친환경 에너지)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "친환경 에너지", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (친환경 에너지)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "친환경 에너지", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (친환경 에너지)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "친환경 에너지", + "value": "궁서체", + "points": 1, + "category": "글상자", + "item": "문구 (친환경 에너지)/⑧ 글씨체 (궁서체)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "친환경 에너지", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (친환경 에너지)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "친환경 에너지", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (친환경 에너지)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림B.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6800, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 24mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 친환경 에너지 개요", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 친환경 에너지 개요)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 친환경 에너지 개요", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 친환경 에너지 개요)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 친환경 에너지 개요", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 친환경 에너지 개요)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 신재생 에너지", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 신재생 에너지)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 신재생 에너지", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 신재생 에너지)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 신재생 에너지", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 신재생 에너지)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'태양전지')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('태양전지') + 1) = '태양전지']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (태양전지)/① 문구입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "태양의 빛에너지를 전기에너지로 변환시켜 전기를 발생하는 장치로 친환경 방식으로 알려져 있음", + "value": "굴림", + "points": 1, + "category": "각주", + "item": "문구 (태양전지)/② 글씨체 (굴림)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "태양의 빛에너지를 전기에너지로 변환시켜 전기를 발생하는 장치로 친환경 방식으로 알려져 있음", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (태양전지)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "태양의 빛에너지를 전기에너지로 변환시켜 전기를 발생하는 장치로 친환경 방식으로 알려져 있음", + "value": "CircledHangulJamo", + "points": 2, + "category": "각주", + "item": "문구 (태양전지)/④ 각주 번호 모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'Campaign')])", + "path2": null, + "ignoreWord": "Campaign", + "value": true, + "points": 3, + "category": "영단어", + "item": "Campaign/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'저감')][contains(text(),'低減')])+count(//CHAR[contains(text(),'화석')][contains(text(),'化石')])+count(//CHAR[contains(text(),'투자')][contains(text(),'投資')])+count(//CHAR[contains(text(),'달성')][contains(text(),'達成')])+count(//CHAR[contains(text(),'세금')][contains(text(),'稅金')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'택을제공')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…세금 혜택이 제공하고 있으며…)/\"이\" → \"을\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'탄소배출')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…배출 탄소 규제가 강화되면서…)/\"배출\" / \"탄소\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "친환경 에너지 성장률(단위: %)", + "value": "돋움", + "points": 1, + "category": "표", + "item": "제목 문구 (친환경 에너지 성장률(단위: %))/① 글씨체 (돋움)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "친환경 에너지 성장률(단위: %)", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (친환경 에너지 성장률(단위: %))/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "친환경 에너지 성장률(단위: %)", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (친환경 에너지 성장률(단위: %))/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "친환경 에너지 성장률(단위: %)", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (친환경 에너지 성장률(단위: %))/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "10966730", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:202,86,167)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중 실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "한양중고딕", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (중고딕)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "//c:lineChart/c:grouping/@val='standard'", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (꺾은선형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (80mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='합계'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "친환경 에너지 성장률", + "value": "궁서체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (친환경 에너지 성장률)/① 글씨체 (궁서체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "친환경 에너지 성장률", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (친환경 에너지 성장률)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "친환경 에너지 성장률", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (친환경 에너지 성장률)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "바탕", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (바탕)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "바탕", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (바탕)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "바탕", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (바탕)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504/json_채점기준표/0501/DIW_2504C.json b/회차별채점자료/2504/json_채점기준표/0501/DIW_2504C.json new file mode 100644 index 0000000..9803bb5 --- /dev/null +++ b/회차별채점자료/2504/json_채점기준표/0501/DIW_2504C.json @@ -0,0 +1,863 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": "돋움", + "points": 1, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/① 글씨체 : 돋움" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": "6438172", + "points": 2, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/② 채우기 : 색상(RGB:28,61,98)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/③ 크기 : 너비(100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/④ 크기 : 높이(20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (서울국제도서박람회)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='책']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "책/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='책']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "문단첫글자장식", + "item": "책/② 글씨체 (돋움)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='책']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "1943246", + "points": 2, + "category": "문단첫글자장식", + "item": "책/③ 면색 : 색상(RGB:206,166,29)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='책']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "책/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "문학, 인문학, 어린이/청소년 도서, 전자책, 독립 출판", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (문학, 인문학, 어린이/청소년 도서, 전자책, 독립 출판)/① 진하게" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][ITALIC])", + "path2": null, + "searchValue": "문학, 인문학, 어린이/청소년 도서, 전자책, 독립 출판", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (문학, 인문학, 어린이/청소년 도서, 전자책, 독립 출판)/② 기울임" + }, + "14": { + "path": "count(//CHAR[contains(text(),'◆')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'◆')]) - string-length(translate(//CHAR[contains(text(),'◆')], '◆', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ◆, ② ◆, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "행사안내", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (◆ 행사안내 ◆)/① 글씨체 (궁서)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "행사안내", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (◆ 행사안내 ◆)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][ITALIC])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "서울 국제 도서 박람회 홈페이지(http://www.ihd.or.kr) 참조", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (서울 국제 도서 박람회 홈페이지(http://www.ihd.or.kr) 참조)/① 기울임" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][UNDERLINE])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "서울 국제 도서 박람회 홈페이지(http://www.ihd.or.kr) 참조", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (서울 국제 도서 박람회 홈페이지(http://www.ihd.or.kr) 참조)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 04. 26.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 04. 26.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 04. 26.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 04. 26.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": "한양견고딕", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (서울국제도서박람회)/① 글씨체 (견고딕)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": 2500, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (서울국제도서박람회)/② 크기 (25pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "서울국제도서박람회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (서울국제도서박람회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "한양중고딕", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (중고딕)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "RomanSmall", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (i,ii,iii 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomRight", + "points": 2, + "category": "쪽번호", + "item": "② 오른쪽 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽 테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": 3402, + "points": 2, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/③ 테두리 : 이중 실선(1.00mm)" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": 50, + "points": 2, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": "5395050", + "points": 2, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/⑤ 채우기 : 색상(RGB:199,82,82)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": "휴먼옛체", + "points": 1, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/⑧ 글씨체 (휴먼옛체)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "출판 산업 트렌드", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (출판 산업 트렌드)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림C.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6800, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 24mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 출판 산업의 확장", + "value": "굴림", + "points": 1, + "category": "속성", + "item": "문구① (1. 출판 산업의 확장)/① 글씨체 (굴림)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 출판 산업의 확장", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 출판 산업의 확장)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 출판 산업의 확장", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 출판 산업의 확장)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 도서 박람회의 가치", + "value": "굴림", + "points": 1, + "category": "속성", + "item": "문구② (2. 도서 박람회의 가치)/① 글씨체 (굴림)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 도서 박람회의 가치", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 도서 박람회의 가치)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 도서 박람회의 가치", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 도서 박람회의 가치)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'오디오북')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('오디오북') + 1) = '오디오북']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (오디오북)/① 문구입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "눈으로 읽는 대신 귀로 들을 수 있게 책의 내용(문자)을 음성으로 녹음하여 기록한 것을 의미함", + "value": "궁서", + "points": 1, + "category": "각주", + "item": "문구 (오디오북)/② 글씨체 (궁서)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "눈으로 읽는 대신 귀로 들을 수 있게 책의 내용(문자)을 음성으로 녹음하여 기록한 것을 의미함", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (오디오북)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "눈으로 읽는 대신 귀로 들을 수 있게 책의 내용(문자)을 음성으로 녹음하여 기록한 것을 의미함", + "value": "CircledLatinSmall", + "points": 2, + "category": "각주", + "item": "문구 (오디오북)/④ 각주 번호 모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'Platform')])", + "path2": null, + "ignoreWord": "Platform", + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'출판')][contains(text(),'出版')])+count(//CHAR[contains(text(),'독자')][contains(text(),'讀者')])+count(//CHAR[contains(text(),'박람회')][contains(text(),'博覽會')])+count(//CHAR[contains(text(),'교류')][contains(text(),'交流')])+count(//CHAR[contains(text(),'증가')][contains(text(),'增加')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 출판(出版), ② 독자(讀者), ③ 박람회(博覽會), ④ 교류(交流), ⑤ 증가(增加)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'래도점점')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…콘텐츠 거래는 점점…)/\"는\" → \"도\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'양한산업')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…요식업 등의 산업과 다양한 연계되며…)/\"산업과\" / \"다양한\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "출판 산업 성장률(단위: %)", + "value": "돋움", + "points": 1, + "category": "표", + "item": "제목 문구 (출판 산업 성장률(단위: %))/① 글씨체 (돋움)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "출판 산업 성장률(단위: %)", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (출판 산업 성장률(단위: %))/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "출판 산업 성장률(단위: %)", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (출판 산업 성장률(단위: %))/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "출판 산업 성장률(단위: %)", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (출판 산업 성장률(단위: %))/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "13938409", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:233,174,43)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중 실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "한양중고딕", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (중고딕)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:barChart[c:barDir[@val='bar'] and c:grouping[@val='clustered']])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은 가로 막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (80mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "출판 산업 성장률", + "value": "바탕", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (출판 산업 성장률)/① 글씨체 (바탕)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "출판 산업 성장률", + "value": 1200, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (출판 산업 성장률)/② 크기 (12pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "출판 산업 성장률", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (출판 산업 성장률)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (돋움)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (돋움)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "돋움", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (돋움)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504_2/excel_채점결과/250428_DIW_2504_2회_A형_채점결과.xlsx b/회차별채점자료/2504_2/excel_채점결과/250428_DIW_2504_2회_A형_채점결과.xlsx new file mode 100644 index 0000000..8c61105 Binary files /dev/null and b/회차별채점자료/2504_2/excel_채점결과/250428_DIW_2504_2회_A형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_2/excel_채점결과/250429_DIW_2504_2회_A형_채점결과.xlsx b/회차별채점자료/2504_2/excel_채점결과/250429_DIW_2504_2회_A형_채점결과.xlsx new file mode 100644 index 0000000..98e29ff Binary files /dev/null and b/회차별채점자료/2504_2/excel_채점결과/250429_DIW_2504_2회_A형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_2/excel_채점결과/250430_DIW_2504_2회_A형_채점결과.xlsx b/회차별채점자료/2504_2/excel_채점결과/250430_DIW_2504_2회_A형_채점결과.xlsx new file mode 100644 index 0000000..2685a37 Binary files /dev/null and b/회차별채점자료/2504_2/excel_채점결과/250430_DIW_2504_2회_A형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_2/excel_채점기준표/DIW_2504_2A.xlsx b/회차별채점자료/2504_2/excel_채점기준표/DIW_2504_2A.xlsx new file mode 100644 index 0000000..ba482bb Binary files /dev/null and b/회차별채점자료/2504_2/excel_채점기준표/DIW_2504_2A.xlsx differ diff --git a/회차별채점자료/2504_2/json_채점기준표/0428/DIW_2504_2A.json b/회차별채점자료/2504_2/json_채점기준표/0428/DIW_2504_2A.json new file mode 100644 index 0000000..2d390c7 --- /dev/null +++ b/회차별채점자료/2504_2/json_채점기준표/0428/DIW_2504_2A.json @@ -0,0 +1,861 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "궁서", + "points": 1, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/① 글씨체 (궁서)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "6072932", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='자']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='자']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "맑은 고딕", + "points": 1, + "category": "문단첫글자장식", + "item": "자/② 글씨체 (맑은 고딕)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "9537333", + "points": 2, + "category": "문단첫글자장식", + "item": "자/③ 면색 : 색상(RGB:105,155,55)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "자/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/① 기울임" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'■')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'■')]) - string-length(translate(//CHAR[contains(text(),'■')], '■', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ■, ② ■, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "■ 행사안내 ■", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/① 글씨체 (돋움)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "■ 행사안내 ■", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "path2": null, + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한국고건축협회", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/① 글씨체 (궁서)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "한국고건축협회", + "value": 2400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/② 크기 (24pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한국고건축협회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/③ 테두리 (이중실선(1.00mm))" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "12704995", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6236, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 한옥", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 한옥", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 한옥", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'기초')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('기초') + 1) = '기초']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (기초)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (기초)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (기초)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "CircledDigit", + "points": 2, + "category": "각주", + "item": "문구 (기초)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'cornerstone')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'한옥')][contains(text(),'韓屋')])+count(//CHAR[contains(text(),'사계절')][contains(text(),'四季節')])+count(//CHAR[contains(text(),'거주')][contains(text(),'居住')])+count(//CHAR[contains(text(),'구조')][contains(text(),'構造')])+count(//CHAR[contains(text(),'골격')][contains(text(),'骨格')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'철의추운')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…더운 날씨와 겨울철이 추운…)/\"이\" → \"의\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'돌과마루')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…대비해 마루를 온돌과 갖고…)/\"마루를\" / \"온돌과\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "궁서", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (궁서)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "7629528", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:216,106,116)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (굴림)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:lineChart/c:grouping/@val='standard')", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은세로막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "굴림체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (굴림체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (굴림)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (굴림)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (굴림)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504_2/json_채점기준표/0501/DIW_2504_2A.json b/회차별채점자료/2504_2/json_채점기준표/0501/DIW_2504_2A.json new file mode 100644 index 0000000..e6d409e --- /dev/null +++ b/회차별채점자료/2504_2/json_채점기준표/0501/DIW_2504_2A.json @@ -0,0 +1,863 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "궁서", + "points": 1, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/① 글씨체 (궁서)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "6072932", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='자']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='자']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "맑은 고딕", + "points": 1, + "category": "문단첫글자장식", + "item": "자/② 글씨체 (맑은 고딕)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "9537333", + "points": 2, + "category": "문단첫글자장식", + "item": "자/③ 면색 : 색상(RGB:105,155,55)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "자/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/① 기울임" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'■')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'■')]) - string-length(translate(//CHAR[contains(text(),'■')], '■', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ■, ② ■, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "행사안내", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/① 글씨체 (돋움)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "행사안내", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][ITALIC])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][UNDERLINE])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한국고건축협회", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/① 글씨체 (궁서)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "한국고건축협회", + "value": 2400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/② 크기 (24pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한국고건축협회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/③ 테두리 (이중실선(1.00mm))" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "12704995", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6236, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 한옥", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 한옥", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 한옥", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'기초')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('기초') + 1) = '기초']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (기초)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (기초)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (기초)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "CircledDigit", + "points": 2, + "category": "각주", + "item": "문구 (기초)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'cornerstone')])", + "path2": null, + "ignoreWord": "cornerstone", + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'한옥')][contains(text(),'韓屋')])+count(//CHAR[contains(text(),'사계절')][contains(text(),'四季節')])+count(//CHAR[contains(text(),'거주')][contains(text(),'居住')])+count(//CHAR[contains(text(),'구조')][contains(text(),'構造')])+count(//CHAR[contains(text(),'골격')][contains(text(),'骨格')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'철의추운')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…더운 날씨와 겨울철이 추운…)/\"이\" → \"의\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'돌과마루')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…대비해 마루를 온돌과 갖고…)/\"마루를\" / \"온돌과\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "궁서", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (궁서)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "7629528", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:216,106,116)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (굴림)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:lineChart/c:grouping/@val='standard')", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은세로막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "굴림체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (굴림체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (굴림)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (굴림)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (굴림)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504_3/excel_채점결과/250428_DIW_2504_3회_B형_채점결과.xlsx b/회차별채점자료/2504_3/excel_채점결과/250428_DIW_2504_3회_B형_채점결과.xlsx new file mode 100644 index 0000000..99c06ac Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250428_DIW_2504_3회_B형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점결과/250428_DIW_2504_3회_C형_채점결과.xlsx b/회차별채점자료/2504_3/excel_채점결과/250428_DIW_2504_3회_C형_채점결과.xlsx new file mode 100644 index 0000000..3cb8783 Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250428_DIW_2504_3회_C형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점결과/250429_DIW_2504_3회_B형_채점결과.xlsx b/회차별채점자료/2504_3/excel_채점결과/250429_DIW_2504_3회_B형_채점결과.xlsx new file mode 100644 index 0000000..072618e Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250429_DIW_2504_3회_B형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점결과/250429_DIW_2504_3회_C형_채점결과.xlsx b/회차별채점자료/2504_3/excel_채점결과/250429_DIW_2504_3회_C형_채점결과.xlsx new file mode 100644 index 0000000..dbcc6bb Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250429_DIW_2504_3회_C형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_B형_채점결과.xlsx b/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_B형_채점결과.xlsx new file mode 100644 index 0000000..2154201 Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_B형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_C형_hyperlink수정전.xlsx b/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_C형_hyperlink수정전.xlsx new file mode 100644 index 0000000..35dc9bc Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_C형_hyperlink수정전.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_C형_채점결과.xlsx b/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_C형_채점결과.xlsx new file mode 100644 index 0000000..bf5b220 Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점결과/250430_DIW_2504_3회_C형_채점결과.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점기준표/DIW_2504_3B.xlsx b/회차별채점자료/2504_3/excel_채점기준표/DIW_2504_3B.xlsx new file mode 100644 index 0000000..481c276 Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점기준표/DIW_2504_3B.xlsx differ diff --git a/회차별채점자료/2504_3/excel_채점기준표/DIW_2504_3C.xlsx b/회차별채점자료/2504_3/excel_채점기준표/DIW_2504_3C.xlsx new file mode 100644 index 0000000..fd45712 Binary files /dev/null and b/회차별채점자료/2504_3/excel_채점기준표/DIW_2504_3C.xlsx differ diff --git a/회차별채점자료/2504_3/json_채점기준표/0428/DIW_2504_3B.json b/회차별채점자료/2504_3/json_채점기준표/0428/DIW_2504_3B.json new file mode 100644 index 0000000..2d390c7 --- /dev/null +++ b/회차별채점자료/2504_3/json_채점기준표/0428/DIW_2504_3B.json @@ -0,0 +1,861 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "궁서", + "points": 1, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/① 글씨체 (궁서)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "6072932", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='자']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='자']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "맑은 고딕", + "points": 1, + "category": "문단첫글자장식", + "item": "자/② 글씨체 (맑은 고딕)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "9537333", + "points": 2, + "category": "문단첫글자장식", + "item": "자/③ 면색 : 색상(RGB:105,155,55)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "자/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/① 기울임" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'■')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'■')]) - string-length(translate(//CHAR[contains(text(),'■')], '■', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ■, ② ■, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "■ 행사안내 ■", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/① 글씨체 (돋움)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "■ 행사안내 ■", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "path2": null, + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한국고건축협회", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/① 글씨체 (궁서)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "한국고건축협회", + "value": 2400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/② 크기 (24pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한국고건축협회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/③ 테두리 (이중실선(1.00mm))" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "12704995", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6236, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 한옥", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 한옥", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 한옥", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'기초')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('기초') + 1) = '기초']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (기초)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (기초)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (기초)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "CircledDigit", + "points": 2, + "category": "각주", + "item": "문구 (기초)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'cornerstone')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'한옥')][contains(text(),'韓屋')])+count(//CHAR[contains(text(),'사계절')][contains(text(),'四季節')])+count(//CHAR[contains(text(),'거주')][contains(text(),'居住')])+count(//CHAR[contains(text(),'구조')][contains(text(),'構造')])+count(//CHAR[contains(text(),'골격')][contains(text(),'骨格')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'철의추운')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…더운 날씨와 겨울철이 추운…)/\"이\" → \"의\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'돌과마루')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…대비해 마루를 온돌과 갖고…)/\"마루를\" / \"온돌과\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "궁서", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (궁서)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "7629528", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:216,106,116)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (굴림)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:lineChart/c:grouping/@val='standard')", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은세로막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "굴림체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (굴림체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (굴림)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (굴림)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (굴림)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504_3/json_채점기준표/0428/DIW_2504_3C.json b/회차별채점자료/2504_3/json_채점기준표/0428/DIW_2504_3C.json new file mode 100644 index 0000000..2d390c7 --- /dev/null +++ b/회차별채점자료/2504_3/json_채점기준표/0428/DIW_2504_3C.json @@ -0,0 +1,861 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "궁서", + "points": 1, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/① 글씨체 (궁서)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "6072932", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='자']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='자']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "맑은 고딕", + "points": 1, + "category": "문단첫글자장식", + "item": "자/② 글씨체 (맑은 고딕)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "9537333", + "points": 2, + "category": "문단첫글자장식", + "item": "자/③ 면색 : 색상(RGB:105,155,55)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "자/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/① 기울임" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'■')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'■')]) - string-length(translate(//CHAR[contains(text(),'■')], '■', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ■, ② ■, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "■ 행사안내 ■", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/① 글씨체 (돋움)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "■ 행사안내 ■", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "path2": null, + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한국고건축협회", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/① 글씨체 (궁서)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "한국고건축협회", + "value": 2400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/② 크기 (24pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한국고건축협회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/③ 테두리 (이중실선(1.00mm))" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "12704995", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6236, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 한옥", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 한옥", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 한옥", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'기초')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('기초') + 1) = '기초']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (기초)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (기초)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (기초)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "CircledDigit", + "points": 2, + "category": "각주", + "item": "문구 (기초)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'cornerstone')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'한옥')][contains(text(),'韓屋')])+count(//CHAR[contains(text(),'사계절')][contains(text(),'四季節')])+count(//CHAR[contains(text(),'거주')][contains(text(),'居住')])+count(//CHAR[contains(text(),'구조')][contains(text(),'構造')])+count(//CHAR[contains(text(),'골격')][contains(text(),'骨格')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'철의추운')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…더운 날씨와 겨울철이 추운…)/\"이\" → \"의\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'돌과마루')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…대비해 마루를 온돌과 갖고…)/\"마루를\" / \"온돌과\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "궁서", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (궁서)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "7629528", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:216,106,116)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (굴림)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:lineChart/c:grouping/@val='standard')", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은세로막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "굴림체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (굴림체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (굴림)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (굴림)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (굴림)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504_3/json_채점기준표/0501/DIW_2504_3B.json b/회차별채점자료/2504_3/json_채점기준표/0501/DIW_2504_3B.json new file mode 100644 index 0000000..e6d409e --- /dev/null +++ b/회차별채점자료/2504_3/json_채점기준표/0501/DIW_2504_3B.json @@ -0,0 +1,863 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "궁서", + "points": 1, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/① 글씨체 (궁서)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "6072932", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='자']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='자']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "맑은 고딕", + "points": 1, + "category": "문단첫글자장식", + "item": "자/② 글씨체 (맑은 고딕)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "9537333", + "points": 2, + "category": "문단첫글자장식", + "item": "자/③ 면색 : 색상(RGB:105,155,55)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "자/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/① 기울임" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'■')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'■')]) - string-length(translate(//CHAR[contains(text(),'■')], '■', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ■, ② ■, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "행사안내", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/① 글씨체 (돋움)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "행사안내", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][ITALIC])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][UNDERLINE])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한국고건축협회", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/① 글씨체 (궁서)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "한국고건축협회", + "value": 2400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/② 크기 (24pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한국고건축협회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/③ 테두리 (이중실선(1.00mm))" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "12704995", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6236, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 한옥", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 한옥", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 한옥", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'기초')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('기초') + 1) = '기초']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (기초)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (기초)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (기초)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "CircledDigit", + "points": 2, + "category": "각주", + "item": "문구 (기초)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'cornerstone')])", + "path2": null, + "ignoreWord": "cornerstone", + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'한옥')][contains(text(),'韓屋')])+count(//CHAR[contains(text(),'사계절')][contains(text(),'四季節')])+count(//CHAR[contains(text(),'거주')][contains(text(),'居住')])+count(//CHAR[contains(text(),'구조')][contains(text(),'構造')])+count(//CHAR[contains(text(),'골격')][contains(text(),'骨格')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'철의추운')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…더운 날씨와 겨울철이 추운…)/\"이\" → \"의\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'돌과마루')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…대비해 마루를 온돌과 갖고…)/\"마루를\" / \"온돌과\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "궁서", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (궁서)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "7629528", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:216,106,116)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (굴림)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:lineChart/c:grouping/@val='standard')", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은세로막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "굴림체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (굴림체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (굴림)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (굴림)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (굴림)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/2504_3/json_채점기준표/0501/DIW_2504_3C.json b/회차별채점자료/2504_3/json_채점기준표/0501/DIW_2504_3C.json new file mode 100644 index 0000000..e6d409e --- /dev/null +++ b/회차별채점자료/2504_3/json_채점기준표/0501/DIW_2504_3C.json @@ -0,0 +1,863 @@ +{ + "0": { + "0": { + "path": "", + "path2": "", + "points": 0, + "category": "파일저장", + "item": "파일명 (수검번호.hwp/hwpx)" + }, + "1": { + "path": "boolean(//PAGEMARGIN[(@Bottom='5668'or @Bottom='5669') and (@Footer='2834' or @Footer='2835') and @Gutter='0' and (@Header='2834' or @Header='2835') and (@Left='5668' or @Left='5669') and (@Right='5668' or @Right='5669') and (@Top='5668' or @Top='5669')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "용지설정", + "item": "A4용지, 왼쪽/오른쪽/위쪽/아래쪽 (각20mm), 머리말/꼬리말 (10mm), 제본(0mm)" + }, + "2": { + "path": "boolean(//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE/FONTID/@Hangul]/@Name='바탕' and //CHARSHAPE/@Height='1000' and //PARASHAPE/PARAMARGIN/@LineSpacing='160' and //PARASHAPE/@Align='Justify')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "기본설정", + "item": "글꼴 (바탕, 10pt), 양쪽정렬, 줄간격 (160%)" + }, + "3": { + "path": "", + "path2": null, + "searchValue": null, + "value": null, + "points": 40, + "category": "오타감점", + "item": "오타 1개 -1점 / 2503회부터 오타 1개 -1점으로 변경" + } + }, + "1": { + "1": { + "path": "//TEXTART[@Text='{searchValue}']/TEXTARTSHAPE/@FontName", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "궁서", + "points": 1, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/① 글씨체 (궁서)" + }, + "2": { + "path": "//TEXTART[@Text='{searchValue}']/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "6072932", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/② 채우기 : 색상(RGB:100,170,92)" + }, + "3": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 28346, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/③ 크기-너비 (100mm)" + }, + "4": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": 5669, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/④ 크기-높이 (20mm)" + }, + "5": { + "path": "//TEXTART[@Text='{searchValue}']/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "true", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑤ 위치 (글자처럼 취급)" + }, + "6": { + "path": "//PARASHAPE[@Id=//TEXTART[@Text='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": "Center", + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑥ 정렬 (가운데 정렬)" + }, + "7": { + "path": "boolean(//TEXTART[@Text='{searchValue}'])", + "path2": null, + "searchValue": "한옥마을사생대회안내", + "value": true, + "points": 2, + "category": "글맵시", + "item": "문구 (한옥마을사생대회안내)/⑦ 글맵시모양 (육안확인)" + }, + "8": { + "path": "boolean(//RECTANGLE[.//CHAR[text()='자']][.//SIZE[(@Height >= 2600 and @Height <= 2800)and(@Width >= 2600 and @Width <= 2800)]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "문단첫글자장식", + "item": "자/① 모양 (2줄)" + }, + "9": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TEXT[CHAR[text()='자']]/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "맑은 고딕", + "points": 1, + "category": "문단첫글자장식", + "item": "자/② 글씨체 (맑은 고딕)" + }, + "10": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": null, + "value": "9537333", + "points": 2, + "category": "문단첫글자장식", + "item": "자/③ 면색 : 색상(RGB:105,155,55)" + }, + "11": { + "path": "//RECTANGLE[.//CHAR[text()='자']]//OUTSIDEMARGIN/@Right", + "path2": null, + "searchValue": null, + "value": "850", + "points": 2, + "category": "문단첫글자장식", + "item": "자/④ 본문과의 간격 : 3.0mm" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][BOLD])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/① 기울임" + }, + "13": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text()[1],'{searchValue}')]/parent::TEXT/@CharShape][UNDERLINE])", + "path2": null, + "searchValue": "한옥에 대한 체험과 교육이 준비된 사생대회", + "value": true, + "points": 2, + "category": "글꼴 속성", + "item": "문구 (한옥에 대한 체험과 교육이 준비된 사생대회)/② 밑줄" + }, + "14": { + "path": "count(//CHAR[contains(text(),'■')]) + count(//CHAR[contains(text(),'※')])", + "path2": "string-length(//CHAR[contains(text(),'■')]) - string-length(translate(//CHAR[contains(text(),'■')], '■', '')) + string-length(//CHAR[contains(text(),'※')]) - string-length(translate(//CHAR[contains(text(),'※')], '※', ''))", + "searchValue": null, + "value": 3, + "points": 3, + "category": "특수문자", + "item": "① ■, ② ■, ③ ※" + }, + "15": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "행사안내", + "value": "돋움", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/① 글씨체 (돋움)" + }, + "16": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "행사안내", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (■ 행사안내 ■)/② 정렬 (가운데 정렬)" + }, + "17": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][ITALIC])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][ITALIC])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/① 진하게" + }, + "18": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape][UNDERLINE])", + "hyperlink_xpath": "boolean(//CHARSHAPE[@Id={charshape_id}][UNDERLINE])", + "hyperlink": "//P[.//FIELDBEGIN[@Type='Hyperlink']]", + "searchValue": "홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수", + "value": true, + "points": 1, + "category": "Hyperlink", + "item": "문구 (홈페이지(http://www.ihd.or.kr)에서 개별 신청, 선착순 접수)/② 밑줄" + }, + "19": { + "path": "boolean(//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Left=3000 and //PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/following-sibling::P[1]/@ParaShape]/PARAMARGIN/@Indent=-2400)", + "path2": null, + "searchValue": "기타사항", + "value": true, + "points": 2, + "category": "문단모양", + "item": "문구 (※ 기타… 이하 문단)/왼쪽여백 (15pt), 내어쓰기 (12pt)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": 1300, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/① 크기 (13pt)" + }, + "21": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "2025. 03. 22.", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (2025. 03. 22.)/② 정렬 (가운데 정렬)" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한국고건축협회", + "value": "궁서", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/① 글씨체 (궁서)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "한국고건축협회", + "value": 2400, + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/② 크기 (24pt)" + }, + "24": { + "path": "//PARASHAPE[@Id=//CHAR[text()='{searchValue}']/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "한국고건축협회", + "value": "Center", + "points": 1, + "category": "글꼴 속성", + "item": "문구 (한국고건축협회)/③ 정렬 (가운데 정렬)" + }, + "25": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "DIAT", + "value": "굴림", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/① 글꼴 (굴림)" + }, + "26": { + "path": "//CHARSHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "DIAT", + "value": 900, + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/② 크기 (9pt)" + }, + "27": { + "path": "//PARASHAPE[@Id=//SECTION[1]//CHAR[text()='{searchValue}']/parent::TEXT/parent::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "DIAT", + "value": "Right", + "points": 1, + "category": "머리말", + "item": "문구 (DIAT)/③ 정렬 (오른쪽 정렬)" + }, + "28": { + "path": "//PAGENUM/@FormatType", + "path2": null, + "searchValue": null, + "value": "HangulSyllable", + "points": 2, + "category": "쪽번호", + "item": "① 쪽 번호 매기기 (가,나,다 순으로)" + }, + "29": { + "path": "//PAGENUM/@Pos", + "path2": null, + "searchValue": null, + "value": "BottomCenter", + "points": 2, + "category": "쪽번호", + "item": "② 가운데 아래" + }, + "30": { + "path": "not(//PARASHAPE[@Id=//SECTION[1]/P/@ParaShape]/PARAMARGIN[@LineSpacing!='180'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "줄간격", + "item": "문제 1 줄간격 180% 설정" + } + }, + "2": { + "1": { + "path": "boolean(//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@HeaderInside='true' and //BORDERFILL[@Id=//PAGEBORDERFILL[@Type='Both' or @Type='Even']/@BorferFill]/*[contains(local-name(), 'BORDER')]/@Type='DoubleSlim')", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "쪽 테두리", + "item": "문제2 쪽테두리(이중 실선, 머리말 포함) 설정" + }, + "2": { + "path": "count(//SECTION)>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "① 구역나누기" + }, + "3": { + "path": "//COLDEF/@Count>1", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "다단", + "item": "② 다단 2단" + }, + "4": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 19842, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/① 크기-너비 (70mm)" + }, + "5": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 3401, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/② 크기-높이 (12mm)" + }, + "6": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::LINESHAPE/@Style", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "DoubleSlim", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/③ 테두리 (이중실선(1.00mm))" + }, + "7": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/@Ratio", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": 20, + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/④ 글상자 모서리 (반원)" + }, + "8": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/descendant::WINDOWBRUSH/@FaceColor", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "12704995", + "points": 2, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑤ 채우기 : 색상(RGB:53,135,145)" + }, + "9": { + "path": "//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::RECTANGLE/SHAPEOBJECT/POSITION/@TreatAsChar", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "true", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑥ 글상자 위치 (글자처럼 취급)" + }, + "10": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[last()]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑦ 글상자 정렬 (가운데 정렬)" + }, + "11": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "한양견고딕", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑧ 글씨체 (견고딕)" + }, + "12": { + "path": "boolean(//CHARSHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height='2000')", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑨ 글씨크기 (20pt)" + }, + "13": { + "path": "//PARASHAPE[@Id=//RECTANGLE//CHAR[text()='{searchValue}']/ancestor::P[1]/@ParaShape]/@Align", + "path2": null, + "searchValue": "한옥의 형태와 구조", + "value": "Center", + "points": 1, + "category": "글상자", + "item": "문구 (한옥의 형태와 구조)/⑩ 정렬 (가운데 정렬)" + }, + "14": { + "path": "boolean(//PICTURE/descendant::SHAPECOMMENT[contains(text(),'{searchValue}')])", + "path2": null, + "searchValue": "원본 그림의 이름: 그림", + "value": true, + "points": 2, + "category": "그림삽입", + "item": "① 파일명 \"그림A.jpg\" 삽입" + }, + "15": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 24094, + "points": 2, + "category": "그림삽입", + "item": "② 크기-너비 (85mm)" + }, + "16": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 11338, + "points": 2, + "category": "그림삽입", + "item": "③ 크기-높이 (40mm)" + }, + "17": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@HorzOffset", + "path2": null, + "searchValue": null, + "value": 0, + "points": 2, + "category": "그림삽입", + "item": "④ 위치 (어울림 : 가로-쪽의 왼쪽 0.0mm)" + }, + "18": { + "path": "//IMAGE[@BinItem=//BINITEM[@Format='JPG']/@BinData]/preceding-sibling::SHAPEOBJECT/POSITION/@VertOffset", + "path2": null, + "searchValue": null, + "value": 6236, + "points": 2, + "category": "그림삽입", + "item": "⑤ 위치 (어울림 : 세로-쪽의 위 22mm)" + }, + "19": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "1. 한옥", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/① 글씨체 (돋움)" + }, + "20": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "1. 한옥", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/② 크기 (12pt)" + }, + "21": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "1. 한옥", + "value": true, + "points": 1, + "category": "속성", + "item": "문구① (1. 한옥)/③ 진하게" + }, + "22": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": "돋움", + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/① 글씨체 (돋움)" + }, + "23": { + "path": "//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": 1200, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/② 크기 (12pt)" + }, + "24": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[text()='{searchValue}']/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "2. 한옥의 형태와 구조", + "value": true, + "points": 1, + "category": "속성", + "item": "문구② (2. 한옥의 형태와 구조)/③ 진하게" + }, + "25": { + "path": "boolean(//CHAR[contains(text(),'기초')]/ancestor::TEXT/FOOTNOTE/descendant::CHAR)", + "path2": "boolean(//CHAR[substring(., string-length(.) - string-length('기초') + 1) = '기초']/following-sibling::FOOTNOTE/descendant::CHAR)", + "searchValue": null, + "value": true, + "points": 2, + "category": "각주", + "item": "문구 (기초)/① 각주 설정 및 문구 입력" + }, + "26": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "한양중고딕", + "points": 1, + "category": "각주", + "item": "문구 (기초)/② 글씨체 (한양중고딕)" + }, + "27": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": 900, + "points": 1, + "category": "각주", + "item": "문구 (기초)/③ 크기 (9pt)" + }, + "28": { + "path": "//P[TEXT[CHAR[contains(text(), '{searchValue}')]]]//AUTONUMFORMAT/@Type", + "path2": null, + "searchValue": "기둥의 침하를 방지하기 위한 지반의 보강 및 개량", + "value": "CircledDigit", + "points": 2, + "category": "각주", + "item": "문구 (기초)/④ 각주 번호모양" + }, + "29": { + "path": "boolean(//CHAR[contains(text(),'cornerstone')])", + "path2": null, + "ignoreWord": "cornerstone", + "value": true, + "points": 3, + "category": "영단어", + "item": "cornerstone/영단어 미입력, 대소문자/오타 시 전체 감점" + }, + "30": { + "path": "(count(//CHAR[contains(text(),'한옥')][contains(text(),'韓屋')])+count(//CHAR[contains(text(),'사계절')][contains(text(),'四季節')])+count(//CHAR[contains(text(),'거주')][contains(text(),'居住')])+count(//CHAR[contains(text(),'구조')][contains(text(),'構造')])+count(//CHAR[contains(text(),'골격')][contains(text(),'骨格')]))*2", + "path2": null, + "searchValue": null, + "value": 10, + "points": 10, + "category": "한자", + "item": "① 한옥(韓屋), ② 사계절(四季節), ③거주(居住), ④ 구조(構造), ⑤ 골격(骨格)" + }, + "31": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'철의추운')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…더운 날씨와 겨울철이 추운…)/\"이\" → \"의\" 글자바꿈" + }, + "32": { + "path": "boolean(//CHAR[contains(translate(text(), ' ', ''),'돌과마루')])", + "path2": null, + "searchValue": null, + "value": true, + "points": 3, + "category": "편집", + "item": "문구 (…대비해 마루를 온돌과 갖고…)/\"마루를\" / \"온돌과\" 순서바꿈" + }, + "33": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "궁서", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (궁서)" + }, + "34": { + "path": "//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1200, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (12pt)" + }, + "35": { + "path": "boolean(//CHARSHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/parent::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": true, + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "36": { + "path": "//PARASHAPE[@Id=//CHAR[contains(text(),'{searchValue}')]/ancestor::P/@ParaShape]/@Align", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "Center", + "points": 1, + "category": "표", + "item": "제목 문구 (교육기관별 참가인원)/④ 정렬 (가운데 정렬)" + }, + "37": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/FILLBRUSH/WINDOWBRUSH/@FaceColor", + "searchValue": null, + "value": "7629528", + "points": 2, + "category": "표", + "item": "위쪽 제목 셀/① 색상(RGB:216,106,116)" + }, + "38": { + "path": "boolean(//CHARSHAPE[@Id=//TABLE/ROW[1]/descendant::TEXT/@CharShape]/BOLD)", + "path2": null, + "searchValue": null, + "value": true, + "points": 1, + "category": "표", + "item": "위쪽 제목 셀/② 진하게" + }, + "39": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Type", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Type", + "searchValue": null, + "value": "DoubleSlim", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/① 이중실선" + }, + "40": { + "path": "//BORDERFILL[@Id=//TABLE/ROW[1]/CELL/@BorderFill]/BOTTOMBORDER/@Width", + "path2": "//BORDERFILL[@Id=//CELLZONE[@StartRowAddr='0' and @EndRowAddr='0' and @StartColAddr='0' and @EndColAddr='2']/@BorderFill]/BOTTOMBORDER/@Width", + "searchValue": null, + "value": "0.5mm", + "points": 2, + "category": "표", + "item": "제목 셀 아래선/② 0.5mm" + }, + "41": { + "path": "//FONTFACE[@Lang='Hangul']/FONT[@Id=//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/FONTID/@Hangul]/@Name", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "표", + "item": "글자모양/① 글씨체 (굴림)" + }, + "42": { + "path": "//CHARSHAPE[@Id=//TABLE/ROW/descendant::TEXT/@CharShape]/@Height", + "path2": null, + "searchValue": null, + "value": 1000, + "points": 1, + "category": "표", + "item": "글자모양/② 크기 (10pt)" + }, + "43": { + "path": "//PARASHAPE[@Id=//TABLE/ROW/descendant::P/@ParaShape]/@Align", + "path2": null, + "searchValue": null, + "value": "Center", + "points": 1, + "category": "표", + "item": "글자모양/③ 정렬 (가운데 정렬)" + }, + "44": { + "path": "boolean(//TABLE[1]/ROW[last()]/CELL[last()-1]//FIELDBEGIN[starts-with(@Command, '=AVG') and //TABLE[1]/ROW[last()]/CELL[last()]//FIELDBEGIN[starts-with(@Command, '=AVG')]])", + "path2": null, + "searchValue": null, + "value": true, + "points": 4, + "category": "표", + "item": "블록계산식/평균" + }, + "45": { + "path": "boolean(//c:lineChart/c:grouping/@val='standard')", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "① 종류 (묶은세로막대형)" + }, + "46": { + "path": "//c:valAx/c:majorTickMark/@val", + "path2": null, + "searchValue": null, + "value": "out", + "points": 2, + "category": "chart_xml", + "item": "② 값 축 주 눈금선" + }, + "47": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Width", + "path2": null, + "searchValue": null, + "value": 22677, + "points": 2, + "category": "차트", + "item": "③ 크기-너비 (80mm)" + }, + "48": { + "path": "//OLE[@BinItem=//BINITEM[@Format='OLE']/@BinData]/descendant::SIZE/@Height", + "path2": null, + "searchValue": null, + "value": 25511, + "points": 2, + "category": "차트", + "item": "④ 크기-높이 (90mm)" + }, + "49": { + "path": "//c:chart and not(//c:pt[not(ancestor::c:tx)]/c:v[text()='평균'])", + "path2": null, + "searchValue": null, + "value": true, + "points": 2, + "category": "chart_xml", + "item": "⑤ 차트 데이터(표에서 블록계산식을 제외한 나머지 값만 이용)" + }, + "50": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r//a:ea/@typeface", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": "굴림체", + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/① 글씨체 (굴림체)" + }, + "51": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@sz", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1300, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/② 크기 (13pt)" + }, + "52": { + "path": "//a:t[text()='{searchValue}']/ancestor::a:r/a:rPr/@b", + "path2": null, + "searchValue": "교육기관별 참가인원", + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "제목 문구 (교육기관별 참가인원)/③ 진하게" + }, + "53": { + "path": "//c:catAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "X축/① 글꼴 (굴림)" + }, + "54": { + "path": "//c:catAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "X축/② 크기 (9pt)" + }, + "55": { + "path": "//c:catAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "X축/③ 기울임" + }, + "56": { + "path": "//c:valAx//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "Y축/① 글꼴 (굴림)" + }, + "57": { + "path": "//c:valAx//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "Y축/② 크기 (9pt)" + }, + "58": { + "path": "//c:valAx//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "Y축/③ 기울임" + }, + "59": { + "path": "//c:legend//a:ea/@typeface", + "path2": null, + "searchValue": null, + "value": "굴림", + "points": 1, + "category": "chart_xml", + "item": "범례/① 글꼴 (굴림)" + }, + "60": { + "path": "//c:legend//a:defRPr/@sz", + "path2": null, + "searchValue": null, + "value": 900, + "points": 1, + "category": "chart_xml", + "item": "범례/② 크기 (9pt)" + }, + "61": { + "path": "//c:legend//a:defRPr/@i", + "path2": null, + "searchValue": null, + "value": 1, + "points": 1, + "category": "chart_xml", + "item": "범례/③ 기울임" + } + } +} \ No newline at end of file diff --git a/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521A.xlsx b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521A.xlsx new file mode 100644 index 0000000..b7aae6c Binary files /dev/null and b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521A.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521B.xlsx b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521B.xlsx new file mode 100644 index 0000000..58dfba6 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521B.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521C.xlsx b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521C.xlsx new file mode 100644 index 0000000..221b761 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521C.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521D.xlsx b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521D.xlsx new file mode 100644 index 0000000..dddc550 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점결과/0213_DIW_2521D.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점결과/0214_DIW_2512B.xlsx b/회차별채점자료/_2521/excel_채점결과/0214_DIW_2512B.xlsx new file mode 100644 index 0000000..a92c7ec Binary files /dev/null and b/회차별채점자료/_2521/excel_채점결과/0214_DIW_2512B.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점결과/0214_DIW_2521A.xlsx b/회차별채점자료/_2521/excel_채점결과/0214_DIW_2521A.xlsx new file mode 100644 index 0000000..2fca600 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점결과/0214_DIW_2521A.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점기준표/DIW_2521A.xlsx b/회차별채점자료/_2521/excel_채점기준표/DIW_2521A.xlsx new file mode 100644 index 0000000..7aad7c9 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점기준표/DIW_2521A.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점기준표/DIW_2521B.xlsx b/회차별채점자료/_2521/excel_채점기준표/DIW_2521B.xlsx new file mode 100644 index 0000000..0653900 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점기준표/DIW_2521B.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점기준표/DIW_2521C.xlsx b/회차별채점자료/_2521/excel_채점기준표/DIW_2521C.xlsx new file mode 100644 index 0000000..3cbf490 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점기준표/DIW_2521C.xlsx differ diff --git a/회차별채점자료/_2521/excel_채점기준표/DIW_2521D.xlsx b/회차별채점자료/_2521/excel_채점기준표/DIW_2521D.xlsx new file mode 100644 index 0000000..bc591d8 Binary files /dev/null and b/회차별채점자료/_2521/excel_채점기준표/DIW_2521D.xlsx differ