Q&A 마당은 텍 관련 질문/답변을 위해 만들었습니다.

  • 로그인 없이 자유롭게 글을 읽고 쓸 수 있는 철학은 처음과 같이 계속됩니다.
  • 질문 전에 아래를 읽어 보세요. 좋은 질문이 좋은 답을 받을 수 있는 좋은 방법입니다.
    • 질문에 맞는 제목을 붙이세요. 질문의 내용과 관련없는 "고수님", "긴급질문", "도와주세요"와 같은 제목은 답이 잘 올라오지 않습니다. 이 게시판에 올라오는 모든 글은 질문입니다. 굳이 [질문], [Q]를 적으실 필요도 없습니다.
    • 내용을 충실히 적어 주시고, 같은 상황을 재현할 수 있는 최소한의 예제가 같이 있어야 합니다.
    • 최소 예제는 "Minimal working example"을 읽어 보세요.
  • 파일을 첨부하실 때에는 가능한 압축하여 파일 크기를 줄여서 올려주시길 바랍니다.
  • 개인적으로 사용하신 글꼴이 들어 있는 경우, preparefont.sty에 관한 답변을 참조하세요.
  • 스팸 글을 막기 위하여 짧은 시간 내에 다시 글이 등록되는 IP를 막거나, 광고 글을 막기 위하여 금지어로 .com, .net 등을 설정하고 있습니다. 다소간의 불편함이 있으시더라도 양해 바랍니다.
    • 금지어에서 stackexchange, stackoverflow, ctan, overleaf, , github, google.com, gmail.com, .org, .io, sil.org, wiki.com, tistory.com등은 해제하였습니다.
  • MathJax를 이용한 수식조판을 사용하실 수 있습니다. 여기를 참조하세요.
  • 사용하는 편집기는 CKeditor입니다.
    • 편집기에서 [enter]를 누르면 <p> 태그가 들어가고, 문단으로 생각하고 한 줄을 비웁니다.
    • 글줄만 바꾸려면 [shift-enter]를 누르면 <BR> 태그가 들어가므로 용도에 맞게 나누어 쓸 수 있습니다.
    • 수식를 문서내에 삽입하시려면 에디터를 툴바에서 [소스]를 눌러 HTML로 입력할 수 있게 바꾸신 후 <pre> </pre> tag를 사용하셔서 <pre> 여러 줄의 수식 </pre>처럼 입력하시면 좋습니다.

XeLaTeX 목차 질문입니다.

2018.02.12 18:37

coelus 조회 수:1352

안녕하세요.

맥에서 XeLaTeX로 작업중인데요.

제가 장과 절 부분을 바꾸고 싶어서 .cls 파일에서 

%%Chapter
\makeatletter
\def\thickhrulefill{\leavevmode \leaders \hrule height 1ex \hfill \kern \z@}
\def\@makechapterhead#1{%
  \vspace*{10\p@}%
  {\parindent \z@ \reset@font
        {\Huge\bfseries \thechapter. }
        %\par\nobreak
        \vspace*{10\p@}%
        %\interlinepenalty\@M
        %\hrule
        \vspace*{10\p@}%
        \Huge \bfseries #1\par\nobreak
        \par
        \vspace*{10\p@}%
    \vskip 100\p@
  }}
\def\@makeschapterhead#1{%
  \vspace*{10\p@}%
  {\parindent \z@  \reset@font
        {\Huge\bfseries \vphantom{\thechapter.} }
        %\par\nobreak
        \vspace*{10\p@}%
        %\interlinepenalty\@M
        %\hrule
        %\vspace*{10\p@}%
        \Huge \bfseries #1\par\nobreak
        \par
        \vspace*{10\p@}%
    \vskip 100\p@
  }}

%%Section
\renewcommand\thesection{\arabic{section}}

\makeatletter
\def\section{\@ifstar\unnumberedsection\numberedsection}
\def\numberedsection{\@ifnextchar[%]
  \numberedsectionwithtwoarguments\numberedsectionwithoneargument}
