감동, 마음이 움직이는 것

[LaTex] Appendix with Title option 본문

Tips (Utility, Computer Language, and etc.)

[LaTex] Appendix with Title option

Struggler J. 2018. 4. 6. 08:53

[1] Appendix 사용

\begin{appendices}

\section*{Appendix}


그림이랑 수식을 각 장마다 새로 세고 싶을 때

\setcounter{figure}{0}

\setcounter{equation}{0}


각 세션이 그림과 수식을 숫자가 아닌경우 A, B, C등으로 쓰고 싶을 때

\renewcommand{\thefigure}{A\arabic{figure}}

\renewcommand{\theequation}{A\arabic{equation}}


[2] title크기 옵션 조정하기

https://tex.stackexchange.com/questions/59726/change-size-of-section-subsection-subsubsection-paragraph-and-subparagraph-ti

Appendix에 section 글자크기를 subsection크기로 글자로 넣고 싶어서 찾아 봄. 아래와 같이 하면 됨.

\usepackage{titlesec}

\titleformat{\section}{\normalfont\large\bfseries}{\thesection}{1em}{}



[3] 최종적으로 Appendix의 각 section제목을 subsction크기로 만들고 각 section마다 그림과 수식을 새로 세게 만듦.

\usepackage{titlesec}

\begin{appendices}

\section*{Appendix}

\titleformat{\section}{\normalfont\large\bfseries}{\thesection}{1em}{}

\setcounter{figure}{0}

\setcounter{equation}{0}

\renewcommand{\thefigure}{A\arabic{figure}}

\renewcommand{\theequation}{A\arabic{equation}}