My problem is that after adding a chapter now I have a blank page with just these characters:
ï¾
The page is between the new chapter and appendix A.
I'm wondering why. How ca I get rid of that page?
Here's part of my preamble:
\documentclass[a4paper,singleside,11pt]{report}
\usepackage{ia_urb_thesis}
\usepackage[italian]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{color}
\usepackage[thinlines]{easytable}
\usepackage{upquote}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{marvosym}
\usepackage{listings}
\usepackage{etoolbox}
\expandafter\patchcmd\csname ttfamily \endcsname
{\selectfont}{\small}{}{}
\usepackage{url}
\usepackage{amsmath}% http://ctan.org/pkg/amsmath
\usepackage{float}
\lstset{literate={@}{\MVAt}1}
\patchcmd{\verb}{\dospecials}{\dospecials\atspecial}{}{}
\def\atspecial{\begingroup\lccode`~=`@
\lowercase{\endgroup\let~}\MVAt
\catcode`@=\active}
\end{document}). Also don't tag all your questions withlatex-project. – marczellm Feb 02 '13 at 16:56\input{file}andfile.texhas a Byte Order Mark at the beginning. See http://tex.stackexchange.com/questions/10474/latex-baffled-by-bom-unicodes-byte-order-mark – egreg Feb 02 '13 at 17:02\includeof the chapter there isn't any garbage, check that the offending chapter doesn't start in junk (a popular place in which gremlins hide is in comments before the\chapter, just before the\chapter, ...). Maybe your Windows adds some garbage to mark the file as UTF-8 at the beginning? – vonbrand Feb 02 '13 at 20:04tail --bytes=+4 text.txtas described by http://www.linuxask.com/questions/how-to-remove-bom-from-utf-8 – amit kumar Feb 18 '13 at 12:06