Basic information:
I am writing a thesis using PdfLaTeX in TexMaker, based on a modified template provided by my university. The document is styled using a .cls file, and I am managing the bibliography with a .bib file, using Biber as the backend.
The .cls file has a \abstractpage command defined.
The command in the .cls file is defined as:
\newcommand{\abstractpage}[6]{ %definicja strony ze streszczeniami \setstretch{1.4} % od tego miejsca interlinia 1.5; pierwotnie ustawiono \onehalfspacing ale obecna wersja bardziej odpowiada wersji .doc \null \vfill \begin{center} \textbf{Streszczenie}\\ \end{center} \noindent \textbf{#1}\\[1.5ex] {#2} \\[4ex] S{\l}owa kluczowe -- {#3} \vfill \begin{center} \textbf{Summary}\\ \end{center} \noindent \textbf{#4}\\[1.5ex] \\[4ex] \vfill \pagestyle{empty} \newpage \null \pagestyle{empty} \newpage \pagestyle{plain} } and used in the .tex file as:
\abstractpage {title PL} {Some text} {tags} {title EN} {some text} {tags} Error: The problem I receive is that not the whole text provided in \abstractpage is compiled in the document. Specifically, the text and tags of the English summary are missing. The compiler does not output any error.
I expect it to look like this:
- During running a not modified version of the template, the error does not occur.
- I copy-pasted the whole command once again (from the default file) but it does not help.
- Using the \abstractpage command in a plain file does reproduce this error in my case.
- The whole .cls file can be found in the GitHub repository here.
I suspect, that the commands somehow conflict with each other or the syntax could be wrong somewhere, but I cannot detect in which place.


#5or#6so those two text arguments do not get used. what output did you expect?