Posts

Showing posts from May, 2020

Add Latex to Blogger Latex with Pictures(사진으로 설명하는 Latex 추가방법2)

Image
블로거에 Latex 입히기! 이번에는 블로그의 HTML 파일을 직접 열어서 latex 관련 자바스크립트를 추가해 주는 방법입니다. In this post we show how to look into the HTML file of your blog and add Javascript to it's <head> tag 지난번에는 Layout에 들어갔는데요, 이번에는 Theme을 선택해 줍니다(다른 한국어 포스트 들은 다들 Theme을 템플릿이라고 설명하더군요). Go to "Theme" 옵션 부분을 클릭합니다. Click the three dotted option key.  "Edit HTML" 을 클릭합니다. Click "Edit HTML" 아래와 같이 <head> 태그 바로 밑에 아래의 코드를 복붙해주시고 Then add the code bellow to the line right below the <head> tag.   <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"> MathJax.Hub.Config({ extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"], jax: ["input/TeX", "output/HTML-CSS"], tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]

사진으로 설명하는 Blogger Latex 추가 방법

Image
사실은 theme에 들어가서 html 을 직접 수정하는 방법도 있지만 coding이 익숙하지 않은 경우 어려울 수 있기에, 우회할 수 있는 방법 하나를 알려드리려 합니다. 우선 Blogger 에 로그인 한 후 사이드바의 Layer에 들어갑니다. Layout 페이지에서 보면 Add Gaget이라는 상자가 보입니다.  Add Gaget을 클리하면 아래와 같은 창이 뜨는데 여기서 HTML/JavaScript 에 들어갑니다. 그러고 나면 다음과 같은 창이 뜨는데요, 여기에 아래와 같은 코드를 Content 박스에 넣어 줍니다. <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js"> MathJax.Hub.Config({ extensions: ["tex2jax.js","TeX/AMSmath.js","TeX/AMSsymbols.js"], jax: ["input/TeX", "output/HTML-CSS"], tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ], processEscapes: true }, "HTML-CSS": { availableFonts: ["TeX"] } }); </script> 그리고 Title은 아무거나 넣어주셔도 됩니다! 그러고 나면 아래와 같이 Latex 조판이 가능해진 것을 확인할 수 있습니다!! 다음 번엔 사진으로 설명하는 HTML 코드에자바 스크립트 추가 방법도

Proof of $n - \lceil \dfrac{n}{2} \rceil = \lfloor \dfrac{n}{2} \rfloor$ (Latex test - MathJax)

The key here is to divide the cases, it is not really difficult at all To proof : $n - \lceil \dfrac{n}{2} \rceil  = \lfloor \dfrac{n}{2} \rfloor$ Case 1.  $ n = 2k + 1$ $$n - \lceil \dfrac{n}{2} \rceil  = 2k + 1 - ( k+1) = \lfloor k + \dfrac{1}{2} \rfloor = k$$ Both the LHS and RHS are $k$ therefore, the equality stands true. Case 2.  $ n = 2k$ $$n - \lceil \dfrac{n}{2} \rceil  = 2k - (k) = \lfloor \dfrac{2k}{2} \rfloor  = k $$ Both the LHS and RHS are $k$ therefore, the equality stands true. Thus, we have shown  $n - \lceil \dfrac{n}{2} \rceil  = \lfloor \dfrac{n}{2} \rfloor$