错误行 1 !扫描使用 \caption@xdblarg 时文件结束

错误行 1 !扫描使用 \caption@xdblarg 时文件结束

我遇到了这个问题:我的文档运行良好,但在第 1 行时,我遇到了这个问题:

! File ended while scanning use of \caption@xdblarg.
<inserted text>\par<> 
./intento4.tex
I suspect you have forgotten a `}', causing me to read past where you wanted me to stop.

我的程序就这样启动:

\documentclass[a4paper,openright,12pt]{report}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc} %acento sin codigo
\usepackage{subfigure}
\usepackage{cite} % para contraer referencias
\usepackage{graphicx}
\usepackage{subfig}
\usepackage{vmargin}
\usepackage{float}
\usepackage{multirow, array}
\usepackage{setspace}
\usepackage{soul}
\usepackage{titling}
...

我不知道问题出在哪里。

答案1

正如评论部分的用户所指出的,这很可能是由于缺少右括号}。就我而言,我有一个打开的标题语句,但我没有关闭它。

\caption{Some long text without closing bracket.

相关内容