-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make fails due to file not found (relative path issues) #6
Comments
Thanks for the detailed description and the logs! I have made some comments in the PR, summarizing it here too:
Can you check if the relative import issues exists after fixing the above? |
We fixed the issues you mentioned but the problem persists. From the automatic build triggered by the commit on the PR, I read the following output, so I ruled out that it might be an issue of my local installation/configuration:
|
Solution for anyone encountering the same problem: any Closing the issue, thanks for your help! |
Referring to our code in PR #5.
When trying to run the command
make
from thejournal
folder, we get errors due to pdflatex not being able to find the included files. For example, the line\input{intro.tex}
in the fileopenreview/content.tex
will not work:The compiler cannot find the
intro.tex
file.However, if we modify the include statement as
\input{../openreview/content.tex}
it will work, and return an error to the next\input
statement whose path is not relative to thejournal
folder. This happens also for included images, so to fix it we would need to add../openreview
to all the figures and inputs.Here is the link to the full output of
make
.I opened the issue because to me this looks related to some issue in the makefiles and it might be helpful to others.
The text was updated successfully, but these errors were encountered: