X-Git-Url: http://rtime.felk.cvut.cz/gitweb/modosist/iidtitlepage.git/blobdiff_plain/df206dd035fcb45ccf20ade40c6f9df63ba1aaaf..bb054809cfa620d031ffc1bfea20c1c07895881f:/README.md diff --git a/README.md b/README.md index f9b11ae..b702edc 100644 --- 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 +```