Hey guys
I'm having a problem with a caption attached in a wrapfigure command. The wrapfigure command is as follows.
\begin{wrapfigure}{r}{60mm}
\begin{center}
\includegraphics*[width=0.35\textwidth]{../Billeder/gull.png}
\end{center}
\caption{A gull,A gull,A gull,A gull,A gull,A gull,A gull,A gull,A gull,A gull,A gull,A gull,}
\label{fig:gull}
\end{wrapfigure}
I however have a long describing caption. The problem is, that when I look at my output, the caption text looks weird because the textbox in limited to 2/3 of the full part of the wrapfigure box. If I want the text to stand somewhat good looking, I need to expand the total width of the wrapfigure to 90-100mm. And with a figure that has a width of 35% of textwidth, that also looks awful. Any suggestions..?
The second question is making some chapters that doesn't have a number, but is still in the table of contents. I'm pretty clueless to how to make this happen. To make it more clear, the chapters in question are appendices in a tech report.
Hopefully someone can help.
Vunde
General ⇒ Wrapfigure and Chapter number issue
NEW: TikZ book now 40% off at Amazon.com for a short time.
Wrapfigure and Chapter number issue
Have you triedVunde wrote:Hey guys
The second question is making some chapters that doesn't have a number, but is still in the table of contents. I'm pretty clueless to how to make this happen. To make it more clear, the chapters in question are appendices in a tech report.
Vunde
\chapter*{Unnumbered}
\addcontentsline{toc}{chapter}{Unnumbered}
?
Regards.
OS: Debian/GNU Linux; LaTeX System : TeXLive; Editor : Vim
Wrapfigure and Chapter number issue
It worked out fine, however, now the sections are numbered after the previous chapter that has a number. How do I remove the number from these sections..?mas wrote:Have you triedVunde wrote:Hey guys
The second question is making some chapters that doesn't have a number, but is still in the table of contents. I'm pretty clueless to how to make this happen. To make it more clear, the chapters in question are appendices in a tech report.
Vunde
\chapter*{Unnumbered}
\addcontentsline{toc}{chapter}{Unnumbered}
?
Regards.
Is that just to add * to the sections in question..?