KTUG 한국 텍 사용자 그룹

Menu

KTUG :: Q&A 마당 › List of figures에서 그림 페이지를 잘못 가르킵니다.

nocturn | 2014.12.17 08:38:07 | 메뉴 건너뛰기 쓰기

안녕하세요. 혼자 고민하다 도저히 답이 안나와서 질문 올려봅니다.


현재 thesis를 쓰고 있는 상태고 /listoffigures와 /listoftable, /tableofcontents를 사용하여 목차를 만들었는데요. 


실제 목차를 보면 목차에서 가리키는 챕터별 페이지는 표시가 잘 되는데


list of figures와 list of table에서 실제 figure가 있는 페이지와 list of figures에서 가리키는 페이지가 다릅니다.


예를 들어 실제 figure는 4페이지에 있으면 list of figures에서는 3페이지에 있다고 그러고요.


제가 만약 연달아서 6,7,8페이지에 figure를 하나씩 넣으면 셋 다 5페이지에 있다고 나옵니다.


table도 마찬가지 입니다. 


제 생각에는 list of figure가 tex파일에서 \begin{figure} 의 위치를 기준으로 하여 그것의 바로 위의 문장의 위치를 figure의 페이지로 표시하는 것 같거든요. 


지금 그림은 한페이지당 하나씩 넣으려고 하고 있는 중입니다. 그래서 tex파일에서의 위치는 3p이지만 실제 그림은 4p에 들어가 있고 그런 실정입니다. 이걸 딱 맞게 뒤페이지로 보낼려면 중간에 문장을 잘라야 하는데 그러면 문장이 끝나버려서 양쪽정렬이 안되더라고요.

main tex파일은 다음과 같구요.


====================================================================================

\documentclass[12pt,English]{postech}

\usepackage{epsfig,amssymb,graphics,subfigure,chapterbib,cite}

\usepackage[reqno]{amsmath}

\usepackage{myfancyhdr}

\usepackage{subeqnarray}

\usepackage{afterpage}

\begin{document}

\input{./Misc/Abstract.tex}

\tableofcontents

\newpage

\listoffigures

\listoftables

 \cleardoublepage


\pagenumbering{arabic}

\setcounter{page}{1}

\pagestyle{fancy}



\input{./Chapter/Ch1/Ch1.tex}

\input{./Chapter/Ch2/Ch2.tex}

\input{./Chapter/Ch4/Ch4.tex}

\input{./Chapter/Ch6/Ch6.tex}


\input{./Chapter/Conclusion/Conclusion.tex}

\newpage

\addcontentsline{toc}{chapter}{References}

\input{./Misc/references.tex}

\label{paperlastpagelabel}


\input{./Misc/Ack.tex}


\input{./Misc/cv.tex}



\end{document}

==============================================================================

그림은 일반적으로 다음처럼 넣고있습니다.


\begin{figure}[tbp]

\begin{minipage}[t]{0.4\linewidth}

  \centering

  \centerline{\includegraphics[width=5cm]{./Chapter/Ch1/Figures/GT12_original}}

  \centerline{(a)}\medskip

\end{minipage}

\caption{captioncaptioncaptioncaptioncaptioncaptioncaptioncaptioncaption}

\label{fig:Segmentation and Matting}

\end{figure}

================================================================================

그런데 한 페이지에 그림 하나씩만 넣으려다보니 \afterpage{\clearpage} 이걸 추가 하는 경우도 있고 여러그림이 하나의 figure에 들어가면 추가하지 않고 그냥 넣는데 위와같은 현상이 동일하게 발생합니다.


저런 figure를 연달아서 두세개씩하면 실제는 각각 페이지가 따로 할당이 되지만 list of figure에서는 한페이지를 가리키고 있습니다.


혹시 해결 방법 있을까요?

댓글 [16]

댓글 쓰기

목록

KTUG 한국 텍 사용자 그룹