LATEX插入图片时\caption无法使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LATEX插入图片时\caption无法使用相关的知识,希望对你有一定的参考价值。

我用LATEX插入图片时,一使用\caption,就无法编译,去掉就可以了,但是图片的上方会出现图片的文件名,具体的latex代码如下:
\documentclassbeamer
\usepackageamsmath,amsthm
\usepackagegraphics
\usepackagegraphicx
\usepackagesubfigure
\usepackagemakeidx
\usepackagecolor
\usepackagemulticol
\usepackagehyperref
\begindocument
\titleHow to use Latex\thankssipported by
\authorxx
\date
\maketitle
\beginframe
\frametitle network
\beginfigurehtbp
\includegraphicsnetwork.JPG
\labelxx
\captionxx
\endfigure
\endframe
\enddocument
请问给位大牛,到底问题出在哪儿啊?

参考技术A 不是caption的问题,你的figure环境选项写错了,应用“[ ]"而不是“”
另外\label最好放到\caption里面。
\beginfigure[htbp]
%\includegraphicsnetwork.JPG
\fboxsample picture
\captionxx\labelxx
\endfigure追问

还是不行啊!!执行到\caption的时候显示undefined control sequence.

追答

-清除下latex编译时产生的临时文件: *.log *.aux *.mtc* *.bak *.out *.maf *.toc *.mlf*
-如果还不行:看看你用的啥tex发行版?是不是没装好?

追问

清除了临时文件也不行,版本是WinEdt 6.0

追答

winedt只是编辑器而已。
你搜索下ctex然后下载。

本回答被提问者采纳
参考技术B 插入\usepackagecaption就可以了 参考技术C 没有导入caption包 参考技术D 请问楼主解决了吗,我也遇到这个问题了。请问最后怎么解决的? 第5个回答  2018-11-08 请问楼主解决了吗,我也遇到这个问题了。

Latex2021数模国赛模板使用

本文用于排版时快速复制需要的内容框架。
所用模板为2021Latex国赛模板

插入图片

width根据需要改.

\\begin{figure}[H]
	\\centering
	\\includegraphics[width=8cm]{../../所用图片/12.png}
	\\caption{问题一流程图}
\\end{figure}

连续实心点

\\begin{itemize}
\\item 
\\item 
\\item 
\\end{itemize}

插入公式

\\begin{equation}

\\end{equation}

插入图片

\\begin{figure}[H]
	\\small
	\\centering
	\\includegraphics[width=12cm]{../../所用图片/1.png}
	\\caption{任务分布图} 
\\end{figure}

字体加粗

\\textbf{}

插入表格(带底注)

\\begin{table}[H]
	\\centering
	\\begin{threeparttable}       
	\\begin{tabular}{|c|c|c|c|c|}
	\\hline
	任务号码  & 原任务标价 & 原任务执行情况 & 现任务标价 & 现任务执行情况 \\\\ \\hline
	A0001 & 66    & 0       & 51    & 1       \\\\ \\hline
	A0002 & 60    & 0       & 61    & 1       \\\\ \\hline
	A0003 & 60    & 1       & 61    & 1       \\\\ \\hline
	A0004 & 75    & 0       & 59    & 1       \\\\ \\hline
	A0005 & 60    & 0       & 61    & 1       \\\\ \\hline
	\\multicolumn{5}{|c|}{......}              \\\\ \\hline
	A0831 & 60    & 0       & 61    & 0       \\\\ \\hline
	A0832 & 72    & 1       & 51    & 1       \\\\ \\hline
	A0833 & 85    & 1       & 66.5  & 1       \\\\ \\hline
	A0834 & 60    & 1       & 61    & 1       \\\\ \\hline
	A0835 & 85    & 1       & 66.5  & 1       \\\\ \\hline
	\\end{tabular}
	\\begin{tablenotes}
		\\footnotesize
		\\item 注:由于篇幅有限,这里仅展示部分数据。
	\\end{tablenotes}
	\\caption{问题二任务标价与执行情况}
\\end{threeparttable}     
\\end{table}

插入表格(不带底注)

\\begin{table}[H]
	\\centering
	\\begin{tabular}{|c|c|c|c|}
		\\hline
		打包任务数 & 个数 & 打包任务数 & 个数 \\\\ \\hline
		20    & 8  & 10    & 8  \\\\ \\hline
		19    & 13 & 9     & 6  \\\\ \\hline
		18    & 15 & 8     & 2  \\\\ \\hline
		17    & 11 & 7     & 16 \\\\ \\hline
		16    & 5  & 6     & 12 \\\\ \\hline
		15    & 8  & 5     & 11 \\\\ \\hline
		14    & 7  & 4     & 14 \\\\ \\hline
		13    & 6  & 3     & 15 \\\\ \\hline
		12    & 4  & 2     & 14 \\\\ \\hline
		11    & 5  &       &    \\\\ \\hline
	\\end{tabular}
	\\caption{附件三任务打包表}
\\end{table}

以上是关于LATEX插入图片时\caption无法使用的主要内容,如果未能解决你的问题,请参考以下文章

latex插入图片时设置caption的文字小于正文,可是默认的图片编号还是原来大小,该怎么解决?

latex中插入图片问题

Latex 插入图片问题 按照下面写的 为啥运行不了呢

latex并排放置图片文件中如何使“图1孙悟空”位于孙悟空图片的正下方

Latex中IEEEtran是一面左右两个版面,但我想插入表格和图片占整个版面,要怎么办?

LaTex图片的插入与引用