我写了一篇 A4 格式(Springer Journal 格式)的论文,需要将其提交给 ArXiv。但是,ArXiv 出于某种原因弄乱了文件的边距。根据他们的常见问题解答,这可能是因为他们希望论文采用信纸格式而不是 A4 格式。我如何生成信准备以 A4 尺寸出版的论文的版本?
我使用的 Springer 模板指定:
\documentclass[twocolumn]{svjour3} % twocolumn
答案1
您可以进行的最少更改如下:
% first, include letterpaper option when specifying the document class:
\documentclass[twocolumn,letterpaper]{svjour3} % twocolumn
% and then, specify new margins with the geometry package:
\usepackage[left=3.4cm,right=3.4cm,bottom=3.5cm,top=3.4cm]{geometry}