a***n 发帖数: 3633 | 1 请问和\parbox功能一样,但是是有框的box的那个命令是哪个啊? |
|
a**e 发帖数: 5794 | 2 \mbox 对应 \fbox
\makebox 对应 \framebox
\parbox 没有对应的box,可以用\fbox 里面嵌套 minipage 实现。 |
|
n*********u 发帖数: 34 | 3 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 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
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 thx, I tried parbox, it seems that it cannot break a page...
item |
|
n*s 发帖数: 752 | 7 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 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 inline mode: \fbox{$...$}
display mode:
\fbox{\parbox{\linewidth}{
\begin{equation}
...
\end{equation}
}} |
|
|
|
|