图片标题位于图片上方

图片标题位于图片上方

我有一个问题:我有一些图片,我想在图片下面添加标题。我使用了 \usepackage{graphicx},例如代码如下

\begin{figure}[h]
\begin{center}\includegraphics[width=4in]{roussos_book/figure_23skn.eps}
\textbf{\caption{Μήκος ευθυγράμμου τμήματος}}
\end{center}
\end{figure}

我需要添加一些什么才能使标题出现在下方?

编辑

\documentclass{book}
\usepackage[utf8]{inputenc}

\usepackage[english,greek]{babel}
\usepackage[square, numbers, comma, sort&compress]{natbib}  % Use the "Natbib" style for the references in the Bibliography
\usepackage{verbatim}  % Needed for the "comment" environment to make LaTeX comments

\usepackage{amsmath,amsfonts,amssymb,amscd,mathrsfs,enumerate}
\usepackage{amsthm}
\usepackage[all]{xy}
\usepackage{relsize}

\usepackage{mathtools}
\usepackage[all]{xy}
\usepackage{relsize}

\usepackage{esvect}
\usepackage{yhmath}

\usepackage{pgf,tikz}
\usepackage{mathrsfs}

\usepackage{pifont}

\usepackage[capposition=top]{floatrow}
\usepackage{graphicx}

\usepackage[innercaption ]{sidecap}

\allowdisplaybreaks


\renewcommand\qedsymbol{$\blacksquare$}
\newcommand{\triangqed}{\begin{flushright}
$\blacktriangle$
\end{flushright}}

\begin{document} 

答案1

默认设置是根本\caption不定位,它只是出现在你放置它的位置figure。但是你有

\usepackage[capposition=top]{floatrow}

因此floatrow包重新定义为仅保存其参数,然后将其排版到包选项caption指定的位置。capposition

在这种简单的情况下,您根本无法加载该包,或者您可以使用其他选项加载它。

相关内容