General ⇒ won't build output file, don't know what is wrong
won't build output file, don't know what is wrong
if someone can help me figure out what's wrong and how to fix it, or point it to the solution if it has been posted before already (my apologies), I would really appreciate it.
Thanks.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
won't build output file, don't know what is wrong
welcome to the board!
The message "No pages of output" means that your document does not contain text which can be printed, for example if it would be just a preamble without real text after
\begin{document}
.Perhaps show the code of a

Stefan
won't build output file, don't know what is wrong
Code: Select all
\documentclass{report}
\usepackage[left=1in,right=1in,top=1in,bottom=1in]{geometry}
\setlength{\headheight}{23pt}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{multirow}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\fancyhead{}
\fancyfoot{}
\lhead{\large \textbf{Course Number}}
\chead{\large \textbf{Homework \#}}
\rhead{\large \textbf{Name}}
\cfoot{\thepage}
%Document goes here.
\end{document}
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
Re: won't build output file, don't know what is wrong
Stefan
Re: won't build output file, don't know what is wrong
- Stefan Kottwitz
- Site Admin
- Posts: 10335
- Joined: Mon Mar 10, 2008 9:44 pm
won't build output file, don't know what is wrong
Don't hesitate, just write some text. An
\mbox{}
or a tilde ~
would already cause a page to be produced.Stefan