我想使用独立类创建一个文档,其中一些页面采用常规 A4 纵向格式。
其他的应该大致像这样:
\documentclass[preview,border={10cm 4cm 10cm 4cm}]{standalone}
但是,下面的例子不起作用。
掌握
\documentclass[12pt]{article}
\usepackage[subpreambles=true]{standalone}
\usepackage{amsmath,tikz-cd}
\begin{document}
\section{First section}
\input{introduction}
\end{document}
子文件
\documentclass[preview,border={5cm 4cm 15cm 4cm}]{standalone}
%\usepackage[subpreambles=true]{standalone} % causes problems
\usepackage{amsmath,tikz-cd}
\begin{document}
\[\begin{tikzcd}
{\boxed{\| \partial_t g^{jk} + 2 \omega g^{jk} \|_{H^N} \leq C e^{-(2+q)\Omega} S_{g;N}}} \\
\\
{\boxed{\| \partial_t g^{jk} + 2 \omega g^{jk} \|_{L^{\infty}} \leq C e^{-(2+q)\Omega} S_{g;N}}}
\arrow["{\text{Sobolev embedding}}", from=1-1, to=3-1]
\end{tikzcd}\]
\end{document}