When I wrap my text around a shape, I can not wrap it around the right lesson. Actually, I have to keep a lesson in that part, the figure is wrapped around it, but when I compile it, my figure is below the page next to the text in the second section. 1. How can I change it? 2. (A little talk) How do I create labels for captions, such as "Figure 1.", bold?
\ usepackage {graphicx} \ usepackage {wrapfig} .. \ start {wrapfigure} {r} {40mm} \ begin {center} \ includegraphics [scale = 0.5] {image} \ end {Center} \ caption {This image is.} \ End {wrapfigure}
< Strong> Question # 1
It may depend on the fact that the width specified in the \ includegraphics
option is wrapfigure
environment Can be more than the specified width at the beginning.
It is always better to specify the width in relation to the \ textwidth
Also, since the boxes box is slightly larger than the box box, it should always be slightly larger: < / P>
\ start {wrapfigure} {r} {. 3 \ textwidth} \ centering \ includegraphics [.27 \ textwidth] {image} \ caption {This image is.} \ End {wrapfigure}
Question # 2
Using the captions
package, you can change the layout of labels as you like. If you want them to be bold, type in your pramble:
\ usepackage [labelfont = bf] {caption}
Comments
Post a Comment