On Sat, 11 Jul 2015, Liviu Andronic wrote:
Another way to do this is to keep figure floats, labels and cross-refs exclusively in LyX. So the chunk would simply output a graph, and you place the chunk within a LyX float (with associated caption and label). Then use normal LyX workflow.
Might as well keep this in the same thread for posterity's sake. The first figure addes in a float allowed the document to be compiled with pdflatex. When I added a new paragraph with a second figure float compilation fails but the explicit error is not shown. I created a small test file from the document that contains all the knitr chunks and the two figure floats. Attached is the .lyx file (version 2.1.3), the /tmp/.../.log file, and the .RData file from the working directory. This should be enough to replicate the document. I cannot find the error in the log file; more experienced eyes than mine probably can. It is puzzling that the one figure worked, but adding an additional figure broke something. Because this document will have many figures I need to understand how to avoid compilation errors as writing continues. Thanks, Rich
#LyX 2.1 created this file. For more info see http://www.lyx.org/ \lyxformat 474 \begin_document \begin_header \textclass scrreprt \begin_preamble \date{} \usepackage{textcomp,url,multicol} %\setkomafont{sectioning}{\rmfamily} \end_preamble \options abstract=on \use_default_options false \begin_modules natbibapa knitr \end_modules \maintain_unincluded_children false \language english \language_package default \inputencoding auto \fontencoding global \font_roman palatino \font_sans default \font_typewriter default \font_math auto \font_default_family default \use_non_tex_fonts false \font_sc false \font_osf false \font_sf_scale 100 \font_tt_scale 100 \graphics default \default_output_format default \output_sync 0 \bibtex_command bibtex \index_command default \paperfontsize default \spacing single \use_hyperref false \papersize letterpaper \use_geometry false \use_package amsmath 1 \use_package amssymb 1 \use_package cancel 1 \use_package esint 0 \use_package mathdots 1 \use_package mathtools 1 \use_package mhchem 1 \use_package stackrel 1 \use_package stmaryrd 1 \use_package undertilde 1 \cite_engine natbib \cite_engine_type authoryear \biblio_style humannat \use_bibtopic false \use_indices false \paperorientation portrait \suppress_date false \justification true \use_refstyle 0 \index Index \shortcut idx \color #008000 \end_index \secnumdepth 2 \tocdepth 2 \paragraph_separation indent \paragraph_indentation default \quotes_language english \papercolumns 1 \papersides 2 \paperpagestyle default \tracking_changes false \output_changes false \html_math_output 0 \html_css_as_file 0 \html_be_strict false \end_header \begin_body \begin_layout Standard \begin_inset Flex Chunk status open \begin_layout Plain Layout load('.RData') \begin_inset Argument 1 status open \begin_layout Plain Layout echo=FALSE \end_layout \end_inset \end_layout \end_inset \end_layout \begin_layout Standard Some text in here; separating knitr chunks. \end_layout \begin_layout Standard \begin_inset Flex Chunk status open \begin_layout Plain Layout carlin <- read.csv("./carlin.csv", header = TRUE, sep = ",", stringsAsFactors = F) \end_layout \end_inset \end_layout \begin_layout Standard Next paragraph of text. \end_layout \begin_layout Standard \begin_inset Flex Chunk status collapsed \begin_layout Plain Layout carlin$sampdate <- as.Date(carlin$sampdate) \end_layout \begin_layout Plain Layout str(carlin) \end_layout \end_inset \end_layout \begin_layout Standard Another paragraph or two of text. \end_layout \begin_layout Standard \begin_inset Flex Chunk status open \begin_layout Plain Layout summary(carlin) \end_layout \end_inset \end_layout \begin_layout Standard Plots of these distributions are the next step ... \end_layout \begin_layout Standard \begin_inset Flex Chunk status collapsed \begin_layout Plain Layout carlin.1 <- subset(carlin, select = siteid:CO3) \end_layout \begin_layout Plain Layout carlin.2 <- subset(carlin, select = c(siteid, sampdate, Alk:Ca)) \end_layout \begin_layout Plain Layout carlin.3 <- subset(carlin, select = c(siteid, sampdate, Mg:Cr)) \end_layout \begin_layout Plain Layout carlin.4 <- subset(carlin, select = c(siteid, sampdate, Co:Hg)) \end_layout \end_inset \end_layout \begin_layout Standard To plot each chemical constituent's concentration as a function of collection date the data format needs to be reshaped from wide to long: \end_layout \begin_layout Standard \begin_inset Flex Chunk status collapsed \begin_layout Plain Layout library(reshape2) \end_layout \begin_layout Plain Layout carlin.1.melt <- melt(carlin.1, na.rm = F, id.vars = c('siteid', 'sampdate')) \end_layout \begin_layout Plain Layout carlin.2.melt <- melt(carlin.2, na.rm = F, id.vars = c('siteid', 'sampdate')) \end_layout \begin_layout Plain Layout carlin.3.melt <- melt(carlin.3, na.rm = F, id.vars = c('siteid', 'sampdate')) \end_layout \begin_layout Plain Layout carlin.4.melt <- melt(carlin.4, na.rm = F, id.vars = c('siteid', 'sampdate')) \end_layout \end_inset \end_layout \begin_layout Standard The scatter (X-Y) plots use only measured data; missing data are not included. These plots show the measured values over time for each measured constituent. For example, Figure \begin_inset CommandInset ref LatexCommand ref reference "fig: scatter-plot group 1" \end_inset shows that most chemical constitent concentrations are low and have low variability. \begin_inset Float figure wide false sideways false status collapsed \begin_layout Plain Layout \align center \begin_inset Flex Chunk status collapsed \begin_layout Plain Layout library(lattice) \end_layout \begin_layout Plain Layout xyplot(value ~ sampdate | variable, data=carlin.1.melt, rm.na = T, ylab = 'Measured Value', xlab = 'Date') \end_layout \end_inset \end_layout \begin_layout Plain Layout \begin_inset Caption Standard \begin_layout Plain Layout \begin_inset CommandInset label LatexCommand label name "fig: scatter-plot group 1" \end_inset Variability of measured values in group 1 constituents over the period of record at the Carlin station. \end_layout \end_inset \end_layout \begin_layout Plain Layout \end_layout \end_inset Because river discharge (in cubic feet per second) spiked at about 8,000 cfs in the mis-1980s the Y-axis for all panels in the figure have the save range. This compresses low values yet any single constituent can be plotted by itself and the details of its variability over time easily seen. \end_layout \begin_layout Standard The second group of constituents (Figure \begin_inset CommandInset ref LatexCommand ref reference "fig: scatter-plot group 2" \end_inset ) \begin_inset Float figure wide false sideways false status collapsed \begin_layout Plain Layout \align center \begin_inset Flex Chunk status collapsed \begin_layout Plain Layout xyplot(value ~ sampdate | variable, data=carlin.2.melt, rm.na = T, ylab = 'Measured Value', xlab = 'Date' \end_layout \end_inset \end_layout \begin_layout Plain Layout \begin_inset Caption Standard \begin_layout Plain Layout \begin_inset CommandInset label LatexCommand label name "fig: scatter-plot group 2" \end_inset Variability of measured values in group 2 constituents over the period of record at the Carlin station. \end_layout \end_inset \end_layout \end_inset reveals that nutrients (the nitrogen compounds, phosphate, and organic carbon) are all consistenly low with low variability while total dissolved solids (TDS) concentrations are very highly variable both within years (as shown by the different concentrations at the same date) and across the period of observations. Alkalinity and hardness are also quite variable at both time scales. \end_layout \end_body \end_document
This is pdfTeX, Version 3.1415926-2.5-1.40.14 (TeX Live 2013 on Slackware (SlackBuilds.org)) (format=latex 2014.3.21) 11 JUL 2015 12:28 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **lyxpreviewx26141.tex (./lyxpreviewx26141.tex LaTeX2e <2011/06/27> Babel <3.9f> and hyphenation patterns for 78 languages loaded. (/usr/share/texmf-dist/tex/latex/koma-script/scrreprt.cls Document Class: scrreprt 2012/07/29 v3.11b KOMA-Script document class (report) (/usr/share/texmf-dist/tex/latex/koma-script/scrkbase.sty Package: scrkbase 2012/07/29 v3.11b KOMA-Script package (KOMA-Script-dependent basics and keyval usage) (/usr/share/texmf-dist/tex/latex/koma-script/scrbase.sty Package: scrbase 2012/07/29 v3.11b KOMA-Script package (KOMA-Script-independent basics and keyval usage) (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 1999/03/16 v1.13 key=value parser (DPC) \KV@toks@=\toks14 ) (/usr/share/texmf-dist/tex/latex/koma-script/scrlfile.sty Package: scrlfile 2012/06/15 v3.12 KOMA-Script package (loading files) Package scrlfile, 2012/06/15 v3.12 KOMA-Script package (loading files) Copyright (C) Markus Kohm ))) (/usr/share/texmf-dist/tex/latex/koma-script/tocbasic.sty Package: tocbasic 2012/04/04 v3.10b KOMA-Script package (handling toc-files) ) Package tocbasic Info: omitting babel extension for `toc' (tocbasic) because of feature `nobabel' available (tocbasic) for `toc' on input line 117. Package tocbasic Info: omitting babel extension for `lof' (tocbasic) because of feature `nobabel' available (tocbasic) for `lof' on input line 118. Package tocbasic Info: omitting babel extension for `lot' (tocbasic) because of feature `nobabel' available (tocbasic) for `lot' on input line 119. Class scrreprt Info: File `scrsize11pt.clo' used instead of (scrreprt) file `scrsize11.clo' to setup font sizes on input line 136 7. (/usr/share/texmf-dist/tex/latex/koma-script/scrsize11pt.clo File: scrsize11pt.clo 2012/07/29 v3.11b KOMA-Script font size class option (11p t) ) (/usr/share/texmf-dist/tex/latex/koma-script/typearea.sty Package: typearea 2012/07/29 v3.11b KOMA-Script package (type area) Package typearea, 2012/07/29 v3.11b KOMA-Script package (type area) Copyright (C) Frank Neukam, 1992-1994 Copyright (C) Markus Kohm, 1994- \ta@bcor=\skip41 \ta@div=\count79 Package typearea Info: You've used standard option `letterpaper'. (typearea) This is correct! (typearea) Internally I'm using `paper=letter'. (typearea) If you'd like to set the option with \KOMAoptions, (typearea) you'd have to use `paper=letter' there (typearea) instead of `letterpaper', too. \ta@hblk=\skip42 \ta@vblk=\skip43 \ta@temp=\skip44 Package typearea Info: These are the values describing the layout: (typearea) DIV = 10 (typearea) BCOR = 0.0pt (typearea) \paperwidth = 614.295pt (typearea) \textwidth = 430.00653pt (typearea) DIV departure = -9% (typearea) \evensidemargin = 50.58899pt (typearea) \oddsidemargin = -10.8405pt (typearea) \paperheight = 794.96999pt (typearea) \textheight = 568.60025pt (typearea) \topmargin = -30.173pt (typearea) \headheight = 17.0pt (typearea) \headsep = 20.40001pt (typearea) \topskip = 11.0pt (typearea) \footskip = 47.60002pt (typearea) \baselineskip = 13.6pt (typearea) on input line 1213. ) \c@part=\count80 \c@chapter=\count81 \c@section=\count82 \c@subsection=\count83 \c@subsubsection=\count84 \c@paragraph=\count85 \c@subparagraph=\count86 \abovecaptionskip=\skip45 \belowcaptionskip=\skip46 \c@pti@nb@sid@b@x=\box26 \c@figure=\count87 \c@table=\count88 \bibindent=\dimen102 ) (/usr/share/texmf-dist/tex/latex/psnfss/mathpazo.sty Package: mathpazo 2005/04/12 PSNFSS-v9.2a Palatino w/ Pazo Math (D.Puga, WaS) \symupright=\mathgroup4 ) (/usr/share/texmf-dist/tex/latex/base/fontenc.sty Package: fontenc 2005/09/27 v1.99g Standard LaTeX package (/usr/share/texmf-dist/tex/latex/base/t1enc.def File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file LaTeX Font Info: Redeclaring font encoding T1 on input line 43. )) (/usr/share/texmf-dist/tex/latex/base/inputenc.sty Package: inputenc 2008/03/30 v1.1d Input encoding file \inpenc@prehook=\toks15 \inpenc@posthook=\toks16 (/usr/share/texmf-dist/tex/latex/base/latin9.def File: latin9.def 2008/03/30 v1.1d Input encoding file )) (/usr/share/texmf-dist/tex/latex/apacite/apacite.sty Package: apacite 2012/02/25 v6.01 APA citation \c@BibCnt=\count89 \bibleftmargin=\skip47 \bibindent=\skip48 \bibparsep=\skip49 \bibitemsep=\skip50 \biblabelsep=\skip51 ) (/usr/share/texmf-dist/tex/latex/natbib/natbib.sty Package: natbib 2010/09/13 8.31b (PWD, AO) \bibhang=\skip52 \bibsep=\skip53 LaTeX Info: Redefining \cite on input line 694. \c@NAT@ctr=\count90 ) LaTeX Info: Redefining \BBA on input line 21. (/usr/share/texmf-dist/tex/latex/base/textcomp.sty Package: textcomp 2005/09/27 v1.99g Standard LaTeX package Package textcomp Info: Sub-encoding information: (textcomp) 5 = only ISO-Adobe without \textcurrency (textcomp) 4 = 5 + \texteuro (textcomp) 3 = 4 + \textohm (textcomp) 2 = 3 + \textestimated + \textcurrency (textcomp) 1 = TS1 - \textcircled - \t (textcomp) 0 = TS1 (full) (textcomp) Font families with sub-encoding setting implement (textcomp) only a restricted character set as indicated. (textcomp) Family '?' is the default used for unknown fonts. (textcomp) See the documentation for details. Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71. (/usr/share/texmf-dist/tex/latex/base/ts1enc.def File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file ) LaTeX Info: Redefining \oldstylenums on input line 266. Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281. Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282. Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283. Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284. Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285. Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286. Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287. Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288. Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289. Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290. Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291. Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292. Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293. Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294. Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295. Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296. Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297. Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298. Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299. Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300. Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301. Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302. Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303. Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304. Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305. Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306. Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307. Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308. Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309. Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310. Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 311. Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 312. Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 313. Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 314. Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 315. Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 316. Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 317. Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 318. Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 319. Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 320. Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 321. Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 322. Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 323. Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 324. Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 325. Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 326. Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 327. Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 328. Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 329. Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 330. Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 331. Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 332. Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 333. Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 334. Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 335. Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 336. Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 337. Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 338. Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 339. Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 340. ) (/usr/share/texmf-dist/tex/latex/url/url.sty \Urlmuskip=\muskip10 Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc. ) (/usr/share/texmf-dist/tex/latex/tools/multicol.sty Package: multicol 2011/06/27 v1.7a multicolumn formatting (FMi) \c@tracingmulticols=\count91 \mult@box=\box27 \multicol@leftmargin=\dimen103 \c@unbalance=\count92 \c@collectmore=\count93 \doublecol@number=\count94 \multicoltolerance=\count95 \multicolpretolerance=\count96 \full@width=\dimen104 \page@free=\dimen105 \premulticols=\dimen106 \postmulticols=\dimen107 \multicolsep=\skip54 \multicolbaselineskip=\skip55 \partial@page=\box28 \last@line=\box29 \mult@rightbox=\box30 \mult@grightbox=\box31 \mult@gfirstbox=\box32 \mult@firstbox=\box33 \@tempa=\box34 \@tempa=\box35 \@tempa=\box36 \@tempa=\box37 \@tempa=\box38 \@tempa=\box39 \@tempa=\box40 \@tempa=\box41 \@tempa=\box42 \@tempa=\box43 \@tempa=\box44 \@tempa=\box45 \@tempa=\box46 \@tempa=\box47 \@tempa=\box48 \@tempa=\box49 \@tempa=\box50 \c@columnbadness=\count97 \c@finalcolumnbadness=\count98 \last@try=\dimen108 \multicolovershoot=\dimen109 \multicolundershoot=\dimen110 \mult@nat@firstbox=\box51 \colbreak@box=\box52 \multicol@sort@counter=\count99 ) (/usr/share/texmf-dist/tex/generic/babel/babel.sty Package: babel 2013/05/16 v3.9f The Babel package (/usr/share/texmf-dist/tex/generic/babel-english/english.ldf Language: english 2012/08/20 v3.3p English support from the babel system (/usr/share/texmf-dist/tex/generic/babel/babel.def File: babel.def 2013/05/16 v3.9f Babel common definitions \babel@savecnt=\count100 \U@D=\dimen111 ) \l@canadian = a dialect from \language\l@american \l@australian = a dialect from \language\l@british \l@newzealand = a dialect from \language\l@british )) (/usr/share/texmf-dist/tex/latex/preview/preview.sty Package: preview 2010/02/14 11.86 (AUCTeX/preview-latex) (/usr/share/texmf-dist/tex/latex/preview/prshowlabels.def \pr@labelbox=\box53 ) (/usr/share/texmf-dist/tex/latex/preview/prlyx.def) \pr@snippet=\count101 \pr@box=\box54 \pr@output=\toks17 ) No file lyxpreviewx26141.aux. \openout1 = `lyxpreviewx26141.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 38. LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 38. LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 38. LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 38. LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 38. LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 38. LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 38. LaTeX Font Info: Try loading font information for TS1+cmr on input line 38. (/usr/share/texmf-dist/tex/latex/base/ts1cmr.fd File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions ) LaTeX Font Info: ... okay on input line 38. LaTeX Font Info: Try loading font information for T1+ppl on input line 38. (/usr/share/texmf-dist/tex/latex/psnfss/t1ppl.fd File: t1ppl.fd 2001/06/04 font definitions for T1/ppl. ) \big@size=\dimen112 \c@maskedRefs=\count102 (/usr/share/texmf-dist/tex/latex/apacite/english.apc File: english.apc 2012/02/25 v6.01 apacite language file LaTeX Info: Redefining \BPBI on input line 129. LaTeX Info: Redefining \BHBI on input line 130. ) Preview: Fontsize 10.95pt LaTeX Font Info: Try loading font information for OT1+ppl on input line 40. (/usr/share/texmf-dist/tex/latex/psnfss/ot1ppl.fd File: ot1ppl.fd 2001/06/04 font definitions for OT1/ppl. ) LaTeX Font Info: Try loading font information for OML+zplm on input line 40. (/usr/share/texmf-dist/tex/latex/psnfss/omlzplm.fd File: omlzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OML/zplm. ) LaTeX Font Info: Try loading font information for OMS+zplm on input line 40. (/usr/share/texmf-dist/tex/latex/psnfss/omszplm.fd File: omszplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMS/zplm. ) LaTeX Font Info: Try loading font information for OMX+zplm on input line 40. (/usr/share/texmf-dist/tex/latex/psnfss/omxzplm.fd File: omxzplm.fd 2002/09/08 Fontinst v1.914 font definitions for OMX/zplm. ) LaTeX Font Info: Try loading font information for OT1+zplm on input line 40. (/usr/share/texmf-dist/tex/latex/psnfss/ot1zplm.fd File: ot1zplm.fd 2002/09/08 Fontinst v1.914 font definitions for OT1/zplm. ) Preview: Snippet 1 505562 13634 819921 [1] Preview: Snippet 2 522785 198421 4566190 [2] Preview: Snippet 3 522785 198421 1860060 [3] (./lyxpreviewx26141.aux) ) Here is how much of TeX's memory you used: 3646 strings out of 493316 50945 string characters out of 6143677 138415 words of memory out of 5000000 7072 multiletter control sequences out of 15000+600000 11310 words of font info for 32 fonts, out of 8000000 for 9000 957 hyphenation exceptions out of 8191 35i,5n,40p,251b,133s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on lyxpreviewx26141.dvi (3 pages, 424 bytes).
.RData
Description: Binary data