Skip to main content

Posts

Sumatra PDF Viewer for LaTeX users on Windows

If you use LaTeX on Windows, or in particular pdflatex , you must have noticed that viewing the resulting PDF file is not as easy as you would like it to be. Many PDF readers cannot update PDF automatically when you make changes, and you will have to close PDF reader and open PDF again. Sumatra PDF on other hand will read new PDF as soon as it is updated and you don't and will save your time. 

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}

One of the first consumer cameras

How to enable / install captcha RECAPTCHA in Joomla 3

Captcha or ReCaptcha is already installed with Joomla 2.5 and 3.0. But before you can use it , you will have to enable it by providing some keys. Here I will give you step by step guide on how enable captcha using Joomla 3. Login to your site Admin at yourdomain.com/administrator From top menu select Extension Manager -> Plug In Manager From list of plug-ins find Captcha - ReCaptcha(Enable it if it is not already) Go to basic options tab , it will require a Public and Private key go to  ReCaptcha  website to get the key, provide your domain and it will give you the keys paste Keys in Jooma 3.0 and you are done. The following video explains all the steps. 

Kindle Fire HD

Amazon UK has announced new version of Kindle today called " Kindle Fire HD " with higher resolution, faster speaker , high quality sound and a HD camera for video calls. With a lot of tablets in market it is going to face a good competition considering it does not run Android. But Kindle undoubtedly is most popular Electronic Book Reader so Kindle Fire HD as well as reading books has many features any tablet has, including Amazon's own app store with many popular apps and is available at a very competitive price. One problem is that earlier Kindles had battery life of months but this one only has 11 hour battery life. Pros: Good book reader Hard built Powerful processor Dual WiFi Antenna Free unlimited cloud storage for all your Amazon content Good audio output Amazon Music streaming Cons: No android Market No 3G

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...