我目前正在写论文前言。在论文的最后,我想插入我的签名(一张图片)。在图片的正下方,我想写上我的名字、日期和地点。
但是我无法让图片和文字靠拢,编译后,图片和下面的文字之间有空隙。
\documentclass{report}
\usepackage{graphicx}
\usepackage{placeins}
\begin{document}
\chapter*{Preface}
Preface text with some space after it.\\[3pc]
\FloatBarrier
\begin{figure}[htb]
\includegraphics[width=.3\textwidth]{pics/signature}
\end{figure}
\FloatBarrier
\noindent\makebox[\linewidth]{\rule{\textwidth}{1pt}}
\noindent Stud. techn. Nemo \hfill Sydney Harbour, May 30th 2003
\end{document}
答案1
在\\
段落末尾,\includegraphics
在 afigure
和\rule
a 中\makebox
,这些构造都无济于事,因此:
\documentclass{report}
\usepackage{graphicx}
\usepackage{placeins}
\begin{document}
\chapter*{Preface}
Preface text with some space after it.
\bigskip
\begin{flushleft}
\includegraphics[width=.3\textwidth]{example-image}
\rule{\textwidth}{1pt}
Stud. techn. Nemo \hfill Sydney Harbour, May 30th 2003
\end{flushleft}
\end{document}