I am trying to compile a complete thesis written in Latex with Texmaker.
Steps:
1. File -->> Open -->> Given mainfile.tex
2. Press PDFLaTeX
The mainfile.tex accesses the format.tex file via
\usepackage{setup/format.tex}.
The \CJKindent command used in the format.tex has the output message as produced by the following working example.
Code Snippet at which issue arises:
Code: Select all
\documentclass[12pt,a4paper,openany,twoside]{book}
\CJKindent
\begin{document}
abcd
\end{document}
Code: Select all
! Undefined control sequence.
<recently read> \CJKindent
l.2 \CJKindent
The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.
(./cjk_indent.aux)
\openout1 = `cjk_indent.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 3.
LaTeX Font Info: ... okay on input line 3.
[1{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}
]
(./cjk_indent.aux) )
Here is how much of TeX's memory you used:
227 strings out of 493304
2443 string characters out of 6139871
51946 words of memory out of 5000000
3770 multiletter control sequences out of 15000+600000
4290 words of font info for 16 fonts, out of 8000000 for 9000
957 hyphenation exceptions out of 8191
22i,4n,19p,149b,141s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/
cm/cmr12.pfb>
Output written on cjk_indent.pdf (1 page, 8963 bytes).
PDF statistics:
12 PDF objects out of 1000 (max. 8388607)
7 compressed objects within 1 object stream
0 named destinations out of 1000 (max. 500000)
1 words of extra memory for PDF output out of 10000 (max. 10000000)
OS ==>> Ubuntu 14.04
Latex Distribution ==>> TexLive has been installed via
Code: Select all
sudo apt-get install texlive-full
Anil Kunwar