\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}
図12.9 KWriteの入力文字 (C言語サンプルソース画面)
#include <stdio.h>
main()
{
printf(“How are you?\n”);
}
図12.24 Javaのソースプログラムの入力
public class hello {
public static void main { String arg[] ) {
System.out.println ( "Hello Java World." );
}
}
図12.28 Javaのソースの入力 (1から1000までの合計を行うプログラム)
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 );
}
}