| 查看: 5528 | 回复: 2 | ||
[求助]
如何在latex中插图插文字
|
| 我想在latex中插入图片, 并且把这个图片的注释放在图片的右边, 不知道有什么命令可以实现? 以前用过把这个图片的注释放在图片的下边, 但现在想把这个图片的注释放在图片的右边, 就不会了, 谢谢指点. |
» 猜你喜欢
不要再数国自然申请书的 filecode 的分隔符个数了
已经有21人回复
投英文期刊如何查重
已经有5人回复
伯胺上甲基求助
已经有7人回复
生命口面上会评结束了吗大家有知道结果吗?现在还没有结果正常不?
已经有8人回复
跨出版社商投稿
已经有5人回复
5个%2F,非固定段22个字母
已经有7人回复
生命口C13面上会评时间
已经有10人回复
生生命学部会评
已经有4人回复
H口,面上,时间戳7月7日。
已经有3人回复
小木虫没落了,除了祈祷帖子,几乎看不到有价值的帖子
已经有14人回复
» 本主题相关价值贴推荐,对您同样有帮助:
APL投稿用word格式,系统转化成PDF后,其中的图片变得很不清晰
已经有5人回复
投稿文章不显示图片
已经有6人回复
将图片插入到word文档中,然后点击网站上的view PDF,生成pdf文档中图片不清晰
已经有12人回复
关于是否要改成latex的疑问 谢谢
已经有4人回复
elsevier投稿系统用excel文件代替图片上传后生成的pdf文件不正常
已经有5人回复
关于Latex中pdf和eps图片的处理
已经有13人回复
求问latex插入图片。。。。
已经有12人回复
大家投稿的图片有PS过吗?
已经有10人回复
Highlights字符数超了些,怎么办?
已经有27人回复
向elsevier投稿时, 图片和文字单独上传时,图片在wrod中应怎样说明呢?
已经有11人回复
latex中插入图片,上下排列,怎么第二个图上方有大片空白?
已经有5人回复
【求助】latex插入图形白边处理的问题
已经有10人回复
不晓得应该怎么在LATEX下引用这个图片
已经有4人回复
期刊要求两列排版,可是分列的话图片放到其中某一列太小,看不清,怎么办
已经有9人回复
IOP 不能在线自动生成PDF文件,求一个含图片的IOP的LaTex模板
已经有9人回复
关于LATEX插入图片的问题
已经有5人回复
LaTex插入JPG图片
已经有4人回复
文章校对稿,编辑说图片分辨率不够,求救
已经有7人回复
Elsevier投稿(LaTeX),图片和表格怎样才不算是嵌入到正文?
已经有13人回复
sci为什么要求将origin图转变成图片而不直接嵌入word?
已经有19人回复

2楼2011-12-09 08:48:32
【答案】应助回帖
|
Putting the figure and the caption side by side. Normally the caption goes below or above the figure, but you may want it to the left or the right instead. The minipage environment is useful. The following example puts the figure on the left side using 58% of the with, and the caption on the rigth using 38% of the with. The remaining 4% of the page width ends up separating the two due to the \hfill command. \begin{figure} \begin{center} \begin{minipage}[t]{0.58\linewidth} \epsfig{file=somefile.ps, width=\linewidth} \end{minipage}\hfill \begin{minipage}[t]{0.38\linewidth} \caption{This is the caption.\label{fig:rawss}} \end{minipage} \end{center} \end{figure} Note the placement of the \label command, it must appear inside the \caption command, or after it but still inside the minipage environment. Otherwise references to the figure will be wrong. The vertical alignment of the figure and the caption may be troublesome, you may have to put the figure inside a \raisebox command. \raisebox{2cm}{\epsfig{file=somefile.ps, width=\linewidth}} Or change the [t] optional argument to the minipage environments to [c] or . Experiment! |

3楼2011-12-09 10:47:53











回复此楼