2010年6月16日 星期三

How to Insert URL References into BibTex

  1. Import the url package in tex file: \usepackage{url}
  2. Insert a reference as misc. Then input your URL under “\url{URL}” in howpublished as the following example:
@misc{Tool:ATL,
title = {ATLAS Transformation Language, Version 3.0.0},
institution = {The Eclipse Foundation},
Howpublished={\url{http://www.eclipse.org/m2m/atl/}}
}

Reference: BibTex Issues – How to Insert Url References

2010年6月2日 星期三

Using sub-figures in LaTex document


\usepackage{subfigure}

\begin{figure}[!ht]
\centering
\subfigure[subfigure1 caption] {
\label{fig:subfigure1}
\includegraphics[width=?]{subfigure1.eps}
}
\hspace{1cm}%Theinterval between subfigure1 and subfigure2\subfigure[subfigure2 caption] {
\label{fig:subfigure2}
\includegraphics[width=?]{subfigure2.eps}
}
\caption{Global figure caption}\label{fig:globalFigure}
\end{figure}
技術提供:Blogger.