Showing posts with label latex. Show all posts
Showing posts with label latex. Show all posts

Tuesday, October 13, 2009

BibTeX headings

Found out how to change the bibtex headings...
\tiny{
\renewcommand\bibname{Bibliography}
\bibliographystyle{ieee}
\bibliography{8_12_08}
}
This is especially useful when one wants to have selected references for one page abstract documents.

Saturday, October 10, 2009

Graphs in LaTeX

For conversion of graphs in matlab to dot (AT & T) mode,
graph_to_dot(G, 'filename', '/tmp/my.dot')

Converting dot files to tex:
dot2tex --autosize -tmath ex1.dot > ex1.tex
Found this handy script for converting all .dot files in a directory to .ps; Very handy renaming in bash.
for f in *.dot do ; dot -Tps -o ${f%dot}ps $f ; done