2021-08-16 07:33:06 +00:00
<!doctype html> < html lang = en-au > < head >
< meta charset = utf-8 >
< meta http-equiv = content-language content = "en-AU" >
< meta name = viewport content = "width=device-width,initial-scale=1" >
< meta http-equiv = x-ua-compatible content = "ie=edge" >
< title > Math Typesetting · Congo< / title >
< meta name = title content = "Math Typesetting · Congo" >
< meta name = description content = "A brief guide to setup KaTeX" >
< link rel = canonical href = https://jpanther.github.io/Congo/samples/math-typesetting/ >
< link type = text/css rel = stylesheet href = https://jpanther.github.io/Congo/css/main.css >
< link rel = apple-touch-icon sizes = 180x180 href = https://jpanther.github.io/apple-touch-icon.png >
< link rel = icon type = image/png sizes = 32x32 href = https://jpanther.github.io/favicon-32x32.png >
< link rel = icon type = image/png sizes = 16x16 href = https://jpanther.github.io/favicon-16x16.png >
< link rel = manifest href = https://jpanther.github.io/site.webmanifest >
< meta property = "og:title" content = "Math Typesetting" >
< meta property = "og:description" content = "A brief guide to setup KaTeX" >
< meta property = "og:type" content = "article" >
< meta property = "og:url" content = "https://jpanther.github.io/Congo/samples/math-typesetting/" > < meta property = "article:section" content = "samples" >
< meta property = "article:published_time" content = "2019-03-08T00:00:00+00:00" >
< meta property = "article:modified_time" content = "2019-03-08T00:00:00+00:00" >
< meta name = twitter:card content = "summary" >
< meta name = twitter:title content = "Math Typesetting" >
< meta name = twitter:description content = "A brief guide to setup KaTeX" >
< meta itemprop = name content = "Math Typesetting" >
< meta itemprop = description content = "A brief guide to setup KaTeX" > < meta itemprop = datePublished content = "2019-03-08T00:00:00+00:00" >
< meta itemprop = dateModified content = "2019-03-08T00:00:00+00:00" >
< meta itemprop = wordCount content = "121" >
< meta itemprop = keywords content = "sample," >
< meta name = generator content = "Hugo 0.87.0" >
< meta name = author content = "Congo" >
< link href = https://twitter.com/ rel = me >
< link href = https://facebook.com/ rel = me >
< link href = https://linkedin.com/ rel = me >
< link href = https://youtube.com/ rel = me >
< / head >
< body class = "flex flex-col h-screen px-6 m-auto text-lg leading-7 bg-white text-grey-900 sm:px-14 md:px-24 lg:px-32 dark:bg-gray-800 dark:text-white max-w-7xl" > < header class = "flex justify-between py-6 font-semibold sm:py-10" >
< div >
< a class = hover:underline rel = me href = https://jpanther.github.io/Congo/ > Congo< / a >
< / div >
< nav >
< ul class = "flex flex-col list-none sm:flex-row" >
< li class = "text-right sm:mr-7 sm:last:mr-0" >
< a class = hover:underline href = /Congo/docs/ title = Documentation > Docs< / a >
< / li >
< li class = "text-right sm:mr-7 sm:last:mr-0" >
< a class = hover:underline href = /Congo/samples/ title = "Content Samples" > Samples< / a >
< / li >
< li class = "text-right sm:mr-7 sm:last:mr-0" >
< a class = hover:underline href = https://github.com/jpanther/Congo title > GitHub< / a >
< / li >
< / ul >
< / nav >
< / header >
< main class = flex-grow >
< article class = max-w-prose >
< header >
< h1 class = "mt-0 text-4xl font-extrabold" > Math Typesetting< / h1 >
< div class = "mt-8 mb-12 text-base text-gray-400 dark:text-gray-500" >
< time datetime = "2019-03-08 00:00:00 +0000 UTC" >
8 March 2019
< / time >
< span class = px-1 > · < / span >
< span title = "Reading time" >
1
min
< / span >
< / div >
< / header >
< section class = "prose dark:prose-light" >
< p > Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries.< / p >
< p > In this example we will be using < a href = https://katex.org/ > KaTeX< / a > .< / p >
< ul >
< li > Create a partial under < code > /layouts/partials/math.html< / code > < / li >
< li > Within this partial reference the < a href = https://katex.org/docs/autorender.html > Auto-render Extension< / a > or host these scripts locally.< / li >
< li > Include the partial in your templates like so:< / li >
< / ul >
< div class = highlight > < pre tabindex = 0 class = chroma > < code class = language-bash data-lang = bash > < span class = o > {{< / span > < span class = k > if< / span > or .Params.math .Site.Params.math < span class = o > }}< / span >
< span class = o > {{< / span > partial < span class = s2 > " math.html" < / span > . < span class = o > }}< / span >
< span class = o > {{< / span > end < span class = o > }}< / span >
< / code > < / pre > < / div > < ul >
< li > To enable KaTex globally set the parameter < code > math< / code > to < code > true< / code > in a project’ s configuration< / li >
< li > To enable KaTex on a per page basis include the parameter < code > math: true< / code > in content files< / li >
< / ul >
< p > < strong > Note:< / strong > Use the online reference of < a href = https://katex.org/docs/supported.html > Supported TeX Functions< / a > < / p >
< link rel = stylesheet href = https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/katex.min.css integrity = sha384-RZU/ijkSsFbcmivfdRBQDtwuwVqK7GMOw6IMvKyeWL2K5UAlyp6WonmB8m7Jd0Hn crossorigin = anonymous >
< script defer src = https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/katex.min.js integrity = sha384-pK1WpvzWVBQiP0/GjnvRxV4mOb0oxFuyRxJlk6vVw146n3egcN5C925NCP7a7BY8 crossorigin = anonymous > < / script >
< script defer src = https://cdn.jsdelivr.net/npm/katex@0.13.13/dist/contrib/auto-render.min.js integrity = sha384-vZTG03m+2yp6N6BNi5iM4rW4oIwk5DfcNdFfxkk9ZWpDriOkXX8voJBFrAO7MpVl crossorigin = anonymous onload = renderMathInElement(document.body) > < / script >
< h3 id = examples > Examples < a class = heading-anchor href = #examples aria-label = Anchor > #< / a > < / h3 >
< p >
Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\)
< / p >
< p > Block math:< / p >
< p > $$
\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } }
$$< / p >
< / section >
< footer class = pt-8 >
< div class = "flex items-center" >
2021-08-16 07:44:57 +00:00
< img class = "w-24 h-24 !mt-0 !mb-0 mr-4 rounded-full" src = https://jpanther.github.io/Congo/img/author.jpg >
2021-08-16 07:33:06 +00:00
< div >
< div class = "font-semibold leading-6 text-gray-800 dark:text-gray-300" >
Congo
< / div >
< div class = "flex flex-wrap text-gray-400 dark:text-gray-500" >
< a class = "px-1 hover:text-primary-700 dark:hover:text-primary-400" href = https://twitter.com/ target = _blank alt = Twitter rel = me > < span class = "relative inline-block align-text-bottom icon" > < svg aria-hidden = "true" focusable = "false" data-prefix = "fab" data-icon = "twitter" class = "svg-inline--fa fa-twitter fa-w-16" role = "img" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > < path fill = "currentcolor" d = "M459.37 151.716c.325 4.548.325 9.097.325 13.645.0 138.72-105.583 298.558-298.558 298.558-59.452.0-114.68-17.219-161.137-47.106 8.447.974 16.568 1.299 25.34 1.299 49.055.0 94.213-16.568 130.274-44.832-46.132-.975-84.792-31.188-98.112-72.772 6.498.974 12.995 1.624 19.818 1.624 9.421.0 18.843-1.3 27.614-3.573-48.081-9.747-84.143-51.98-84.143-102.985v-1.299c13.969 7.797 30.214 12.67 47.431 13.319-28.264-18.843-46.781-51.005-46.781-87.391.0-19.492 5.197-37.36 14.294-52.954 51.655 63.675 129.3 105.258 216.365 109.807-1.624-7.797-2.599-15.918-2.599-24.04.0-57.828 46.782-104.934 104.934-104.934 30.213.0 57.502 12.67 76.67 33.137 23.715-4.548 46.456-13.32 66.599-25.34-7.798 24.366-24.366 44.833-46.132 57.827 21.117-2.273 41.584-8.122 60.426-16.243-14.292 20.791-32.161 39.308-52.628 54.253z" / > < / svg >
< / span >
< / a >
< a class = "px-1 hover:text-primary-700 dark:hover:text-primary-400" href = https://facebook.com/ target = _blank alt = Facebook rel = me > < span class = "relative inline-block align-text-bottom icon" > < svg aria-hidden = "true" focusable = "false" data-prefix = "fab" data-icon = "facebook" class = "svg-inline--fa fa-facebook fa-w-16" role = "img" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > < path fill = "currentcolor" d = "M504 256C504 119 393 8 256 8S8 119 8 256c0 123.78 90.69 226.38 209.25 245V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14.0 55.52 4.84 55.52 4.84v61h-31.28c-30.8.0-40.41 19.12-40.41 38.73V256h68.78l-11 71.69h-57.78V501C413.31 482.38 504 379.78 504 256z" / > < / svg >
< / span >
< / a >
< a class = "px-1 hover:text-primary-700 dark:hover:text-primary-400" href = https://linkedin.com/ target = _blank alt = Linkedin rel = me > < span class = "relative inline-block align-text-bottom icon" > < svg aria-hidden = "true" focusable = "false" data-prefix = "fab" data-icon = "linkedin" class = "svg-inline--fa fa-linkedin fa-w-14" role = "img" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 448 512" > < path fill = "currentcolor" d = "M416 32H31.9C14.3 32 0 46.5.0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6.0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3.0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2.0 38.5 17.3 38.5 38.5.0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6.0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2.0 79.7 44.3 79.7 101.9V416z" / > < / svg >
< / span >
< / a >
< a class = "px-1 hover:text-primary-700 dark:hover:text-primary-400" href = https://youtube.com/ target = _blank alt = Youtube rel = me > < span class = "relative inline-block align-text-bottom icon" > < svg aria-hidden = "true" focusable = "false" data-prefix = "fab" data-icon = "youtube" class = "svg-inline--fa fa-youtube fa-w-18" role = "img" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 576 512" > < path fill = "currentcolor" d = "M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78.0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821 11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305zm-317.51 213.508V175.185l142.739 81.205-142.739 81.201z" / > < / svg >
< / span >
< / a >
< / div >
< / div >
< / div >
< div class = pt-8 >
< hr class = "border-gray-300 border-dotted dark:border-gray-600" >
< div class = "flex justify-between pt-3" >
< span >
< a class = flex href = https://jpanther.github.io/Congo/samples/rich-content/ >
< span class = mr-3 > ← < / span >
< span class = "flex flex-col" >
< span class = button__text > Rich Content< / span >
< time class = "-mt-1 text-xs text-gray-400 dark:text-gray-500" datetime = "2019-03-08 00:00:00 +0000 UTC" >
8 March 2019
< / time >
< / span >
< / a >
< / span >
< span >
< a class = "flex text-right" href = https://jpanther.github.io/Congo/samples/emoji-support/ >
< span class = "flex flex-col" >
< span > Emoji Support< / span >
< time class = "-mt-1 text-xs text-gray-400 dark:text-gray-500" datetime = "2019-03-08 00:00:00 +0000 UTC" >
8 March 2019
< / time >
< / span >
< span class = ml-3 > → < / span >
< / a >
< / span >
< / div >
< / div >
< / footer >
< / article >
< / main > < footer class = "py-10 text-sm" >
< p class = "text-gray-400 dark:text-gray-500" >
©
2021
Congo
< / p >
< p class = "text-xs text-gray-300 dark:text-gray-600" >
Powered by
< a class = hover:underline href = https://gohugo.io/ target = _blank > Hugo< / a >
&
< a class = hover:underline href = https://git.io/hugo-congo target = _blank > Congo< / a >
< / p >
< / footer >
< / body >
< / html >