Displaying 20 results from an estimated 48 matches for "chtml".
Did you mean:
html
2020 Apr 30
2
Use of MathJax (or something similar) in .Rd files
Thanks Gabor and Duncan! It works. For those interested, I added this to the beginning of the \details{} section:
\if{html}{\out{
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax at 3/es5/tex-mml-chtml.js">
</script>
}}
And then I can use:
\if{html}{\out{\(B_{x(a,b)} = \int_0^x t^{a-1} (1-t)^{b-1} dt\)}}
or
\if{html}{\out{\[B_{x(a,b)} = \int_0^x t^{a-1} (1-t)^{b-1} dt\]}}
to render the equation (inline or as 'displaymath'). I'll try to add MathJax locally next.
Bes...
2005 Oct 27
1
R-devel CHTML problem
...ying: "The procedure entry point
HtmlHelpA at 16 could not be located in the dynamic link library hhctrl.ocx"
2. I get the following on the R console
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library
'C:/local/R/rw230/bin/Rchtml.dll':
LoadLibrary failure: The specified procedure could not be found.
I tried to track down the problem but I do not know much about CHTML. Here
is what I discovered:
1. The problem is with the Rchtml.dll (as 2 above suggests). If I simply
replace the Rchtml.dll in the bin director...
2020 Apr 30
2
Use of MathJax (or something similar) in .Rd files
Interesting. I gave this a try, but couldn't make this work. One would have to infuse something like
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax at 3/es5/tex-mml-chtml.js">
</script>
or
<script id="MathJax-script" async
src="<url-to-your-site>/mathjax/tex-chtml.js">
</script>
into the .html file, but just adding this to the .Rd file (directly or wrapped with \if{html}{}) doesn't do that (it just gets p...
2020 May 05
1
Use of MathJax (or something similar) in .Rd files
...ing similar) in .Rd files
>
>Thanks Gabor and Duncan! It works. For those interested, I added this to the
>beginning of the \details{} section:
>
>\if{html}{\out{
><script id="MathJax-script" async
>?? src="https://cdn.jsdelivr.net/npm/mathjax at 3/es5/tex-mml-chtml.js">
></script>
>}}
>
>And then I can use:
>
>\if{html}{\out{\(B_{x(a,b)} = \int_0^x t^{a-1} (1-t)^{b-1} dt\)}}
>
>or
>
>\if{html}{\out{\[B_{x(a,b)} = \int_0^x t^{a-1} (1-t)^{b-1} dt\]}}
>
>to render the equation (inline or as 'displaymath')...
2000 Aug 20
1
Compiled HTML and aliased topics
...try e.g.
help(as.symbol, chmhelp = TRUE)
I get an error message in the help viewer (translated to english: "The
page cannot be shown"). This happens for all aliased topics (i.e.
aliased in the *.Rd file).
So I have to know the "unaliased" name (here: "name") to get chtml help.
Is it possible to get the behavior of "plain text help" (no problems
with aliased topics) also for chtml help?
Regards,
Uwe Ligges
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ...
2009 May 02
1
compiled help pages
...ommand, which gives this error message:
No documentation for ' newSTUFF ' in specified packages and libraries:
you could try '?? newSTUFF '
But when I look at the contents of the ZIP file that R has made, it says the
newSTUFF compiled help pages are there:
newSTUFF/
newSTUFF/chtml/
newSTUFF/chtml/newSTUFF.chm
What's even more puzzling is that the command: help(package=newSTUFF) DOES
work, as it should. Only help(newSTUFF) doesn't.
How did I mess this up?
Thanks.
Charles Annis, P.E.
<mailto:Charles.Annis@StatisticalEngineering.com>
Charles...
2020 Apr 30
0
Use of MathJax (or something similar) in .Rd files
...d] Use of MathJax (or something similar) in .Rd files
Thanks Gabor and Duncan! It works. For those interested, I added this to the beginning of the \details{} section:
\if{html}{\out{
<script id="MathJax-script" async
src="https://cdn.jsdelivr.net/npm/mathjax at 3/es5/tex-mml-chtml.js">
</script>
}}
And then I can use:
\if{html}{\out{\(B_{x(a,b)} = \int_0^x t^{a-1} (1-t)^{b-1} dt\)}}
or
\if{html}{\out{\[B_{x(a,b)} = \int_0^x t^{a-1} (1-t)^{b-1} dt\]}}
to render the equation (inline or as 'displaymath'). I'll try to add MathJax locally next.
Bes...
2001 Apr 27
1
INSTALL Problems
...ages for package `tensor'
Formats: chm
make --no-print-directory -C D:/bin/cran/tucker/tensor/chm -f
d:/bin/cran/rw1022/src/gnuwin32/help/Makefile tensor.chm
hhc tensor.hhp
make[2]: hhc: Command not found
make[2]: [tensor.chm] Error 127 (ignored)
mkdir -p d:/bin/cran/rw1022/library/tensor/chtml
cp D:/bin/cran/tucker/tensor/chm/tensor.chm
d:/bin/cran/rw1022/library/tensor/chtml
cp: D:/bin/cran/tucker/tensor/chm/tensor.chm: No such file or directory
make[1]: *** [chm-tensor] Error 1
make[1]: Leaving directory `/d/bin/cran/rw1022/src/gnuwin32/help'
make: *** [pkg-tensor] Error 2
make: Le...
2020 Apr 30
0
Use of MathJax (or something similar) in .Rd files
On 30/04/2020 6:15 a.m., Viechtbauer, Wolfgang (SP) wrote:
> Interesting. I gave this a try, but couldn't make this work. One would have to infuse something like
>
> <script id="MathJax-script" async
> src="https://cdn.jsdelivr.net/npm/mathjax at 3/es5/tex-mml-chtml.js">
> </script>
>
> or
>
> <script id="MathJax-script" async
> src="<url-to-your-site>/mathjax/tex-chtml.js">
> </script>
>
> into the .html file, but just adding this to the .Rd file (directly or wrapped with \if...
2002 Jun 11
1
How to convert R help files to Splus 6 Help?
Hi,
Is it any way to convert .Rd files to CHTML Splus 6 files under Windows?
Thanks,
Philippe Grosjean
...........]<(({?<...............<?}))><...............................
( ( ( ( (
) ) ) ) ) Philippe Grosjean
( ( ( ( (
) ) ) ) ) IFREMER Nantes - DEL/AO
( ( ( ( ( rue de l'Ile d'Yeu, BP 21105, 44311 Nantes Cedex 3...
2003 Sep 30
2
in addition R1.8b install
this problem also occurred later in the installation process:
C:\Program Files\R\rw1080beta\doc\manual\refman.pdf
C:\Program Files\R\rw1080beta\library\mva\html\loadings.html
C:\Program Files\R\rw1080beta\library\ctest\html\fisher.test.html
C:\Program Files\R\rw1080beta\library\base\chtml\base.chm
C:\Program Files\R\rw1080beta\afm\hvo____.afm
An error occured while trying to copy a file:
The source file is corrupted.
however by the end R opened correctly....
any suggestions ?
thanks
Philippe
[[alternative HTML version deleted]]
2006 Oct 20
3
R-2.4.0 and MS Vista OS - installing packages
...ying URL
'http://cran.us.r-project.org/bin/windows/contrib/2.4/RColorBrewer_0.2-3.zip
'
Content type 'application/zip' length 39787 bytes
opened URL
downloaded 38Kb
Error in zip.unpack(pkg, tmpDir) : cannot open file 'C:/Program
Files/R/R-2.4.0/library/file6fc97ac2/RColorBrewer/chtml/RColorBrewer.chm'
>
Any help would be appreciated. Thanks.
Charles Annis, P.E.
Charles.Annis at StatisticalEngineering.com
phone: 561-352-9699
eFax:? 614-455-3265
http://www.StatisticalEngineering.com
?
2006 Oct 20
3
R-2.4.0 and MS Vista OS - installing packages
...ying URL
'http://cran.us.r-project.org/bin/windows/contrib/2.4/RColorBrewer_0.2-3.zip
'
Content type 'application/zip' length 39787 bytes
opened URL
downloaded 38Kb
Error in zip.unpack(pkg, tmpDir) : cannot open file 'C:/Program
Files/R/R-2.4.0/library/file6fc97ac2/RColorBrewer/chtml/RColorBrewer.chm'
>
Any help would be appreciated. Thanks.
Charles Annis, P.E.
Charles.Annis at StatisticalEngineering.com
phone: 561-352-9699
eFax:? 614-455-3265
http://www.StatisticalEngineering.com
?
2002 Jan 19
1
Build R-patched from Source
...R-patched/src/gnuwin32/help/Makefile base.chm
cp C:/Temp/R-patched/src/gnuwin32/help/Rchm.css Rchm.css
cp C:/Temp/R-patched/doc/html/logo.jpg logo.jpg
hhc base.hhp
MAKE[3]: hhc: Command not found
MAKE[3]: [base.chm] Error 127 (ignored)
mkdir -p C:/Temp/R-patched/library/base/chtml
cp C:/Temp/R-patched/src/library/base/chm/base.chm
C:/Temp/R-patched/library/bas
e/chtml
cp: cannot stat `C:/Temp/R-patched/src/library/base/chm/base.chm': No
such file
or directory
MAKE[2]: *** [chm-base] Error 1
MAKE[2]: Leaving directory
`/cygdrive/c/Temp/R-patched/sr...
2003 Feb 06
5
options(chmhelp = TRUE)
Hi all,
Here's a curosity I ran into since upgrading to 1.6.2 (precompiled
for Windows). When using the chm help I get the following warning. I saw
a recent post regarding this as a new warning (``dyn.load warning
message in R1.6.2 on Windows XP'' dated 1/28/03), but not in the context
of the help system. The warning only appears once and does not prevent
the chm file from
2007 Feb 06
3
installing packages and windows vista
...Kb
trying URL
'http://cran.wustl.edu/bin/windows/contrib/2.4/vegan_1.8-5.zip'
Content type 'application/zip' length 1176434 bytes
opened URL
downloaded 1148Kb
Error in zip.unpack(pkg, tmpDir) : cannot open file 'C:/Program Files
(x86)/R/R-2.4.1/library/file60bf5753/scatterplot3d/chtml/scatterplot3d.chm'
> utils:::menuInstallPkgs()
also installing the dependencies 'akima', 'gam', 'RColorBrewer', 'sm',
'deldir', 'sp', 'maps', 'spatstat', 'PBSmapping', 'gpclib', 'RArcInfo',
'tkrplot...
2004 Sep 08
1
Problem installing R
As I am installing R for windows, I get the following error:
"C:\ProgramFiles\R\rw1091\library\stats\chtml\stats.chm
An error occurred while trying to copy a file:
The source file is corrupted."
Can you help me?
Jason
[[alternative HTML version deleted]]
2007 Apr 20
1
Error en R
Mrs and Mr
My operative system is "Windows Vista" and can't update or install pakages of CRAN, the message for all pakages is for example:
Erro en zip.unpack(pkg, tmpDir) : no fue posible abrir el archivo 'C:/Program Files/R/R-2.4.1pat/library/file8f653c7/MASS/chtml/MASS.chm'
Help me
thank you!
Post data: Sorry my bad English
Roberto Mario Domínguez Olivero
Universidad Nacional de Colombia - Sede Medellín
Facultad de Ciencias
Escuela de Estadística
Cell: (03)(300)3677396
[[alternative HTML version deleted]]
2007 Apr 19
1
Innstalling packages in Vista
Hi
I am having problems innstalling new packages in R on my vista system.
The error message was
Error in zip.unpack(pkg, tmpDir) : cannot open file 'C:/Program
Files/R/R-2.4.1/library/file195610e4/tree/chtml/tree.chm
When I tried to find a solution to the problem it became clear to me that
I was not the only one having the same problem. I tried deleting the
file from the .zip file and then innstall again, but then the error
message was
Error in zip.unpack(pkg, tmpDir) : cannot open file 'C:/P...
2007 Mar 21
1
Problem installing packages in R 2.4.1
...Kb
trying URL '
http://wand.stanford.edu/R/CRAN/bin/windows/contrib/2.4/anchors_2.0.zip'
Content type 'application/zip' length 592348 bytes
opened URL
downloaded 578Kb
Error in zip.unpack(pkg, tmpDir) : cannot open file 'C:/Program Files/R/R-
2.4.1/library/file20a84af3/rgenoud/chtml/rgenoud.chm'
>
Any help would be greatly appreciated. Thank you in advance.
--
Paul Gottemoller
Graduate Assistant
Paul Simon Public Policy Institute
1231 Lincoln Drive
Southern Illinois University
Carbondale, Illinois 62901-4501
[[alternative HTML version deleted]]