]> rtime.felk.cvut.cz Git - modosist/iidtitlepage.git/blobdiff - README.md
Update documentation for Springer
[modosist/iidtitlepage.git] / README.md
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
+```