Friday, April 22, 2011

Figure wrap around text

as in Adrian's lymph node paper

\begin{wrapfigure}{r}{0.5\textwidth}
%\vspace{2.5cm}
\begin{center}
\includegraphics[width=0.4\textwidth]{1}
\end{center}
\caption{The liver lesions are annotated with bounding boxes. The segmented liver is overlaid on the original volume in light red.}
\label {FG:ANNOTATE}
\end{wrapfigure}

Friday, February 4, 2011

Using Adobe Acrobat Reader with TeXnicCenter


From Build menu, choose Define Output Profiles.
Select the LaTeX => PDF and make the following changes in the Viewer tab.
Path of executable (depends on your system):
C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe
In View project’s output, select DDE command and enter the following:
Command: [DocOpen("%bm.pdf")][DocOpen("%bm.pdf")][FileOpen("%bm.pdf")]
Server: acroview
Topic: control
In Forward search, select DDE command and enter the following:
Command: [DocOpen("%bm.pdf")][DocOpen("%bm.pdf")][DocOpen("%bm.pdf")]
Server: acroview
Topic: control
In Close document before running LaTeX, select DDE command and enter the following:
Command: [DocOpen("%bm.pdf")][DocClose("%bm.pdf")]
Server: acroview
Topic: control

Thursday, December 16, 2010

multiple figures, subfigure

\begin{figure}[htp]
  \begin{center}
    \subfigure[Original image]{\label{fig:edge-a}\includegraphics[scale=0.75]{toucan.eps}}
    \subfigure[After Laplace edge detection]{\label{fig:edge-b}\includegraphics[scale=0.75]{laplace_toucan.eps}} \\
    \subfigure[After Sobel edge detection]{\label{fig:edge-c}\includegraphics[scale=0.75]{sobel_toucan.eps}}
  \end{center}
  \caption{Various edge detection algorithms}
  \label{fig:edge}
\end{figure}