\def\unnumberedsection{\@ifnextchar[%]
  \unnumberedsectionwithtwoarguments\unnumberedsectionwithoneargument}
\def\numberedsectionwithoneargument#1{\numberedsectionwithtwoarguments[#1]{#1}}
\def\unnumberedsectionwithoneargument#1{\unnumberedsectionwithtwoarguments[#1]{#1}}
\def\numberedsectionwithtwoarguments[#1]#2{%
  \ifhmode\par\fi
  \removelastskip
  \vskip 3ex\goodbreak
  \refstepcounter{section}%
  \noindent
  \leavevmode
  \begingroup
  \Large
  \bfseries
  \thesection)\ 
  #2\quad
  \endgroup
  \addcontentsline{toc}{section}{%
    \protect\numberline{\thesection}%
    #1}%
  }
\def\unnumberedsectionwithtwoarguments[#1]#2{%
  \ifhmode\par\fi
  \removelastskip
  \vskip 3ex\goodbreak
%  \refstepcounter{section}%
  \noindent
  \leavevmode
  \begingroup
  \Large
  \bfseries
%  \thesection\ 
  #2\quad
  \endgroup
  \addcontentsline{toc}{section}{%
%    \protect\numberline{\thesection}%
    #1}
  }
\makeatother

이렇게 장과 절을 바꾸었습니다.

장 부분이 1. 2. 3. ...

절 부분이 1) 2) 3) ... 

이런식으로 나오게끔 만들었습니다.

그런데 목차 부분에서는 바꾼것처럼 나오지는 않고

숫자만 나오는데 어떻게 하는지 알려주실 수 있을까요?

번호 제목 글쓴이 날짜 조회 수
공지 Minimal Working Example을 첨부해주세요 [4] nanim 2015.06.23 230464
544 수평선 긋기 [7] file 판돌이 2020.04.23 2269
543 Tex file을 MS word로 변경하는 방법이 있을까요? [3] 강태신 2020.04.23 126625
542 이상한 색인생성 [2] file 판돌이 2020.04.23 2336
541 TeX Live 기업용 사용가능 여부 [3] 회사원 2020.04.24 2085
540 우분투 20.04와 amsbook.cls의 문제 [10] file 큰바위 2020.04.25 2157
539 html화일의 소스 내용을 tex로 읽을 수 있는지요 ? [3] file matix 2020.04.28 2149
538 tikz 사용시 에러. [5] 나그네 2020.04.28 2063
537 행렬 질문입니다. [4] file NLDS 2020.04.28 1975
536 Texlive 2020 설치 [1] file 1111 2020.04.29 2678
535 조판과정 makeindex에서 막힙니다. [4] 라텍초보 2020.05.01 5303
534 2020mactex에서 tabu 문제 [2] Kriss 2020.05.04 2004
533 mactex 2018 or 2019 구하는 방법.. [2] Kriss 2020.05.04 1932
532 pdflatex에서 print 결과가 축소되는 문제 [5] file dklee 2020.05.12 1946
531 사용자 정의 매크로와 lwarp [2] file yihoze 2020.05.13 1971
530 Tex live 2020 설치 오류 [7] file jo 2020.05.14 2866
529 한글 가운데 줄(-) 표시 에러 등 [4] 궁금이 2020.05.15 2129
528 옛한글 입력에 관해 문의드립니다. [6] file teolsuk 2020.05.16 2006
527 Beamer의 두번째 프레임부터 title을 표시되지 않게 하고 싶습니다. [9] 미미 2020.05.18 2026
526 Beamer사용중 koPubWorld 한글폰트 설정에 대해서 궁금합니다. [3] file 세모시 2020.05.20 2439
525 Beamer에서 글자와 그림을 한 줄로 넣고 싶습니다. [2] file 바보 2020.05.21 2036



XE Login