2014년 11월 13일 목요일

Google Blogger에 Sage Cell 연결하기

Google Blogger에 Sage Cell 연결하기


우선 <head>...</head> 안에 다음 구문을 삽입해 준다.



<script src="https://sagecell.sagemath.org/static/jquery.min.js"></script>
<script src="https://sagecell.sagemath.org/static/embedded_sagecell.js"></script>
<script>$(function () {
    // Make the div with id 'mycell' a Sage cell
    sagecell.makeSagecell({inputLocation:  '#mycell',
                           template:       sagecell.templates.minimal,
                           evalButtonText: 'Activate'});
    // Make *any* div with class 'compute' a Sage cell
    sagecell.makeSagecell({inputLocation: 'div.compute',
                           evalButtonText: 'Evaluate'});
    });
</script>



그리고 본문 글을 쓸 때 아래와 같은 형식을 취해 준다.



<div class="compute"><script type="text/x-sage">
    Sage 코드 삽입
</script></div>



이런 식으로 아래와 같은 코드를 삽입해 본다.
$y=sin(x)$ 형태의 Implicit Function Plot 명령이다.


<div class="compute"><script type="text/x-sage">
    plot(sin(x), (x, 0, 2*pi), figsize=5, aspect_ratio=1)
</script></div>



그럼 아래와 같은 결과를 얻을 수 있다.

Evaluate 버튼을 눌러보면 연산이 수행되어 결과가 그려진다.

이번에는 하트 한 번 그려보자.


이렇게 그린 다음 이렇게 써먹는다.



댓글 없음:

댓글 쓰기