Ignore:
Timestamp:
Aug 16, 2022, 2:52:24 PM (3 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, master, pthread-emulation
Children:
71cf630
Parents:
32d1383 (diff), e116db3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/thierry_delisle_PhD/thesis/thesis.tex

    r32d1383 r17c6edeb  
    247247\input{text/eval_macro.tex}
    248248\part{Conclusion \& Annexes}
     249\input{text/conclusion.tex}
     250
    249251
    250252%----------------------------------------------------------------------
     
    280282% Appendices
    281283
    282 % The \appendix statement indicates the beginning of the appendices.
    283 \appendix
    284 % Add an un-numbered title page before the appendices and a line in the Table of Contents
    285 \chapter*{APPENDICES}
    286 \addcontentsline{toc}{chapter}{APPENDICES}
    287 % Appendices are just more chapters, with different labeling (letters instead of numbers).
    288 %======================================================================
    289 \chapter[PDF Plots From Matlab]{Matlab Code for Making a PDF Plot}
    290 \label{AppendixA}
    291 % Tip 4: Example of how to get a shorter chapter title for the Table of Contents
    292 %======================================================================
    293 \section{Using the GUI}
    294 Properties of Matab plots can be adjusted from the plot window via a graphical interface. Under the Desktop menu in the Figure window, select the Property Editor. You may also want to check the Plot Browser and Figure Palette for more tools. To adjust properties of the axes, look under the Edit menu and select Axes Properties.
    295 
    296 To set the figure size and to save as PDF or other file formats, click the Export Setup button in the figure Property Editor.
    297 
    298 \section{From the Command Line}
    299 All figure properties can also be manipulated from the command line. Here's an example:
    300 \begin{verbatim}
    301 x=[0:0.1:pi];
    302 hold on % Plot multiple traces on one figure
    303 plot(x,sin(x))
    304 plot(x,cos(x),'--r')
    305 plot(x,tan(x),'.-g')
    306 title('Some Trig Functions Over 0 to \pi') % Note LaTeX markup!
    307 legend('{\it sin}(x)','{\it cos}(x)','{\it tan}(x)')
    308 hold off
    309 set(gca,'Ylim',[-3 3]) % Adjust Y limits of "current axes"
    310 set(gcf,'Units','inches') % Set figure size units of "current figure"
    311 set(gcf,'Position',[0,0,6,4]) % Set figure width (6 in.) and height (4 in.)
    312 cd n:\thesis\plots % Select where to save
    313 print -dpdf plot.pdf % Save as PDF
    314 \end{verbatim}
     284% % The \appendix statement indicates the beginning of the appendices.
     285% \appendix
     286% % Add an un-numbered title page before the appendices and a line in the Table of Contents
     287% \chapter*{APPENDICES}
     288% \addcontentsline{toc}{chapter}{APPENDICES}
     289% % Appendices are just more chapters, with different labeling (letters instead of numbers).
     290% %======================================================================
     291% \chapter[PDF Plots From Matlab]{Matlab Code for Making a PDF Plot}
     292% \label{AppendixA}
     293% % Tip 4: Example of how to get a shorter chapter title for the Table of Contents
     294% %======================================================================
     295% \section{Using the GUI}
     296% Properties of Matab plots can be adjusted from the plot window via a graphical interface. Under the Desktop menu in the Figure window, select the Property Editor. You may also want to check the Plot Browser and Figure Palette for more tools. To adjust properties of the axes, look under the Edit menu and select Axes Properties.
     297
     298% To set the figure size and to save as PDF or other file formats, click the Export Setup button in the figure Property Editor.
     299
     300% \section{From the Command Line}
     301% All figure properties can also be manipulated from the command line. Here's an example:
     302% \begin{verbatim}
     303% x=[0:0.1:pi];
     304% hold on % Plot multiple traces on one figure
     305% plot(x,sin(x))
     306% plot(x,cos(x),'--r')
     307% plot(x,tan(x),'.-g')
     308% title('Some Trig Functions Over 0 to \pi') % Note LaTeX markup!
     309% legend('{\it sin}(x)','{\it cos}(x)','{\it tan}(x)')
     310% hold off
     311% set(gca,'Ylim',[-3 3]) % Adjust Y limits of "current axes"
     312% set(gcf,'Units','inches') % Set figure size units of "current figure"
     313% set(gcf,'Position',[0,0,6,4]) % Set figure width (6 in.) and height (4 in.)
     314% cd n:\thesis\plots % Select where to save
     315% print -dpdf plot.pdf % Save as PDF
     316% \end{verbatim}
    315317
    316318% GLOSSARIES (Lists of definitions, abbreviations, symbols, etc. provided by the glossaries-extra package)
Note: See TracChangeset for help on using the changeset viewer.