다른 폴더의 tex 파일을 포함하는 방법은 무엇입니까?

다른 폴더의 tex 파일을 포함하는 방법은 무엇입니까?

여기서 수학 숙제 시트를 만드는 데 문제가 있습니다. 내가 한 일은 매일 수학 숙제를 위한 폴더를 하나씩 만드는 것이었습니다. 그리고 사진에서 볼 수 있듯이 하나의 큰 폴더 아래에는 정말 많은 폴더가 있습니다.

내 Mac의 수학 숙제 폴더

나는 매일의 모든 수학 숙제를 포함하는 하나의 수학 학습지를 만들기 위해 하나의 메인 텍스트를 만들고 싶습니다. 그런데 어떻게 해야 할지 모르겠어요? 누구든지 도와줄 수 있나요? 정말 고마워.

또한 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}

관련 정보