GeneralDocument Printed an Extra 9,940 Pages

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ceramicquasar
Posts: 1
Joined: Mon Sep 11, 2023 2:32 pm

Document Printed an Extra 9,940 Pages

Post by ceramicquasar »

Code: Select all

  TeX capacity exceeded, sorry [input stack size=10000].
    <to be read again> 
I have a book class document that has added thousands of extra pages. I have scoured the log files, but I cannot find the issue. It seems that the problem is not in the main.tex file, because when I `\include` certain files, they compile without issue. So, I think the issue is in some of the files I want to include. However, I have not been able to ascertain exactly what is causing the issue. Each of the files I want to include have the same layout, but there is obviously something amiss. I have attempted commenting out sections, but I have not had luck. Below is an excerpt of the errors.

Code: Select all

 Underfull \vbox (badness 7186) has occurred while \output is active [81] [82]) [83] [84] [85] [86] [87] [88] [89] [90] [91] [92] [93] [94] [95] [96] [97] [98] [99] [100] [101] [102] [103] [104] [105] [106] [107] [108] [109] [110] [111] [112] [113] [114] [115] [116] [117] [118] [119] [120] [121] [122] [123] [124] [125] [126] [127] [128] [129] [130] [131] [132] [133] [134] [135] [136] [137] [138] [139] [140] [141] [142] [143] [144] [145] [146] [147] [148] [149] [150] [151] [152] [153] [154] [155] [156] [157] [158] [159] [160] [161] [162] [163] [164] [165] [166] [167] [168] [169] [170] [171] [172] [173] [174] [175] [176] [177] [178] [179] [180] [181] [182] [183] [184] [185] [186]
**This continues until pg. 10,042.**


This is the content of the main.tex file, if it is would be helpful. However, as I mentioned, this works flawlessly on certain files and not others.

Code: Select all

   \documentclass[12pt]{book}
    \usepackage[paperwidth=6in, paperheight=9in, margin=1in]{geometry}
    
    \usepackage{dblfnote}
    \usepackage{lettrine}
    \usepackage[para]{footmisc}
    \usepackage{ragged2e}
    \usepackage{fontspec}
    \usepackage{ifthen}
    \usepackage{polyglossia}
    \usepackage{fancyhdr}
    \usepackage{extramarks}
    
    \setmainlanguage{syriac}
    \setmainfont[BoldFont={DejaVu Serif Bold}]{Serto Antioch Bible}
    
    % Make Counters for Chapters and Verses
    \newcommand{\currbook}{}
    \newcounter{mychapter}
    \newcounter{bibver}
    \setcounter{mychapter}{0}
    \setcounter{bibver}{0}
    
    % Make Bible Chapter and Verses
    \newcommand{\mychaptermark}{}
    \newcommand{\bibvermark}{}
    
    \newcommand{\mychapter}[1]{%
      \stepcounter{mychapter}% Increment the mychapter counter
      \renewcommand{\mychaptermark}{#1}%
      %\chaptermark{#1 : \bibvermark}% Include the verse number in the chaptermark
      \markboth{#1}{#1}
      {\centering{#1}}% Center the chapter title
    }
    
    \newcommand{\bibver}[1]{%
      \stepcounter{bibver}% Increment the bibver counter
      \extramarks{#1}{#1}% Set both left and right marks to #1
      \textsuperscript{\textbf{#1 }}~%
    }
    
    
    % Make Book Title in English and Syriac
    \newcommand{\englishtitle}[1]{\centering\LR{#1}}
    \newcommand{\syriactitle}[1]{\centering{#1}}
    
    % Footnotes
    
    \let\oldfootnote\footnote
    \renewcommand{\footnote}[1]{\oldfootnote{~#1}}
    
    \newcommand{\mymarks}{%
    \ifthenelse{\equal{\leftmark}{\rightmark}}
    {\leftmark} % if equal
    {\leftmark--\rightmark}} % if not equal 
    
    % Set the headheight and potentially adjust topmargin
    \setlength{\headheight}{14.5pt} % Adjust this value as needed
    \addtolength{\topmargin}{-2.5pt} % Adjust this value as needed
    
    % Customize header using fancyhdr
    \pagestyle{fancy}
    \fancyhead{} % Clear previous header settings
    \fancyhead[CO]{\englishtitle}
    \fancyhead[CE]{ܐܓܪܬܐ ܕܝܘܚܢܢ ܫܠܝܚܐ}
    \fancyhead[RO,LE]{\leftmark:\lastleftxmark –– \rightmark:\firstrightxmark} % Right on odd pages, Left on even pages
    
    
    \begin{document}
    
    % \include{04_Gospel of Matthew.tex}
    %\include{05_Gospel of Mark.tex}
    % \include{20_Titus.tex}
    % \include{1John.tex}
    
    \end{document}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Post Reply