Tag Archive for 'automatic'

Internetpret voor 2008-6-12

Internetpret voor 2008-3-13

Gratis: de nieuwe single van Zoot Woman

Zoot Woman brengt in 2008 een nieuw album en als teaser kan je nu alvde eerste single downloaden en dit gratis en voor niks! Hier klikken en je kan het leuke nummer We won’t break op je schijf laden en beluisteren. Zoot Woman is één van de vele projectjes van Stuart Price, de man achter de Thin White Duke-remixen (o.a. Four to the floor van Starsailor) en de producer van de toekomstige nieuwe van The Killers en de laatste van Seal. Zoot Woman scoorde hits met onder andere Living in a Magazine en Automatic.

(via StuBru)

LaTeX: indentation itemize

Ever wondered how to change the indentation in the LaTeX itemize environment? Well, it can’t. When you use the itemize environment in LaTeX your items (\item) will automatically be indented about 2em. Sometimes however (like me yesterday), this indentation is not needed and you want the items in you list to be aligned as the text. However in that case you will have to use the list environment. This is a general environment that can be used for any kind of list and of which the itemize is a special case. To generate an itemize without identation use the following code:

\begin{list}{\labelitemi}{\leftmargin=1em}
\item First item in the list
\item Second item
\item and so on
\end{list}

For more information on the list environment, check this website