]> rtime.felk.cvut.cz Git - modosist/iidtitlepage.git/commitdiff
Update documentation for Springer
authorIstvan Modos <istvan.modos@cvut.cz>
Thu, 8 Feb 2018 11:15:11 +0000 (12:15 +0100)
committerIstvan Modos <istvan.modos@cvut.cz>
Thu, 8 Feb 2018 11:15:11 +0000 (12:15 +0100)
README.html
README.md

index aafa360ca8ea2685b02603413e15716e9ffc65f9..f4bd158ca1e0b26d9a3bf1863ac99515392bf761 100644 (file)
@@ -63,10 +63,20 @@ code > span.in { color: #60a0b0; font-weight: bold; font-style: italic; } /* Inf
 <p>Locate <code>\begin{frontmatter}</code> command and replace it with the following</p>
 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="kw">\begin</span>{<span class="ex">frontmatter</span>}
 <span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}</code></pre></div>
-<h4 id="ieee-and-springer">IEEE and Springer</h4>
+<h4 id="ieee">IEEE</h4>
 <p>Locate <code>\maketitle</code> command and replace it with the following</p>
 <div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="fu">\null</span>
 <span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}
 <span class="fu">\maketitle</span></code></pre></div>
+<h4 id="springer">Springer</h4>
+<p>If your manuscript is two-column, then locate <code>\maketitle</code> command and replace it with the following</p>
+<div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="fu">\null</span>
+<span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}
+<span class="fu">\maketitle</span></code></pre></div>
+<p>For a single column manuscript, locate <code>\maketitle</code> command and replace it with the following</p>
+<div class="sourceCode"><pre class="sourceCode latex"><code class="sourceCode latex"><span class="fu">\pagenumbering</span>{gobble}
+<span class="fu">\includepdf</span>[pages=1,fitpaper,noautoscale]{title_page.pdf}
+<span class="fu">\pagenumbering</span>{arabic}
+<span class="fu">\maketitle</span></code></pre></div>
 </body>
 </html>
index f9b11aee064c9764629eea9a1a88a29d38eb737c..b702edc397fb39b596780aa384f9057fe440bc95 100644 (file)
--- a/README.md
+++ b/README.md
@@ -28,10 +28,25 @@ Locate `\begin{frontmatter}` command and replace it with the following
 \includepdf[pages=1,fitpaper,noautoscale]{title_page.pdf}
 ```
 
-#### IEEE and Springer
+#### IEEE
 Locate `\maketitle` command and replace it with the following
 ```latex
 \null
 \includepdf[pages=1,fitpaper,noautoscale]{title_page.pdf}
 \maketitle
-```
\ No newline at end of file
+```
+#### Springer
+If your manuscript is two-column, then locate `\maketitle` command and replace it with the following
+```latex
+\null
+\includepdf[pages=1,fitpaper,noautoscale]{title_page.pdf}
+\maketitle
+```
+
+For a single column manuscript, locate `\maketitle` command and replace it with the following
+```latex
+\pagenumbering{gobble}
+\includepdf[pages=1,fitpaper,noautoscale]{title_page.pdf}
+\pagenumbering{arabic}
+\maketitle
+```