Re: [Vim-latex-devel] Problems with templates
Brought to you by:
srinathava,
tmaas
From: Alessandro P. <ale...@la...> - 2012-12-29 09:23:50
|
2012/12/29 David Woodfall <da...@da...>: > Original: > > 7 \usepackage[strict=true, style=british]{csquotes} > %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Textclass specific LaTeX commands. > 10 \newif\ifletterclosed > 11 \AtEndDocument{\ifletterclosed\else\end{letter}\fi} > 12 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands. > 13 %%%%%%%%%%%%%%%%%%%%%%%%%%%%% > 14 %% Here you can modify the layout of your letter > 15 %% Have a look at the KOMA script documentation > 16 %% for details. Most commands are commented out > 17 %% here (i.e. we use default settings) > 18 %%%%%%%%%%%%%%%%%%%%%%%%%%%%% > 19 %% Load an *.lco style file (see KOMA documentation) > 20 \LoadLetterOption{DIN}% > > The result: > > 7 \usepackage[strict=true, style=british]{csquotes} > 8 0 > 9 %% Here you can modify the layout of your letter > 10 %% Have a look at the KOMA script documentation > 11 %% for details. Most commands are commented out > 12 %% here (i.e. we use default settings) > 13 0 > 14 %% Load an *.lco style file (see KOMA documentation) > 15 \LoadLetterOption{DIN}% > > It seems to have deleted some lines and replaced some with '0'. Please, try deleting some comment signs, e.g. using something like: \usepackage[strict=true, style=british]{csquotes} %% Textclass specific LaTeX commands. \newif\ifletterclosed \AtEndDocument{\ifletterclosed\else\end{letter}\fi} %% User specified LaTeX commands. %%% % Here you can modify the layout of your letter % Have a look at the KOMA script documentation % for details. Most commands are commented out % here (i.e. we use default settings) %%% % Load an *.lco style file (see KOMA documentation) \LoadLetterOption{DIN}% This since the missing lines are mostly those with most '%' in them. This is not really a solution, but it can help pinpoint the issue. Alessandro |