由买买提看人间百态

topics

全部话题 - 话题: parbox
(共0页)
a***n
发帖数: 3633
1
请问和\parbox功能一样,但是是有框的box的那个命令是哪个啊?
a**e
发帖数: 5794
2
\mbox 对应 \fbox
\makebox 对应 \framebox
\parbox 没有对应的box,可以用\fbox 里面嵌套 minipage 实现。
n*********u
发帖数: 34
3
来自主题: TeX版 - latex插图求助
latex 中间插图源码如下:
\begin{figure}[]
\centering
\begin{parbox}{
\begin{tabular}{cc}\\
\includegraphics[width=6cm]{CP5_figs/girl_happy.eps} &
\includegraphics[width=6cm]{CP5_figs/girl_mouth.eps} \\
(a)& (b)
\end{tabular}
}\end{parbox}\\
\begin{parbox}[h]{0.72/linewidth}{
\begin{tabular} {cc}
\includegraphics[width=6cm]{CP5_figs/girl_smile.eps} &
\includegraphics[width=6cm]{CP5_figs/girl_waa.eps} \\
(c)& (d)
\end{tabular}
}\end{parbox}
\caption{The first group input pictures for
distance-based metam
T*******n
发帖数: 493
4
来自主题: TeX版 - 怎么控制表格里行的高度?
Each cell in the table has its own vertical alignment reference point,
and all the cells in the same row have their vertical alignment reference
points aligned with each other. The vertical alignment of these cells
work the same way as \parbox's.
Maybe this helps illustrate the alignment mechanism?
\documentclass[landscape]{article}
\setlength{\oddsidemargin}{0in}
\setlength{\textwidth}{9in}
\begin{document}
\makebox[0pt][l]{\rule{\textwidth}{0.2pt}}
\ignorespaces
vertical alignment reference l
T*******n
发帖数: 493
5
来自主题: TeX版 - About text width for one page

Try the minipage environment (you can optionally specify the
height), followed by a \clearpage if needed.
Try either minipage or \parbox, or define your own environment
using something like the following to make the special paragraph
indented 0.5 inch on both left and right sides (negative length will
make the paragraph wider than normal text width):
\newenvironment{specialpar}%
{\list{}{\setlength{\leftmargin}{0.5in}\setlength{\rightmargin}{0.5in}}\item
}%
{\endlist}
\begin{specialpar}
tex
z*****n
发帖数: 7639
6
来自主题: TeX版 - About text width for one page
thx, I tried parbox, it seems that it cannot break a page...

item
n*s
发帖数: 752
7
来自主题: TeX版 - graph question
i tried this, seems to work:
\begin{minipage}[t]{\linewidth}
\parbox[t]{0.6\linewidth}{what i want to say........... }
\hfill
\begin{minipage}[t]{0.3\linewidth}
\mbox{\includegraphics[width=3cm]{mpe.eps}}
\end{minipage}
\end{minipage}
T*******n
发帖数: 493
8
Wrap \framebox around a \parbox or a minipage environment.
s**i
发帖数: 381
9
来自主题: TeX版 - 表格里面查图片
I solved the problem by using \parbox
g*********r
发帖数: 124
10
\title{\parbox{2\textwidth}{\sloppy Very very very long title}}
m*********g
发帖数: 273
11
我需要在thesis中加一些示例,本来是用minipage和fbox,parbox来做,但是我觉得框
不够简洁,所以我想用下面的样子:
Example:whatever
S**I
发帖数: 15689
12
来自主题: TeX版 - 求助 如何给公式加边框?
inline mode: \fbox{$...$}
display mode:
\fbox{\parbox{\linewidth}{
\begin{equation}
...
\end{equation}
}}
b*******t
发帖数: 33714
13
\framebox?
a***n
发帖数: 3633
14
介个对应的是makebox吧。
b*******t
发帖数: 33714
15
不记得了 @__@
好久没画过框框了
(共0页)