12

With pdflatex, it is possible to create PDF files that are acceptable by arxiv even without sources (with hyperref + \pdfsuppressptexinfo=1, see Making an anonymous PDF file using PDFLaTeX).

However, I don't manage to create such a PDF using lualatex.

With LuaLaTeX, what is the equivalent of \pdfsuppressptexinfo=1?

CC BY-SA 3.0
3

2 Answers 2

9

The (extended) equivalent to \pdfsuppressptexinfo is \pdfvariable suppressoptionalinfo \numexpr number\relax see the luatex documentation. So something like this works:

\documentclass{article}

\usepackage{hyperref}
\hypersetup{
  pdfcreator = {},
  pdfproducer = {}
}
\pdfvariable suppressoptionalinfo \numexpr 1+2+4+8+16+32+64+128+256+512 \relax


\begin{document}
abc
\end{document}
CC BY-SA 3.0
2
8

Message them

Instead of working against the system, work with it. You have a valid submission but due to technical reasons, the system ("their") fails to succesfully submit it. That's it.

LuaLatex (and friends) is not less valid than Word, LibreOffice etc. to produce a PDF.

I submitted as PDF, failed, wrote them, they flagged the submission as "non-LaTex", done. Therefore, my LaTex PDF "became" acceptable by arxiv.

Additional bonus: they learn about this and may rather accomodate LuaLatex (& friends) in the future; knowing that a feature is needed is a large motivation for devs ;)

CC BY-SA 4.0

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.