= Matlab2tikz = {{{#!wiki caution '''Under Construction''' This warning will be removed once the page is complete enough to make sense. }}} === What is Matlab2tikz === Matlab2tikz is a set of m-files, which generate tikz-format vector graphics from Matlab figures. The tikz format is easy to import into LaTex documents, and allows for user modifications once created. You will obtain beautiful vector graphics output from LaTex where all fonts and styles in plots are coherent and you will never again have to use psfrag. === How do I get started - a minimal example === If you are using one of the computers at the department, it should be automatically available. Otherwise, download the files from https://github.com/nschloe/matlab2tikz and place them somewhere so they end up on your Matlab path. Here is a minimal example, which you may try in Matlab: {{{ figure;plot(dftmtx(5));matlab2tikz }}} You will be presented a save dialouge. Select a file name of your choice, ending in {{{.tex}}} (in our example {{{myfig.tikz}}}). Once saved, you may open and edit the tex file, but first, let's use it in a LaTeX document. In this guide we will assume the use of {{{pdflatex}}} to compile LaTex documents. If you use something else, parts of the tutorial might not apply. Create a tex file with the following contents (name it e.g. {{{mydoc.tex}}}). {{{ \documentclass{pm} \usepackage{tikz,pgfplots} \begin{document} \input{myfig.tikz} \end{document} }}} Run {{{pdflatex}}}. If everything is correctly set up, you will obtain a file {{{mydoc.pdf}}}. Open it and have a look. The alignment might be strange, but we can notice that the font of the tic marks is that of the LaTex document, rather than that used in Matlab. Now that we have basic functionality, let's first work on getting the picture pretty, then on how to use it in the LaTex document. === Pretty Plots === This section contains one example of how to make a pretty plot. Much more can be learnt by reading the PGF/Tikz manual (which is very well written but several 100 pages long.) ==== Automating Generation and Sizing ==== First, create an m-file with name of your choice containing the following: {{{ plot(dftmtx(5)); % same as previous example box off % we need this later % save the picture programatically matlab2tikz('myfig2.tikz','height','\pgfigheight','width','\pgfigwidth') }}} When run, the above m-file will generate the file {{{myfig2.tikz}}}. Note that you can call matlab2tikz multiple time in the same m-file. It will always work in the active figure. If you open {{{myfig.tikz}}} in an editor and compare it to {{{myfig.tikz}}}, you will see that the {{{width}}} and {{{height}}} specifications have changed from fixed numbers into {{{\pgfigwidth}}} and {{{\pgfigheight}}}, respectively. These can now be set in your LaTex document, to change the dimensions of the important graphic. Modify {{{mydoc.tex}}}: {{{ \documentclass{pm} \usepackage{tikz,pgfplots} \newlength{\pgfigheight} \newlength{\pgfigwidth} \begin{document} \setlength{\pgfigheight}{5cm} \setlength{\pgfigwidth}{.8\linewidth} \input{myfig.tikz} \end{document} }}} Try it out. Alignment is still not pretty, but the dimensions of the figure are now easy to set. (You can change {{{\pgwidth}}} and {{{\pgheight}}} throughout the document, to import graphics of different dimensions.) ==== Axis and Labels ==== Now create a file called e.g. {{{tikzdefs.tex}}}: {{{ \pgfplotsset{compat=1.3, every axis/.append style={thin}, tick style={black,thin}, major tick length={3pt}, tick align={inside}, /pgf/number format/1000 sep={}, every axis x line/.style={bottom}, every axis y line/.style={left}, every outer x axis line/.append style={-narrow}, every outer y axis line/.append style={-narrow}, every outer z axis line/.append style={-narrow}, every axis x label/.append style={at={(1,0)},anchor=north east,yshift=-2pt}, every axis y label/.append style={at={(0,1)}, anchor=north east,rotate=-90,xshift=-2pt}, every 3d description/.append style={ every axis x label/.style={at={(ticklabel cs:1.0)},anchor=north east}, every axis y label/.style={at={(ticklabel cs:1.0)},anchor=north west}, every axis z label/.style={at={(ticklabel cs:1.0)},anchor=south east}, every outer y axis line/.append style={-} } } }}}