%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% pdflatex logfile: /tmp/Slides/Theorems.log Return code: 256 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 001: This is pdfTeX, Version 3.14159265-2.6-1.40.17 (TeX Live 2016/Debian) (preloaded format=pdflatex 2023.3.11) 6 MAY 2025 20:03 002: entering extended mode 003: restricted \write18 enabled. 004: %&-line parsing enabled. 005: **/tmp/Slides/Theorems.tex 006: (/tmp/Slides/Theorems.tex 007: LaTeX2e <2017/01/01> patch level 3 008: Babel <3.9r> and hyphenation patterns for 83 language(s) loaded. 009: (/usr/share/texlive/texmf-dist/tex/latex/base/report.cls 010: Document Class: report 2014/09/29 v1.4h Standard LaTeX document class 011: (/usr/share/texlive/texmf-dist/tex/latex/base/size10. 012: 013: ! Package babel Error: You haven't defined the language brazilian yet. 014: 015: See the babel package documentation for explanation. 016: Type H for immediate help. 017: ... 018: 019: l.4 \select@language{brazilian} 020: 021: ! ==> Fatal error occurred, no output PDF file produced! 022: Transcript written on /tmp/Slides/Theorems.log. 023: 024: Package: amsthm 2015/03/04 v2.20.2 025: \thm@style=\toks14 026: \thm@bodyfont=\toks15 027: \thm@headfont=\toks16 028: \thm@notefont=\toks17 029: \thm@headpunct=\toks18 030: \thm@preskip=\skip43 031: \thm@postskip=\skip44 032: \thm@headsep=\skip45 033: \dth@everypar=\toks19 034: ) (./Theorems.aux 035: 036: ! Package babel Error: You haven't defined the language brazilian yet. 037: 038: See the babel package documentation for explanation. 039: Type H for immediate help. 040: ... 041: 042: l.4 \select@language{brazilian} 043: 044: Here is how much of TeX's memory you used: 045: 347 strings out of 493013 046: 3938 string characters out of 6135682 047: 54146 words of memory out of 5000000 048: 3974 multiletter control sequences out of 15000+600000 049: 3640 words of font info for 14 fonts, out of 8000000 for 9000 050: 1141 hyphenation exceptions out of 8191 051: 23i,0n,17p,128b,58s stack positions out of 5000i,500n,10000p,200000b,80000s 052: 053: ! ==> Fatal error occurred, no output PDF file produced! 054: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Latex source file: /tmp/Slides/Theorems.tex Return code: 256 I think it starts here: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ################################## Latex source file: /tmp/Slides/Theorems.tex No of lines/chars: 44, 613 chars ################################## 001: \documentclass{report} 002: %%% Original latex doc: /usr/local/Slides/1_Disciplines/4_Latex/03/01_Counters/Theorems.tex 003: 004: 005: \newtheorem{Axioma}{Axioma} 006: \newtheorem{Teorema}{Teorema}[section] 007: \newtheorem 008: {Definicao} 009: [Teorema] 010: {Definição} 011: \newtheorem 012: {Proposicao} 013: [Teorema] 014: {Proposição} 015: \newtheorem 016: {Corolario} 017: [Teorema] 018: {Corolário} 019: \newtheorem 020: {Lema} 021: [Teorema] 022: {Lema} 023: 024: \newtheorem 025: {Commentario} 026: [Teorema] 027: {Comment} 028: 029: \usepackage{amsthm} 030: 031: \begin{document} 032: 033: 034: \begin{Teorema} 035: My first theorem... 036: \end{Teorema} 037: 038: \begin{proof} 039: Here's the proof... 040: \end{proof} 041: 042: \end{document} 043: 044: ##################################