在导入的子文件中定义命令

在导入的子文件中定义命令

我正在使用该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文件中Section1Section2定义了一个新命令

\newcommand{\br}{\mathbb{R}}

独立编译都需要这两个命令,但是当我尝试编译时main.tex会产生错误。Command \br already defined.对我来说,包含新命令的最佳方法是什么,以便一切都正确编译?

相关内容