| 查看: 5444 | 回复: 2 | ||
[求助]
如何在latex中插图插文字
|
| 我想在latex中插入图片, 并且把这个图片的注释放在图片的右边, 不知道有什么命令可以实现? 以前用过把这个图片的注释放在图片的下边, 但现在想把这个图片的注释放在图片的右边, 就不会了, 谢谢指点. |
» 猜你喜欢
0703 物理化学调剂
已经有5人回复
化学工程321分求调剂
已经有7人回复
0703化学调剂 290分有科研经历,论文在投
已经有7人回复
308求调剂
已经有3人回复
本人考085602 化学工程 专硕
已经有10人回复
焦虑
已经有9人回复
0856求调剂
已经有3人回复
283求调剂
已经有11人回复
深圳大学硕士招生(2026秋,传感器方向,仅录取第一志愿)
已经有8人回复
0703化学调剂
已经有7人回复
» 本主题相关价值贴推荐,对您同样有帮助:
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













回复此楼
5