I am trying to create a table using the tabular environment using this code snippet:
\documentclass{article}
\begin{document}
\begin{table}
\centering
\begin{tabular}{|l|l|}
\hline
\multicolumn{2}{|c|}{\textbf{Scenario}} \\ \hline
This & 15 \\
Is & 10 \\
Example & 100 \\
Tabular & 10 \\ \hline
\end{tabular}
\end{table}
\end{document}
This works fine for this MWE, but in my own document the result has strange added symbols in the table. All the symbols are the same: ăăăăă.
Does anyone have a solution? I've been struggeling with this for quite some time and tried a few things myself without success. The MWE I has no issues, still I would like like to know if someone has expierenced the same issue before.


\meter,\per,\second,\squared, etc. – Werner Nov 24 '12 at 15:52inputenc, this character produces the glyph in position0xA0which, in a T1 encoded font, is precisely "ă". Try loading\usepackage[ascii]{inputenc}and you'll get error messages about it. – egreg Nov 24 '12 at 18:44