]> rtime.felk.cvut.cz Git - modosist/iidtitlepage.git/blob - README.html
Add missing url package
[modosist/iidtitlepage.git] / README.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <meta http-equiv="Content-Style-Type" content="text/css" />
6   <meta name="generator" content="pandoc" />
7   <title></title>
8   <style type="text/css">code{white-space: pre;}</style>
9   <style type="text/css">
10 div.sourceCode { overflow-x: auto; }
11 table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
12   margin: 0; padding: 0; vertical-align: baseline; border: none; }
13 table.sourceCode { width: 100%; line-height: 100%; }
14 td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
15 td.sourceCode { padding-left: 5px; }
16 code > span.kw { color: #007020; font-weight: bold; } /* Keyword */
17 code > span.dt { color: #902000; } /* DataType */
18 code > span.dv { color: #40a070; } /* DecVal */
19 code > span.bn { color: #40a070; } /* BaseN */
20 code > span.fl { color: #40a070; } /* Float */
21 code > span.ch { color: #4070a0; } /* Char */
22 code > span.st { color: #4070a0; } /* String */
23 code > span.co { color: #60a0b0; font-style: italic; } /* Comment */
24 code > span.ot { color: #007020; } /* Other */
25 code > span.al { color: #ff0000; font-weight: bold; } /* Alert */
26 code > span.fu { color: #06287e; } /* Function */
27 code > span.er { color: #ff0000; font-weight: bold; } /* Error */
28 code > span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
29 code > span.cn { color: #880000; } /* Constant */
30 code > span.sc { color: #4070a0; } /* SpecialChar */
31 code > span.vs { color: #4070a0; } /* VerbatimString */
32 code > span.ss { color: #bb6688; } /* SpecialString */
33 code > span.im { } /* Import */
34 code > span.va { color: #19177c; } /* Variable */
35 code > span.cf { color: #007020; font-weight: bold; } /* ControlFlow */
36 code > span.op { color: #666666; } /* Operator */
37 code > span.bu { } /* BuiltIn */
38 code > span.ex { } /* Extension */
39 code > span.pp { color: #bc7a00; } /* Preprocessor */
40 code > span.at { color: #7d9029; } /* Attribute */
41 code > span.do { color: #ba2121; font-style: italic; } /* Documentation */
42 code > span.an { color: #60a0b0; font-weight: bold; font-style: italic; } /* Annotation */
43 code > span.cv { color: #60a0b0; font-weight: bold; font-style: italic; } /* CommentVar */
44 code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Information */
45   </style>
46 </head>
47 <body>
48 <h1 id="documentation-for-iidtitlepage-package">Documentation for <code>iidtitlepage</code> package</h1>
49 <p>TODO: what is it</p>
50 <h2 id="package-usage">Package usage</h2>
51 <p>The process of adding the title page to your manuscript is following:</p>
52 <ol style="list-style-type: decimal">
53 <li>Create the PDF file of title page with all the information.</li>
54 <li>Include the title page into your manuscript.</li>
55 </ol>
56 <h3 id="creating-the-title-page-pdf">Creating the title page PDF</h3>
57 <p>First, either download the whole <code>iidtitlepage</code> project or clone its git. To change the information on the title page (such as name of the authors, title etc.), edit the file <code>title_page.tex</code> using your favorite editor and follow the LaTeX comments to include the necessary info. Build the title page PDF using <code>pdflatex</code> command.</p>
58 <h3 id="including-the-title-page-into-your-manuscript">Including the title page into your manuscript</h3>
59 <p>Copy the generated title page <code>title_page.pdf</code> to directory with your manuscript LaTeX project. Include a <code>pdfpages</code> package into your project</p>
60 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="bu">\usepackage</span>{<span class="ex">pdfpages</span>}</code></pre></div>
61 <p>The following action depends on the journal publisher.</p>
62 <h4 id="elsevier">Elsevier</h4>
63 <p>Locate <code>\begin{frontmatter}</code> command and replace it with the following</p>
64 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="kw">\begin</span>{<span class="ex">frontmatter</span>}
65 <span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}</code></pre></div>
66 <h4 id="ieee">IEEE</h4>
67 <p>Locate <code>\maketitle</code> command and replace it with the following</p>
68 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="fu">\null</span>
69 <span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}
70 <span class="fu">\maketitle</span></code></pre></div>
71 <h4 id="springer">Springer</h4>
72 <p>If your manuscript is two-column, then locate <code>\maketitle</code> command and replace it with the following</p>
73 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="fu">\null</span>
74 <span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}
75 <span class="fu">\maketitle</span></code></pre></div>
76 <p>For a single column manuscript, locate <code>\maketitle</code> command and replace it with the following</p>
77 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="fu">\pagenumbering</span>{gobble}
78 <span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}
79 <span class="fu">\pagenumbering</span>{arabic}
80 <span class="fu">\maketitle</span></code></pre></div>
81 </body>
82 </html>