PS:我已经搞清楚了。我只是添加了
\begin{table}
\end{table}
而不是图形环境
我是乳胶新手,正在尝试弄清楚如何撰写一篇简单的论文。
我有一张图(jpeg 文件),但它实际上是一张表格。Latex 将其标记为“图 1”,我想将其改为“表格 1”,可以吗?
我尝试在表格环境中显示该图形,但是没有效果。
这是我的代码:
\documentclass[]{article}
\begin{document}
\begin{figure}
\includegraphics{pic1}[h]
\caption{this is actually table1}
\end{figure}
\end{document}
答案1
\includegraphics
在环境中总是可以使用命令table
,但另一个问题是,包含的“表”是否看起来像表。
\documentclass[]{article}
\usepackage{graphicx}
\begin{document}
\begin{table}
\centering
\includegraphics{pic1}
\caption{this is actually table1}
\end{table}
\end{document}
替代解决方案:
不要使用table
环境(或figure
根本不使用环境)并使用\captionof{table}
包caption
。但是,此图/表不会浮动。
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{caption}
\begin{document}
\listoftables
\begin{table}
\centering
\includegraphics{pic1}
\caption{this is actually a table}
\end{table}
Alternatively (non-floating)
\begin{center}
\includegraphics{pic1}
\captionof{table}{This is actually a table too}
\end{center}
\end{document}