我发现无法扩大由 AMSBOOK -documentclass 创建的文档。
本问题的底部是一个极简的 TeX 文件。您可能会发现文本很熟悉。
如果前两行是
\documentclass[a4paper]{amsbook} %\documentclass[a4paper]{book}
文档失败
如果前两行是
%\documentclass[a4paper]{amsbook} \documentclass[a4paper]{book}
LaTeX 运行顺利
我已尝试使用 \usepackage{geometry} -package 和 \usepackage{blowup} -package 以及 \mag -command 与 AMSBOOK,结果相同。
这两个包和 \mag -命令都可以与 BOOK -documentclass 以及我尝试过的其他 documentclass 配合良好。
需要什么才能使基于 AMSBOOK 的文档可扩展?
\documentclass[a4paper]{amsbook}
%\documentclass[a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{newtxtext}
%\usepackage{newcent}
%\usepackage{palatino}
\usepackage{mtpro2}
\usepackage{geometry}
\geometry{a4paper, mag=1095, height=22.3truecm, width=12.7cm,showframe=true,verbose=true}
%\geometry{a4paper, mag=1095}
%\usepackage{blowup}
%\blowUp{paper=x1.09545}
\begin{document}
\chapter{Meet the American Mathematical Society}
A professional society since 1888, we advance research and connect the diverse global mathematical community through publications,
meetings and conferences, MathSciNet, professional services, advocacy, and awareness programs.
\section{Supporting}
Some 30,000 individuals and 570 institutions worldwide make up the Society. AMS membership supports the mathematical sciences by providing
access to research, professional networking, conferences and events, advocacy, and a connection to a
community passionate about mathematics and its relationship to other disciplines and everyday life:
\end{document}
答案1
该示例可以简化为以下纯文本
\hsize=10truein
\mag=1095
zzz
\bye
这会产生同样的错误:
! Incompatible magnification (1095);
the previous value will be retained (1000).
\mag
使用true
尺寸后,您无法更改。如果您\mag
提前设置,则运行不会出错:
\mag1095
\documentclass[a4paper]{amsbook}
%\documentclass[a4paper]{book}
\usepackage[utf8]{inputenc}
\usepackage{newtxtext}
%\usepackage{newcent}
%\usepackage{palatino}
%\usepackage{mtpro2}
\usepackage{geometry}
\geometry{a4paper, , height=22.3truecm, width=12.7cm,showframe=true,verbose=true}
%\geometry{a4paper, mag=1095}
%\usepackage{blowup}
%\blowUp{paper=x1.09545}
\begin{document}
\chapter{Meet the American Mathematical Society}
A professional society since 1888, we advance research and connect the diverse global mathematical community through publications,
meetings and conferences, MathSciNet, professional services, advocacy, and awareness programs.
\section{Supporting}
Some 30,000 individuals and 570 institutions worldwide make up the Society. AMS membership supports the mathematical sciences by providing
access to research, professional networking, conferences and events, advocacy, and a connection to a
community passionate about mathematics and its relationship to other disciplines and everyday life:
\end{document}