<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.robolabo.etsit.upm.es/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matallanas</id>
		<title>RobolaboWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.robolabo.etsit.upm.es/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Matallanas"/>
		<link rel="alternate" type="text/html" href="https://wiki.robolabo.etsit.upm.es/index.php/Special:Contributions/Matallanas"/>
		<updated>2026-04-23T11:08:05Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.25.3</generator>

	<entry>
		<id>https://wiki.robolabo.etsit.upm.es/index.php?title=LaTeX&amp;diff=271</id>
		<title>LaTeX</title>
		<link rel="alternate" type="text/html" href="https://wiki.robolabo.etsit.upm.es/index.php?title=LaTeX&amp;diff=271"/>
				<updated>2016-06-06T14:59:23Z</updated>
		
		<summary type="html">&lt;p&gt;Matallanas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--__NOTOC__--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt; TikZ &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some problems have been reported when compiling  TikZ with TexLive 2009.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Compilation Problems &amp;lt;/h2&amp;gt;&lt;br /&gt;
Whether compiling you get: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
I can't  find file tikzlibrary&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, it is possible you have problems with TexLive and  need to install  new TexLive version.&lt;br /&gt;
&lt;br /&gt;
Download TexLive 2011 image:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://ftp.oleane.net/pub/CTAN/systems/texlive/Images/texlive2011.iso&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mount the .iso image as root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mount -o loop -t iso9660 texlive2011.iso /media/cdrom&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install TexLive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
./install-tl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Choose the following options:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Options -&amp;gt; Create SymLinks -&amp;gt; [Chose Standar Dirs]&lt;br /&gt;
Install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Compilation works, but not pictures shown &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Get last pgf package:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://downloads.sourceforge.net/project/pgf/pgf/version%202.10/ \&lt;br /&gt;
  pgf_2.10.tds.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpgf%2F&amp;amp;ts= \&lt;br /&gt;
  1338847489&amp;amp;use_mirror=netcologne&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip the downloaded file.&lt;br /&gt;
