Hla Hla Htay's Notes


My brother and My sister
July 3, 2008, 11:11 am
Filed under: Family | Tags: ,

The very special two persons in this photo are my brother and my sister. See in this style, they look like chinese actor and korean actress. They look like prince and princess.

As I look like ogre :) , they warned me to focus on study (they are my sponsors for study) and also not to fall to any guy and they would change me to JLo with technology :P . Humm remember your words said on 29-6-2008 :D .




Back from Kharagpur, Summer School
July 3, 2008, 10:58 am
Filed under: Mylife, University | Tags: ,

I joined “Summer school for NLP and text mining”, in Kharagpur from 24-6-2008 to 29-6-2008. It was very enjoyable. I like all the programs and food too. :) . I want to tell a lot of things.

  • But only when I am tired with study, I will upload a lot of photos and a lot of things.

  • I want to let the bloggers know that how they contribute the research community (Natural Langauge Processing) with writing a word or a phrase or a sentence in any langauge. If you can’t wait for what I’ll be writing about, just visit the following URL. http://cse.iitkgp.ac.in/nlpschool/program.html and you will find a lot of materials by presenters



Table , figure in twocolumn mode
July 3, 2008, 9:28 am
Filed under: Latex, Writing | Tags: , ,

{table*} or {figure*} to show across column

This will put the date, the page number, and your name at the bottom of every page:

\pagestyle{fancy}
\lfoot{\today}
\cfoot{\thepage}
\rfoot{Your Name Here}

from http://web.mit.edu/olh/Latex/rep-latex.html


Both within LaTeX’s \twocolumn and within the multicols environment defined by the multicol package (often preferrable to \twocolumn, since it balances the columns on the last page and lets you change between two- and one-column modes without starting a new page), you can insert full-width floats by using the starred form of the float environments: figure* and table*.

fromhttp://www.cse.iitd.ernet.in/~anup/homepage/UNIX/latex.html#onetableintwocolumns



\parbox[b]{2in}{I like using parbox to create funny little boxes of text all over my page. This one has its bottom edge aligned with the current line}
CURRENT LINE.
\parbox[t]{2in}{The top of my text is aligned with that current line.}

from http://www.artofproblemsolving.com/LaTeX/AoPS_L_GuideLay.php



\begin{figure}[ht]
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[scale=1]{filename1}
\caption{default}
\label{fig:figure1}
\end{minipage}
\hspace{0.5cm}
\begin{minipage}[b]{0.5\linewidth}
\centering
\includegraphics[scale=1]{filename2}
\caption{default}
\label{fig:figure2}
\end{minipage}
\end{figure}


from http://texblog.wordpress.com/2007/08/01/placing-figurestables-side-by-side-minipage/