如何将多个考试包 TeX 文件输入到主 TeX 文件中?

如何将多个考试包 TeX 文件输入到主 TeX 文件中?

我可能需要一些帮助,关于如何将许多 TeX 文档输入到一个大的 TeX 文档中。

我为学生创建了许多文件夹作为作业。如下所示:

每个文件夹中都有一个包含问题和解决方案的 TeX 文档。但 TeX 文档的类型是考试包

我想使用主 TeX 读取文件夹中的所有 TeX 文档,以便为学生编写练习册。

我不知道该怎么做。我尝试了 Overleaf 模板中的一些解决方案。但是没有用。有人能帮我提供主 tex 的 TeX 代码来读取每个文件夹中的每个 TeX 文档吗?

文件夹中的所有 TeX 文件如下所示:

\documentclass[11pt, addpoints]{exam}
\usepackage{graphicx}
\usepackage{esvect, tasks, xhfill}
\usepackage{amsmath,amsthm,amssymb,multicol,enumerate}

\usepackage[right=0.8in, left=0.5in, top=1in,bottom=1in]{geometry}
\renewcommand{\thepartno}{\alph{partno}}
\renewcommand\questionlabel{\thequestion.} %replace period with parenthesis
\renewcommand{\thequestion}{\bfseries\large\arabic{question}}
\footer{}{Page \thepage\ of \numpages\  }{}

\begin{document} 

\runningheader{}{\examnum\ - Page \thepage\ of \numpages}{\examdate}
\header{G11 1st term} {\quad \hspace*{2cm} \LARGE{\ct{{20221209 Homework}}}}{\Large\textbf{\# 23} } 
\runningheadrule
\vspace*{-0.5in}
\noindent\rule[0.25\baselineskip]{\textwidth}{1pt}
\vspace*{0.5em}
\noindent Chinese name: \underline{\hspace*{2.5cm}} English name:  \underline{\hspace*{2.5cm}}  Homeroom: \underline{\hspace*{1.5cm}}  Math Class: \underline{\hspace*{1.2cm}} 

\renewcommand{\thesubpart}{(\roman{subpart})}
\renewcommand{\subpartlabel}{\thesubpart} 

\begin{questions}

\question Let $f(x)= \begin{cases}x^2, & x>3 \\ 5, & x=3 \\ 3 x, & x<3\end{cases}$
\begin{parts}
    \part Sketch the graph of $y=f(x)$.
    \part Evaluate $\lim _{x \rightarrow 3^{-}} f(x)$ and $\lim _{x \rightarrow 3^{+}} f(x)$.
    \part Does $\lim _{x \rightarrow 3} f(x)$ exist? Explain your answer.
\end{parts}

\begin{solutionordottedlines}[1.5in]
    %\includegraphics[scale=0.6]{solutions1}
\end{solutionordottedlines}

\end{questions}
\end{document}

相关内容