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/29 13:07] 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 called " | + | |
- | '' | + | ===== Using Latex on Polyps ===== |
- | '' | + | There is a latex style file called " |
- | \ifthenelse{\coralreport = 1}{\\ | + | |
- | This part will be active if coralreport variable is 1.\\ | + | |
- | }\\ | + | ==== Using the Latex Package ==== |
- | {\\ | + | |
- | This part is active if coralreport variable is not 1.\\ | + | Technical report package can be used with '' |
+ | |||
+ | < | ||
+ | \ifthenelse{\coralreport = 1}{ | ||
+ | This part will be active if coralreport variable is 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. |
- | }\\ | + | } |
{} | {} | ||
- | '' | + | </ |
- | See [[info:tech_report_example|this]] for an example. | + | 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 [[tech_report_example.tex]] for an example. | ||
In the example output is controlled by '' | In the example output is controlled by '' | ||
- | In line 5 of the example we add the '' | + | In line 5 of the example we add the required |
- | At line 37-54 We add the title page information. Latex will use this information if '' | + | At line 37-54 we add isetechreport package using '' |
There are three more variables defined in lines 50-52. This variables determine the type of the technical report. There are three types of technical reports, coral, cvcr and ise. Example shows the case where we want an ISE technical report. If you want a different type you should edit this section (ex, for a coral report /coraltrue /cvcrfalse /isefalse). | There are three more variables defined in lines 50-52. This variables determine the type of the technical report. There are three types of technical reports, coral, cvcr and ise. Example shows the case where we want an ISE technical report. If you want a different type you should edit this section (ex, for a coral report /coraltrue /cvcrfalse /isefalse). | ||
- | Note that | + | In lines 60-70 we specify the authors. This example illustrates the case where different format of authors is used for journal and tech report. Again '' |
+ | In lines 85-89 '' | ||
Line 45: | 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 |