Displaying 3 results from an estimated 3 matches for "t2aenc".
2009 Apr 16
2
there are fontencoding problem in Sweave
...cian, swedish,
loa
ded.
(/usr/share/texmf-texlive/tex/latex/base/article.cls
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo))
(/usr/share/texmf-texlive/tex/latex/base/fontenc.sty
(/usr/share/texmf-texlive/tex/latex/cyrillic/t2aenc.def)
(/usr/share/texmf-texlive/tex/latex/cyrillic/t2acmr.fd))
(/usr/share/texmf-texlive/tex/latex/base/inputenc.sty
(/usr/share/texmf-texlive/tex/latex/base/utf8.def
(/usr/share/texmf-texlive/tex/latex/base/t1enc.dfu)
(/usr/share/texmf-texlive/tex/latex/base/ot1enc.dfu)
(/usr/share/texmf-texlive/te...
2009 Apr 16
0
there are fontencoding problem in Sweave
...gt; (/usr/share/texmf-texlive/tex/latex/base/article.cls
> Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
> (/usr/share/texmf-texlive/tex/latex/base/size10.clo))
> (/usr/share/texmf-texlive/tex/latex/base/fontenc.sty
> (/usr/share/texmf-texlive/tex/latex/cyrillic/t2aenc.def)
> (/usr/share/texmf-texlive/tex/latex/cyrillic/t2acmr.fd))
> (/usr/share/texmf-texlive/tex/latex/base/inputenc.sty
> (/usr/share/texmf-texlive/tex/latex/base/utf8.def
> (/usr/share/texmf-texlive/tex/latex/base/t1enc.dfu)
> (/usr/share/texmf-texlive/tex/latex/base/ot1enc.dfu)
>...
2012 Jul 04
1
Suggestion / patch to support more Unicode characters in R CMD Rd2pdf
...= setEncoding] <-
+ setEncoding2 <-
paste0("\\usepackage[", encs, "]{", inputenc, "}")
} else {
- lines[lines == setEncoding] <-
+ setEncoding2 <-
paste(
"\\usepackage[", encs, "]{", inputenc, "}
\\IfFileExists{t2aenc.def}{\\usepackage[T2A]{fontenc}}{}", sep = "")
}
+ if (moreUnicode) {
+ setEncoding2 <-
+ paste0(
+setEncoding2, "
+\\input{ix-utf8enc.dfu}")
+ }
+ lines[lines == setEncoding] <- setEncoding2
if (hasFigures)
lines[lines == useGraphicx] <...