我正在使用该standalone
包创建一个文档。主要文档是
\documentclass{article}
\usepackage[subpreambles=true]{standalone}
\usepackage{import}
\begin{document}
\section{Section 1}
\import{Sections/}{Section1}
\section{Section 2}
\import{Sections/}{Section2}
\end{document}
现在在.tex
文件中Section1
我Section2
定义了一个新命令
\newcommand{\br}{\mathbb{R}}
独立编译都需要这两个命令,但是当我尝试编译时main.tex
会产生错误。Command \br already defined.
对我来说,包含新命令的最佳方法是什么,以便一切都正确编译?