title: "URL mangled by RMarkdown"
author: "Spencer Graves"
date: "2022-08-04"
output: pdf_document
knitr::opts_chunk$set(echo = TRUE)
Problem
Wikipedia has an article on Gaussian quadrature , which I can link to in RMarkdown. It also has an article on Gauss-Hermite quadrature . After I knit this to a PDF, I can link to the first, but the second fails.
Specifically, in the second case, I ask to go to:
In numerical analysis, Gauss–Hermite quadrature is a form of Gaussian quadrature for approximating the value of integrals of the following kind:
In this case
where n is the number of sample points used. The xi are the roots of the physicists' version of the Hermite polynomial Hn(x) (i = 1,2,...,n), and the associated weights wi are given by
Consider a function h(y), where the variable y is Normally distributed:
y
∼
N
...
Instead I get
https://en.wikipedia.org/wiki/Gauss/T1/textendash_Hermite_quadrature
This occurs with "output: pdf_document" but NOT with "output: html_document".
What do you suggest?
Thanks,
cderv
August 20, 2022, 12:14pm
2
Can you share the content of your Rmd file that you use to include the link ?
FAQ: How to Format R Markdown Source
system
Closed
September 10, 2022, 12:14pm
3
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed. If you have a query related to it or one of the replies, start a new topic and refer back with a link.