假设您有几个主题重叠的讲座。
分别管理每个主题并将它们合并为一个讲座的最佳方法是什么。
一个想法(我是新手)是创建只能输入的文件:
topic1/topic1.tex
:
\section{Topic1}
\begin{frame}
This is topic 1.
\end{frame}
topic2/topic2.tex
:
\section{Topic2}
\begin{frame}
This is topic 2.
\end{frame}
然后是如下文件Lecture1.tex
:
\documentclass{beamer}
\begin{document}
\begin{frame}
Welcome to lecture 1.
\end{frame}
\input{topic1/topic1.tex}
\input{topic2/topic2.tex}
\end{document}
这是最优雅的方式吗?或者 LaTeX 中还有其他技术可以做到这一点?