This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
info:ise_tech_report [2015/03/30 16:03] aykutbulut |
info:ise_tech_report [2024/03/13 12:19] (current) mjm519 |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Creating ISE, COR@L and CVCR Technical Reports | + | ====== Creating ISE, COR@L and CVCR Technical Reports ====== |
- | ===== Using Latex ===== | + | [[https:// |
- | There is a latex document format | + | ===== Using Latex on Polyps ===== |
+ | |||
+ | There is a latex style file called " | ||
- | ==== Installing Technical Report Latex Package ==== | ||
==== Using the Latex Package ==== | ==== Using the Latex Package ==== | ||
Line 11: | Line 12: | ||
Technical report package can be used with '' | Technical report package can be used with '' | ||
- | '' | + | < |
- | \ifthenelse{\coralreport = 1}{\\ | + | \ifthenelse{\coralreport = 1}{ |
- | This part will be active if coralreport variable is 1.\\ | + | This part will be active if coralreport variable is 1. |
- | }\\ | + | |
- | {\\ | + | |
- | This part is active if coralreport variable is not 1.\\ | + | |
} | } | ||
- | '' | + | { |
+ | This part is active if coralreport variable is not 1. | ||
+ | } | ||
+ | </ | ||
If no action is required then you can skip the content. The following shows the case where no action is required when '' | If no action is required then you can skip the content. The following shows the case where no action is required when '' | ||
- | '' | + | < |
- | \ifthenelse{\coralreport = 1}{\\ | + | \ifthenelse{\coralreport = 1}{ |
- | This part will be active if coralreport variable is 1.\\ | + | This part will be active if coralreport variable is 1. |
- | }\\ | + | } |
{} | {} | ||
- | '' | + | </ |
+ | |||
+ | An '' | ||
+ | < | ||
+ | \newif\iflegacy | ||
+ | ... | ||
+ | \legacyfalse | ||
+ | |||
+ | ... | ||
+ | |||
+ | \begin{center} | ||
+ | \iflegacy | ||
+ | \includegraphics[height=0.8in]{ise.eps}\\ | ||
+ | | ||
+ | \includegraphics[scale=0.35]{header-ISE.jpg} \\ | ||
+ | \fi | ||
+ | |||
+ | </ | ||
+ | |||
+ | This section was tested using [[https:// | ||
- | See [[http:// | + | See [[tech_report_example.tex]] for an example. |
In the example output is controlled by '' | In the example output is controlled by '' | ||
Line 50: | Line 70: | ||
All necessary scripts for this process are located on / | All necessary scripts for this process are located on / | ||
+ | |||
+ | |||
+ | ===== Using Texworks/ | ||
+ | |||
+ | If you wish you can clone the isetechincalreport package from the git repo on coral with | ||
+ | < | ||
+ | and move it to a folder within access of your Texworks or other Latex distribution. Then, simply add | ||
+ | |||
+ | <code tex> | ||
+ | \usepackage{isetechreport} | ||
+ | % Report year and no | ||
+ | \def\reportyear{16T} | ||
+ | \def\reportno{005} | ||
+ | %% This is the revision number (increment for each revision) | ||
+ | \def\revisionno{0} | ||
+ | %% This is the date f the original report | ||
+ | \def\originaldate{May 30, 2016} | ||
+ | %% This is the date of the latest revision | ||
+ | \def\revisiondate{May 30, 2016} | ||
+ | %% Set these variables according to whether this should be a CORAL or CVCR | ||
+ | %% report | ||
+ | \coralfalse | ||
+ | \cvcrfalse | ||
+ | \isetrue | ||
+ | </ | ||
+ | to your preamble. To generate a cover page, you need to call | ||
+ | <code tex> | ||
+ | \titlepage | ||
+ | </ | ||
+ | before your '' | ||
+ | |||
+ | ===== Troubleshooting ===== | ||
+ | |||
+ | ==== Problems with tabular environment ==== | ||
+ | If you have any kind of error that has to do with the tabular environment, | ||
+ | |||
+ | ===== Installing Technical Report Latex Package ===== | ||
+ | |||
+ | FIXME |