GeneralCounter Error caused by included File

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Coral
Posts: 11
Joined: Thu Apr 18, 2013 4:32 pm

Counter Error caused by included File

Post by Coral »

Dear All,

again. I am Coral, I hope the last error of the day!

Code: Select all

! LaTeX Error: No counter 'btxromaniannumeral' defined.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.130 \include{evaluation}
Your command was ignored.
Type I <command> <return> to replace it with another command,
or <return> to continue without it.
I guess it comes from a misunderstanding. Here I am including the files.

Code: Select all

\mainmatter
\pagenumbering{arabic}
\include{introduction}
\include{content}
\include{evaluation}
\include{conclusion}
But I am excluding some of them:

Code: Select all

\includeonly{ 
%titlepage,
%declaration,
introduction,
%content,
%evaluation,
%conclusion,
%appendix
}
Could it be? What should I do to solve the problem?

Thanks again for your time and help!

Saludos,
Coral
Last edited by localghost on Wed Apr 24, 2013 3:51 pm, edited 1 time in total.

Recommended reading 2024:

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

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

User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Counter Error caused by included File

Post by cgnieder »

We need to see a Infominimal working example (MWE), i.e., a shirt but complete example starting with \documentclass and ending with \end{document} (and which does not require us to include any files we cannot possibly have!) but still reproduces the error. I already posted in another answer of mine to one of your questions that you should follow the link describing what an MWE is and how to build one. It's not too hard, actually. Quoting myself:
cgnieder wrote:the standard way of getting a minimal working example: save the file that throws the error under a new name and start deleting the code/the document text until the error disappears. Then reinsert the last part you deleted (which must cause the error) and continue with the rest of the code in the same way until you get a minimal version causing the error. If you're lucky you'll be able to identify and correct the erroneous part yourself.
Regards
site moderator & package author
Post Reply