異なるフォルダーから tex ファイルを含めるにはどうすればよいでしょうか?

異なるフォルダーから tex ファイルを含めるにはどうすればよいでしょうか?

ここで数学の宿題シートを作成するのに問題があります。私がやったことは、毎日の数学の宿題用に 1 つのフォルダーを作成することでした。そして、画像からわかるように、1 つの大きなフォルダーの下に非常に多くのフォルダーがあります。

私のMacの数学の宿題フォルダ

毎日の数学の宿題をすべて含む単一の数学ワークシートを作成するために、1 つのメイン テキストを作成したいと考えています。しかし、その方法がわかりません。どなたか助けていただけませんか。どうもありがとうございます。

また、probsoln パッケージの使用に関するビデオも探しているのですが、どなたかリソースを共有していただけますか?

あなたの助けに感謝。

よろしくお願いします

ジョニー

以下は最小限の作業例です。

main.texでは、

\documentclass{article}

\usepackage{graphicx}

\begin{document}

    \input{SL Homework 28-March 27/2020327 SL Homework 28.tex}

\end{document}

しかし、それはうまくいきませんでした。

毎日の宿題の一つに、私は次のものを使いました:

\documentclass[11pt, addpoints]{exam}
\usepackage{amsmath,amsthm,amssymb, algorithm, algpseudocode, multicol,epstopdf,tikz}

\usepackage[right=0.6in, left=0.6in, top=1in,bottom=1.2in]{geometry}


\begin{document} 
    \begin{questions}
        \question  The length of time, in seconds, that it takes to transfer a photograph from a camera to a computer can be modelled by a normal distribution with mean 4.7 and variance $0.7225 .$ Find the probability that a photograph can be transferred in less than 3 seconds.
        \begin{solutionordottedlines}[1.5in]
            $0.0228.$
        \end{solutionordottedlines}

        \question  Crates of tea should contain $200 \mathrm{kg}$, but it is known that 1 out of 45 crates, on average, is underweight.
        A sample of 630 crates is selected at random.
        \begin{enumerate}[(a)]
            \item  Find the probability that more than 12 but fewer than 17 crates are underweight.
            \item Given that more than 12 but fewer than 17 crates are underweight, find the probability that more than 14 crates are underweight.
        \end{enumerate}
        \begin{solutionordottedlines}[1.5in]
            $(a)\ 0.408,\quad (b)\ 0.483.$
        \end{solutionordottedlines}

    \end{questions}


\end{document}

関連情報