Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I had to spend a lot of time on debugging issues with the Whedon bot in JuliaCon/proceedings-review#109, until I noticed that apparently the remaining culprit was the acknowledgement environment defined in
juliacon.cls
that I had used. So I replaced it with a simpler definition that does not involve the sans-serif font family and could finally compile the submission successfully (which, IMO, consists of a simple LaTeX file with a small number of packages).During my online debugging session, I also made some other changes which I included in this PR as well. Maybe they are useful more generally, otherwise I'll split or reduce the PR.
To summarize:
latexmk
can be dropped if the options are added to the.latexmkrc
config filelatexsym
is removed as it should not be used in LaTeX2e documents (https://tex.stackexchange.com/questions/495254/latexsym-and-url-with-tikzposter-warning-about-size#comment1250328_495254)RequirePackage
injuliacon.cls
as it seems to be the convention in class files (https://www.mail-archive.com/[email protected]/msg77845.html)times
package (https://www.ctan.org/pkg/times) withmathptmx
: To obtain the same font style and in particular to not change the math font, the roman font is set with\renewcommand{\rmdefault}{ptm}
instead ofusepackage{mathptmx}
(explained in the package documentation, section 9.1: https://ftp.acc.umu.se/mirror/CTAN/macros/latex/required/psnfss/psnfss2e.pdf)acks
environment is simplified and made whedon-compatible