첫 번째 페이지 하단에 그림을 넣으세요.

첫 번째 페이지 하단에 그림을 넣으세요.

문제는 간단합니다. Latex가 그림을 첫 페이지 하단에 배치하도록 강제하는 방법입니다. [!hbt]를 사용했는데 그러면 두 번째 페이지 상단에 이미지가 표시됩니다.

\begin{figure*}[!thb]
 \centerline{
\includegraphics[width=1.7\columnwidth]{image.pdf} \hspace*{0.5cm}}
\caption{\label{fig:d} .   }
\end{figure*}

페이지는 2열 형식입니다. 그리고 일반적으로 IEEE 클래스의 첫 페이지에는 저자 소속과 같은 각주가 있습니다. 그렇다면 각주 위의 첫 페이지 하단에 그림을 배치하는 방법은 무엇입니까?

답변1

여기에 이미지 설명을 입력하세요

\documentclass[twocolumn]{article}

\usepackage{capt-of}

\def\a{One two three four five six seven eight nine ten. }
\def\b{\a\a\a\a\par\a Red green blue. \a\a\a Yellow. \a.\par}

\title{zzz}
\author{me}
\begin{document}
\maketitle
\enlargethispage{-3.2cm}
\noindent\begin{picture}(0,0)
\put(0,-390){\begin{minipage}{\textwidth}
\centering
\rule{.75\textwidth}{2.5cm}%\includegraphics...
\captionof{figure}{zzzzz}
\end{minipage}}
\end{picture}%
\b\a\a\b\b\a\a\a\b
\enlargethispage{-3.2cm}
\b\b\b\a\a\b\b\a\a\a\b

\end{document}

관련 정보