理系PC初心者のためのKNOPPIX活用法
WindowsからLinuxへの超入門
本文へジャンプ
書籍サポートページ


カットシステム社より発行された、「理系PC初心者のためのKNOPPIX活用法」に関する、著者のサポートページです。
書籍内で紹介しました、サンプルプログラムなどをテキストデータで公開しております。

ソースコード

図8.2 KWriteのTeXソース入力画面
\documentclass {jarticle}
\begin{document}
Hello TeX world.
\end{document}

図8.5 TeXソース入力が画面
\documentclass {jarticle}
\begin{document}
Hello TeX world.

$$ f(x) = a_{0} + \sum_{n=1}^\infty \left
   a_{n} cos {n\pi x \over L}
   + b_{n} sin {n \pi x \over L } \right) $$

\end{document}

図9.11 C言語サンプルソース画面
#include <stdio.h>
main()
{
   printf(“How are you?\n”);
}

図10.5 Javaのソース入力画面

public class hello {
	public static void main { String arg[] ) {
		System.out.println ( "Hello Java World." );
	}
}

図10.8 Javaのソース入力画面
public class hello{
        public static void main ( String args[] ) {
                int     i;
                int     t;
                t = 0;
                for ( i = 1; i <= 1000; i++ ) {
                        t = t + i;
                }
                System.out.println ( "t = " + t );
        }
}

図11.12 fortranサンプルソースプログラム
      program test2
        print *,"Hello fortran"
      end program

95ページ 8-5 「TeXで数式を記述してみる」の直後の数式


     


サポート情報

2009年4月10日 初版第1刷発行
ISBN 978-4-87783-205-6
2009年3月20日 サポートページ開設
著者 岡田 長治/中村 睦