[in this chapter of org-mode manual][1], there is a tutorial on how to export a latex file with some features of verse package, such as line-counting and centralization. The example given is a poem by Shakespeare:
#+ATTR_LATEX: :center t :latexcode \color{red} :lines 5
#+ATTR_LATEX: :versewidth Feed’st thy light’s flame with self-substantial fuel,
#+BEGIN_VERSE
From fairest creatures we desire increase,
That thereby beauty’s rose might never die,
But as the riper should by time decease
His tender heir might bear his memory
But thou, contracted to thine own bright eyes,
Feed’st thy light’s flame with self-substantial fuel,
Making a famine where abundance lies,
Thyself thy foe, to thy sweet self too cruel.
Thou that art now the world’s fresh ornament,
And only herald to the gaudy spring,
Within thine own bud buriest thy content,
And, tender churl, mak’st waste in niggardly.
Pity the world, or else this glutton be,
To eat the world’s due, by the grave and thee.
#+END_VERSE
This, however, doesn't work when I try it. I of course added #+LATEX_HEADER: \usepackage{verse} before it, but still... doesn't work. I also tried #+LATEX_HEADER: \usepackage{verse.sty} instead, but then it displays: file [...] wasn't produced "See "Org PDF LaTEx Output" for details".
Debugging comments:
Check the .tex file and make sure there is a
\usepackage{verse}line in the preamble. Check the rest of the file too and see if it makes sense: in particular, does it include\begin{verse}...\end{verse}and the\poemlines{5} \color{red}macro calls? – NickD
So,
\usepackage{verse}is there, as well as\begin{verse}...\end{verse}. But\poemlines{5} \color{red}is absent. I'm uninstalling MikTex and installing Texlive to see if this is the problem. - OP
It's Org mode that produces the TeX file, so if something is missing in the TeX file, then Org mode is the culprit. The TeX processor takes the TeX file produces by Org mode as input, so it can not be held responsible. – NickD
Is line 34
\newcommand{\getmodulo@vs}{\bgroup- OP
In any case I edited
\newcommand{\getmodulo@vs}{\bgroupand still Emacs displays "PDF file produced with errors" and no line numbers etc. are seen. I asked a friend of mine to try the code and the same happens: error and no line numbers / etc. – OP
No, it was
\newcommand*{\theHpoemline}{\arabic{verse@envctr}.\arabic{poemline}}. In my version, the\getmodulo@vsdefinition is line 56. – NickD
So, it is not compiling with errors anymore; but still, no numbers or centering etc. I checked the tex file produced and there's no
\poemlinesor anything. Only\begin{verse}- OP
You need to debug the Org mode LaTeX exporter then: what version of Org mode are you using? Also check that there is no empty line between the
#+ATTRlines and the#+BEGIN_VERSE– NickD [1]: https://orgmode.org/manual/Verse-blocks-in-LaTeX-export.html