Substitute the old pgp package by the new downloaded one:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mv tex/generic/pgf/* /usr/share/texmf/tex/generic/pgf/*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Execute as superuser:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
texhash&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; DVI problems &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
dvipdfm does not completelly supports tikz options.&lt;br /&gt;
Modify it by dvipdfmx&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt; Bibtex &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bibliography style for the different elements to cite inside the document.&lt;br /&gt;
ALIAS is referred to the name of the bibtex element that you are going to cite it. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Article &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@ARTICLE{ALIAS,&lt;br /&gt;
 author  = {{AUTHOR}},&lt;br /&gt;
 title   = {{TITLE}},&lt;br /&gt;
 journal = {{JOURNAL}},&lt;br /&gt;
 volume  = {{VOLUME}},&lt;br /&gt;
 number  = {{NUMBER}},&lt;br /&gt;
 pages   = {{PAGES}},&lt;br /&gt;
 year    = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Collection of books &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@INCOLLECTION{ExIncollec01,&lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 booktitle = {{BOOKTITLE}},&lt;br /&gt;
 editor    = {{EDITOR}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 pages     = {{PAGES}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Conference proceedings &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@INPROCEEDINGS{ExInpro01, &lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 booktitle = {{BOOKTITLE}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 pages     = {{PAGES}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Technical Report &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@TECHREPORT{ALIAS,&lt;br /&gt;
 author      = {{AUTHOR}},&lt;br /&gt;
 title 	     = {{TITLE}},&lt;br /&gt;
 institution = {{INSTITUTION}},&lt;br /&gt;
 number      = {{NUMBER}},&lt;br /&gt;
 year        = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Books &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@BOOK{ALIAS,      &lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; PHD Thesis &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@PHDTHESIS{ALIAS,&lt;br /&gt;
 author = {{AUTHOR}},&lt;br /&gt;
 title  = {{TITLE}},&lt;br /&gt;
 school = {{SCHOOL}},	&lt;br /&gt;
 year   = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Web Links &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@MISC{ALIAS,&lt;br /&gt;
 author       = {{AUTHOR}},&lt;br /&gt;
 title        = {{TITLE}},&lt;br /&gt;
 howpublished = {\url{LINK}},&lt;br /&gt;
 year         = {{YEAR}},&lt;br /&gt;
 note         = {[Online; accessed DATE]}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Matallanas</name></author>	</entry>

	<entry>
		<id>https://wiki.robolabo.etsit.upm.es/index.php?title=LaTeX&amp;diff=270</id>
		<title>LaTeX</title>
		<link rel="alternate" type="text/html" href="https://wiki.robolabo.etsit.upm.es/index.php?title=LaTeX&amp;diff=270"/>
				<updated>2016-06-06T14:58:51Z</updated>
		
		<summary type="html">&lt;p&gt;Matallanas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--__NOTOC__--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt; TikZ &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some problems have been reported when compiling  TikZ with TexLive 2009.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Compilation Problems &amp;lt;/h2&amp;gt;&lt;br /&gt;
Whether compiling you get: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
I can't  find file tikzlibrary&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, it is possible you have problems with TexLive and  need to install  new TexLive version.&lt;br /&gt;
&lt;br /&gt;
Download TexLive 2011 image:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://ftp.oleane.net/pub/CTAN/systems/texlive/Images/texlive2011.iso&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mount the .iso image as root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mount -o loop -t iso9660 texlive2011.iso /media/cdrom&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install TexLive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
./install-tl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Choose the following options:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Options -&amp;gt; Create SymLinks -&amp;gt; [Chose Standar Dirs]&lt;br /&gt;
Install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Compilation works, but not pictures shown &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Get last pgf package:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://downloads.sourceforge.net/project/pgf/pgf/version%202.10/ \&lt;br /&gt;
  pgf_2.10.tds.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpgf%2F&amp;amp;ts= \&lt;br /&gt;
  1338847489&amp;amp;use_mirror=netcologne&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip the downloaded file.&lt;br /&gt;
Substitute the old pgp package by the new downloaded one:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mv tex/generic/pgf/* /usr/share/texmf/tex/generic/pgf/*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Execute as superuser:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
texhash&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; DVI problems &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
dvipdfm does not completelly supports tikz options.&lt;br /&gt;
Modify it by dvipdfmx&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt; Bibtex &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bibliography style for the different elements to cite inside the document.&lt;br /&gt;
ALIAS is referred to the name of the bibtex element that you are going to cite it. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Article &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@ARTICLE{ALIAS,&lt;br /&gt;
 author  = {{AUTHOR}},&lt;br /&gt;
 title   = {{TITLE}},&lt;br /&gt;
 journal = {{JOURNAL}},&lt;br /&gt;
 volume  = {{VOLUME}},&lt;br /&gt;
 number  = {{NUMBER}},&lt;br /&gt;
 pages   = {{PAGES}},&lt;br /&gt;
 year    = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Collection of books &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@INCOLLECTION{ExIncollec01,&lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 booktitle = {{BOOKTITLE}},&lt;br /&gt;
 editor    = {{EDITOR}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 pages     = {{PAGES}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Conference proceedings &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@INPROCEEDINGS{ExInpro01, &lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 booktitle = {{BOOKTITLE}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 pages     = {{PAGES}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Technical Report &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@TECHREPORT{ALIAS,&lt;br /&gt;
 author      = {{AUTHOR}},&lt;br /&gt;
 title 	     = {{TITLE}},&lt;br /&gt;
 institution = {{INSTITUTION}},&lt;br /&gt;
 number      = {{NUMBER}},&lt;br /&gt;
 year        = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Books &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@BOOK{ALIAS,      &lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; PHD Thesis &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@PHDTHESIS{ALIAS,&lt;br /&gt;
 author = {{AUTHOR}},&lt;br /&gt;
 title  = {{TITLE}},&lt;br /&gt;
 school = {{SCHOOL}},	&lt;br /&gt;
 year   = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Web Links &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@MISC{ALIAS,&lt;br /&gt;
 author = {{AUTHOR}},&lt;br /&gt;
 title  = {{TITLE}},&lt;br /&gt;
 howpublished = {\url{LINK}},&lt;br /&gt;
 year   = {{YEAR}},&lt;br /&gt;
 note = {[Online; accessed DATE]}&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Matallanas</name></author>	</entry>

	<entry>
		<id>https://wiki.robolabo.etsit.upm.es/index.php?title=LaTeX&amp;diff=269</id>
		<title>LaTeX</title>
		<link rel="alternate" type="text/html" href="https://wiki.robolabo.etsit.upm.es/index.php?title=LaTeX&amp;diff=269"/>
				<updated>2016-05-20T12:00:53Z</updated>
		
		<summary type="html">&lt;p&gt;Matallanas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--__NOTOC__--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt; TikZ &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some problems have been reported when compiling  TikZ with TexLive 2009.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Compilation Problems &amp;lt;/h2&amp;gt;&lt;br /&gt;
Whether compiling you get: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
I can't  find file tikzlibrary&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then, it is possible you have problems with TexLive and  need to install  new TexLive version.&lt;br /&gt;
&lt;br /&gt;
Download TexLive 2011 image:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://ftp.oleane.net/pub/CTAN/systems/texlive/Images/texlive2011.iso&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Mount the .iso image as root:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mount -o loop -t iso9660 texlive2011.iso /media/cdrom&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install TexLive:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
./install-tl&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Choose the following options:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Options -&amp;gt; Create SymLinks -&amp;gt; [Chose Standar Dirs]&lt;br /&gt;
Install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Compilation works, but not pictures shown &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Get last pgf package:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
wget http://downloads.sourceforge.net/project/pgf/pgf/version%202.10/ \&lt;br /&gt;
  pgf_2.10.tds.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fpgf%2F&amp;amp;ts= \&lt;br /&gt;
  1338847489&amp;amp;use_mirror=netcologne&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unzip the downloaded file.&lt;br /&gt;
Substitute the old pgp package by the new downloaded one:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mv tex/generic/pgf/* /usr/share/texmf/tex/generic/pgf/*&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Execute as superuser:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
texhash&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; DVI problems &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
dvipdfm does not completelly supports tikz options.&lt;br /&gt;
Modify it by dvipdfmx&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h1&amp;gt; Bibtex &amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Bibliography style for the different elements to cite inside the document.&lt;br /&gt;
ALIAS is referred to the name of the bibtex element that you are going to cite it. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Article &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@ARTICLE{ALIAS,&lt;br /&gt;
 author  = {{AUTHOR}},&lt;br /&gt;
 title   = {{TITLE}},&lt;br /&gt;
 journal = {{JOURNAL}},&lt;br /&gt;
 volume  = {{VOLUME}},&lt;br /&gt;
 number  = {{NUMBER}},&lt;br /&gt;
 pages   = {{PAGES}},&lt;br /&gt;
 year    = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Collection of books &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@INCOLLECTION{ExIncollec01,&lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 booktitle = {{BOOKTITLE}},&lt;br /&gt;
 editor    = {{EDITOR}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 pages     = {{PAGES}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Conference proceedings &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@INPROCEEDINGS{ExInpro01, &lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 booktitle = {{BOOKTITLE}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 pages     = {{PAGES}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Technical Report &amp;lt;/h2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@TECHREPORT{ALIAS,&lt;br /&gt;
 author      = {{AUTHOR}},&lt;br /&gt;
 title 	     = {{TITLE}},&lt;br /&gt;
 institution = {{INSTITUTION}},&lt;br /&gt;
 number      = {{NUMBER}},&lt;br /&gt;
 year        = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; Books &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@BOOK{ALIAS,      &lt;br /&gt;
 author    = {{AUTHOR}},&lt;br /&gt;
 title 	   = {{TITLE}},&lt;br /&gt;
 publisher = {{PUBLISHER}},&lt;br /&gt;
 address   = {{ADRESS}},&lt;br /&gt;
 year      = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt; PHD Thesis &amp;lt;/h2&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
@PHDTHESIS{ALIAS,&lt;br /&gt;
 author = {{AUTHOR}},&lt;br /&gt;
 title  = {{TITLE}},&lt;br /&gt;
 school = {{SCHOOL}},	&lt;br /&gt;
 year   = {{YEAR}},&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Matallanas</name></author>	</entry>

	</feed>