Skip to main content

Posts

Showing posts with the label LaTeX

Harvard Style citation in Latex

Here I will explain how I use natbib and agsm from harvard package for Harvard style of references. Include natbib by using \usepackage{natbib}   set  citesep  (separation between two citations in the same place) and  aysep  (separation between author and year in a citation) using \setcitestyle{citesep={;}, aysep={,}}  set bibliograpgy style to agsm my using \bibliographystyle{agsm} and the cite as required using \cite{key} , or \citep{key} a complete reference can be found here Example \documentclass[a4paper,10pt]{report}  \usepackage{natbib} \setcitestyle{citesep={;}, aysep={,}} \begin{document} \chapter{Chapter 1} This is a \citep{key}.  \bibliographystyle{agsm} \bibliography{library} \addcontentsline{toc}{chapter}{References} \end{document}

How to make a presentation with LaTeX / TeX / Beamer

Here we will see how we can create a presentation using LaTeX / TeX / Beamer. LaTeX is a newer version of TeX. Beamer is a special class of LaTeX used to create presentations. The options available with beamer and Latex make it a very powerful combination for making professional presentations. We start with a simple example. Here is the code for a simple presentation \documentclass{beamer} \usetheme{Frankfurt} \title{How to make a presentation using Beamer/ \LaTeX2e ?} \author{Gappu} \institute{http://tech-gupshup.blogspot.co.uk/} \date{July, 2012} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Introduction} Beamer class is used to make presentations using \LaTeX. Like any \LaTeX document you can create it with any text editor. \end{frame} \begin{frame}{Features of \textbf{Beamer}} \begin{itemize} \item \textbf{Beamer} is used to make presentations \item It allows to add animations \item you can embed images, videos , sounds and other media \item...