Showing posts with label Latex. Show all posts
Showing posts with label Latex. Show all posts

Monday, April 02, 2012

Running Doxygen (simple example)

First, we have to generate a configuration file for detailed specifications. This can easily be done by doxygen itself by simply typing:

doxygen –g

This will dump a default Doxyfile which is ready for further editing. We can edit the Doxyfile for flags (e.g. include subfolders etc). Once editing is finished, we can run

doxygen Doxyfile

This will generate the html or latex folder containing the documentation. In the Latex folder, you can type make to generate the desired pdf file.





Sunday, October 30, 2011

"Some Postscript specials could not be rendered" error




This is a problem encountered while practicing with MikTex and WinEdt in the windows environment. Solution is simple: Select dvips option from the Render Menu. This should solve the problem.

Metric (TFM) file not found error

While using pifont package and ding expression, I had the following error with the Latex:

! Font U/psy/m/n/12=psyr at 12.0pt not loadable: Metric (TFM) file not found.
<to be read again>

relax

l.64 {\Pifont{psy}

}

?
This is partially solved by dowloading the "symbol" package from the Package manager of the MiKTex

Monday, June 13, 2011

Manually installing a Miktex package

If working behind a company firewall preventing you to download and install the Miktex packages automatically, here is a solution to achieve that.

Including source code in Latex without using "verbatim"

It is a nice feature to have the exact (or close) code formats in the latex documents. The following “listings” package achieves that. Here is a link that illustrates this in a clear and concise manner.

Monday, March 14, 2011

The Animate Package (Latex) Example using MikTex

To be able to use the Animate package, gif files should be converted to png files using available software. In this case, conversion of the *.gif file into the *.png is carried out by ImageMagick 6.6.8 through Cygwin shell via:
convert filename.gif filename.png




A nice example with sample tex and pdf files can be found at:
http://www.lampos.net/latex-presentation

The wikipedia page for the Beamer presentation package
http://en.wikipedia.org/wiki/Beamer_%28LaTeX%29