r7.dvi

Size: px
Start display at page:

Download "r7.dvi"

Transcription

1 11 5 Web ? 50 1 ( ) 92.2 cm 1: 1? 1

2 ( ) ( 1) 1 / ( ) 1.2 AD DA AD ( = ) (?) DA ( = ) AD/DA mm! 2: 165mm 164.5mm 165.5mm 0.1mm? 0.01mm? AD ( 2) 3 2

3 : AD DA DA 3 ( ) ( )? ( ) ( ) : PCM( ) / ( ) CD 44KHz(1 44,000 ) 2 PC 8 16 (12 ) ,536 2 XKHz 2XKHz 20KHz 22KHz 44KHz 3

4 16 (CD 16 ) 5 (300 ) 44KHz 16? , = 422,400,000bits (8 ) 53 6 (1 24 ) 144,000,000 : (8KHz 64KHz ) ( ) ( ) ( / ) : PCM WAV QuickTime WAV Apple MP3 MPEG Layer MP3 CD1 50 CD DRM(Digital Rights Management) 1 CCCD( CD)? DRM PC 1 1 MIDI ( ) 4

5 2.2 C KHz (PCM ) lame MP3 madplay MP3 a : /* gensound.c --- generate sound wave */ #include <math.h> #include <stdio.h> #define SEC #define D double t[100]; unsigned short a[2]; /* n --- t 1! (0 99) hz --- Hz 440 vol --- vol 15000! pos */ wave(int n, double hz, double vol, double pos) { double x = sin(t[n] += 2*3.1416*hz/SEC); a[0] += (int)(vol*pos*x); a[1] += (int)(vol*(1-pos)*x); main() { int i; for(i = 0; i < 10*SEC; ++i) { /* 10 */ a[0] = a[1] = 15000; /* */ wave(0, 440, 1000, 0.5); if(i > 2*SEC) wave(1, 440*D*D*D*D, 1000, 0.2); if(i > 4*SEC) wave(2, 440*D*D*D*D*D*D*D, 1200, 0.8); if(i > 6*SEC) wave(3, 880, 800, 0.5); fwrite(a, sizeof(a), 1, stdout); /* */ sin ( ) 100 l = v p sinθ,r = v (1 p) sinθ l r v p (0.5 ) θ( ) 440Hz ( π i 0 1 i 1 1tick( ) 44KHz 44, π θ 100tick 2π 1tick 100 5

6 ? ( ) ? D D D D D D D D D D D D = 2 D 440 D 1 2 D 4 1 t 1 θ θ wave a[0] a[1] ( ) main i 0 440,000 ( 440,000tick 10 ) tick a[0] a[1] 15000( ) wave 440Hz if(i > 2*SEC && i < 3*SEC) wave(...) : % gcc gensound.c -lm sin -lm % a.out lame -rx - - madplay - lame madplay ( ) ( CRT ) AD (pixel) / 3 4 D = e ln2 12 6

7 4: ( ) (Red) (Green) (Blue) (RGB ) RGB 8 ( ) 1 24 (3 ) 24 5 RGB 3 RGB 3 6 RGB 3.2 RGB ( ) ( ) Unix xpaint( 5) gimp( gimp-2.3 xv ImageMagick : : 5 CSS rgb(,, ) RGB ( ) 7

8 5: xpaint ( ) ( ) 7 ( ) ( ) BMP(Windows Bitmap) Windows PBM(Portable Bitmap) Unix GIF WWW 256 JPEG WWW GIF 8 PNG WWW GIF 256 JPEG Web 3 (GIF JPEG PNG) ( ) 7 8 JPEG 8

9 6: 7: kdraw 3.3 / ( ) ( 6) 3 Unix tgif kdraw( 7) : / 9

10 9 PostScript (TeX ) PostScript PDF(Portable Document Format) PostScript WWW SVG(Scalable Vector Graphics) SVG MSIE SVG Web 3.4 RGB PPM : /* genimage.c --- create color PPM image */ #include <stdio.h> #define WIDTH 300 #define HEIGHT 200 struct { unsigned char r,g,b; img[height][width]; main() { makeimage(); printf("p6 %d %d 255\n", WIDTH, HEIGHT); fwrite(img, sizeof(img), 1, stdout); pset(int x, int y, int r, int g, int b) { if(x >= 0 && x < WIDTH && y >= 0 && y < HEIGHT) { img[y][x].r = r; img[y][x].g = g; img[y][x].b = b; makeimage() { int x, y, i; for(x = 0; x < WIDTH; ++x) { for(y = 0; y < HEIGHT; ++y) { pset(x, y, 150, 200, 100); for(i = 0; i < 100; ++i) { pset(i, i, 255, 0, 0); 9 ( ) ( ) 10

11 8: WIDTH HEIGHT struct... img buf 1 r g b img main() makeimage() PPM ( / ) PPM img pset() x y OK img RGB makeimage() x 0 WIDTH y 0 HEIGHT (250,200,100) i (0,0),(1,1),... (99,99) ( ) genimage.c : gcc genimage.c a.out >test.ppm display test.ppm 8 display xv PPM RGB 3.5 PostScript PostScript PostScript %!PS-Adobe-2.0 PostScript %%BoundingBox: x300 ( ) showpage 11

12 newpath X Y moveto (X,Y ) X Y lineto (X,Y ) stroke lineto W setlinewidth Wpt ( 9) %!PS-Adobe-2.0 %%BoundingBox: newpath moveto lineto lineto lineto lineto stroke showpage 9: PostScript? T x T y translate X T x Y T y S x S y scale X S x Y S y D rotate ( )D N { repeat N 5 ( 10) %!PS-Adobe-2.0 %%BoundingBox: { newpath moveto lineto lineto lineto lineto stroke translate repeat showpage ( ) 2 12

13 10: / findfont S scalefont setfont ( )S X Y moveto ( ) show (X,Y ) show \( \) This is Courier-Bold 12pt. Times-Roman 36pt. This is Helvetica 24pt. 11: ( 11) G setgray ( ) R G B setrgbcolor RGB ( ) %!PS-Adobe-2.0 %%BoundingBox: /Helvetica findfont 24 scalefont setfont moveto (This is Helvetica 24pt.) show /Times-Roman findfont 36 scalefont setfont moveto (Times\(-Roman\) 36pt.) show /Courier-Bold findfont 12 scalefont setfont moveto (This is Courier-Bold 12pt.) show 13

14 0.5 setgray /Ryumin-Light-EUC-H findfont 40 scalefont setfont moveto ( ) show 5 rotate setrgbcolor /GothicBBB-Medium-EUC-H findfont 48 scalefont setfont moveto ( ) show showpage EUC 10 Emacs Ctrl-X RET f euc-jp RET EUC PostScript PostScript 3.6 TeX OPTION TeX 1. TeX Encapsulated PostScript (%%BoundingBox: PostScript ) PostScript convert test.ppm fig1.ps convert \documentclass \begin{document : \usepackage{graphicx 3. : \begin{center \includegraphics[scale=0.5]{fig1.ps \end{center 0.5 fig1.ps PS scale width=8cm platex platex xdvi dvips PS 10 EUC 11 PostScript EPS ps2eps EPS 14

15 4 3D OPTION 3 (3D) 3D 2D(2 )? 3D D 3 3D 3D 2 : 3 12 ( ) 12: ( lay tracing) 3 ( ) ( 13) ( ) D 15

16 13: 4.2 OPTION 1 ( ) ( ) ( 1 ) ( ) 1/20 ( ) MPEG QuickTime WindowsVideo(WMV) ( ) / 3D 3 ( ) 3 3 ( ) ( ) / PlayStation( ) 3 16

17 5 Web : SVG canvas 5.1 Web HTML5 Web HTML4.01 HTML W3C(WWW Consortium) HTML XML(eXtensible Markup Language) XML HTML " " <x> </x> <x /> XML XML W3C XML HTML XML 4.01 XML XHTML 1.0 XHTML 1.0 HTML 4.01 W3C XML XHTML 1.1 XHTML Opera Mozilla Apple WHATWG(Web Hypertext Applicaiton Technology Working Group) HTML W3C 2007 WHATWG HTML HTML5 XML SVG canvas HTML5 <svg>...</svg> <canvas>...</canvas> Mozilla ( ) 5.2 SVG SVG(Scalable Vector Graphics) XML HTML XML W3C Mozilla SVG Mozilla HTML <svg> </svg> SVG object 17

18 <!DOCTYPE html> <html> <head> <title>svg example</title> </head> <body> <object width="500" height="400" data="test1.svg" type="image/svg+xml"> (sorry, cannot display SVG on your browther...) </object> </body> </html> 1 DOCTYPE HTML HTML5 ( HTML5 HTML 4.01 ) object <object width=" " height=" " data="url" type=" "> </object> URL (MIME ) SVG data type img/svg+xml (XML SVG) SVG SVG SVG img ( ) test1.svg SVG <svg width="500" height="400" xmlns=" </svg> SVG <svg>...</svg> XML XML xmlns="url" SVG URL object SVG <rect x="x" y="y" width="w" height="h" /> XY ( rx=" " ry=" " ) <circle cx="x" cy="y" r="r" /> XY <ellipse cx="x" cy="y" rx="r x " ry="r y /> XY <line x1="x 1 y1="y 1 " x2="x 2 " y2="y 2 " /> 2 XY polygon points="x 1 Y 1 X n Y n " /> N XY 18

19 polyline points="x 1 Y 1 X n Y n " /> N XY path d=" " PostScript path M x y newpath x y moveto L x y x y lineto Z closepath m l rmoveto rlineto <text x="x" y="y"> </text> <g>...</g> style ( HTML CSS ) (g ) stroke: stroke-width: stroke-opacity: fill: none fill-opacity: font-family font-size font-weight font-style text-decoratin text HTML+CSS PostScript / / transform 1 translate(x,y) (X,Y ) scale(s) S 2 X Y rotate(d) rotate(d,x,y) D XY ( PostScript ) ( 14) test1.svg HTML <svg width="500" height="400" xmlns=" <rect x="10" y="10" width="60" height="40" style="fill: pink" /> <rect x="80" y="10" width="60" height="40" rx="10" ry="10" style="fill: none; stroke: blue; stroke-width: 4px" /> <g style="fill: none; stroke: green; stroke-width: 4px"> <circle cx="180" cy="50" r="25" /> <ellipse cx="260" cy="50" rx="40" ry="20" /> <polygon points=" " /> <path d="m l l l Z" /> </g> <g style="font-size: 40px"> <text x="10" y="150">this</text> <text x="120" y="150" transform="rotate(60,120,150)">is</text> <text x="100" y="90" transform="scale(2.0)">a pen</text> </g> </svg> 19

20 This is 60 a pen 14: SVG SVG HTML DOM JavaScript 1 <svg width="500" height="200" xmlns=" <script type="text/javascript"><![cdata[ function change() { var r1 = document.getelementbyid( r1 ); r1.setattribute("width", 80); r1.setattribute("height", 100); ]]></script> <rect x="10" y="10" width="60" height="40" style="fill: pink" onclick="change()" /> <rect id="r1" x="80" y="10" width="60" height="40" rx="10" ry="10" style="fill: none; stroke: blue; stroke-width: 4px" /> </svg> onclick JavaScript change() document.getelementbyid() id="r1" 2 2 setattribute() 20

21 JavaScript XML CDATA ( XML 5.3 canvas OPTION SVG W3C XML canvas WHATWG JavaScript ( ) Web ( 1 <!DOCTYPE html> <html> <head> <title>canvas example</title> <script type="text/javascript"> var canvas, ctx; function init() { canvas = document.getelementbyid( c0 ); ctx = canvas.getcontext( 2d ); ctx.fillstyle = rgb(200,220,255) ; ctx.fillrect(20, 20, 80, 60); </script> </head> <body onload="init()"> <canvas id="c0" width="400" height="300"> (canvas not supported on your browser...) </canvas> </body> </html> Mozilla canvas XML JavaScript init() (1) HTML canvas document.getelementbyid() (2) canvas getcontext( 2d ) ( 2 2d ) PostScript SVG fillrect(x, Y, W, H) strokerect(x, Y, W, H) clearrect(x, Y, W, H) ( ) filltext(, X, Y) 21

22 beginpath() moveto(x, Y) lineto(x, Y) arc(x, Y, R, D 1, D 2, B) closepath() stroke() fill() PostScript arc XY ( ) true false ( ) drawimage(img, X, Y) drawimage(img, X, Y, W, H) ( ) ( img ) canvas API( ) PostScript fillstyle strokestyle linewidth globalalpha 14 font 20px Times New Roman translate(x, Y) rotate(r) scale(s x, S y ) save() restore() ( 15) <!DOCTYPE html> <html> <head> <title>canvas example</title> <script type="text/javascript"> var canvas, ctx; function init() { canvas = document.getelementbyid( c0 ); ctx = canvas.getcontext( 2d ); ctx.fillstyle = rgb(200,220,255) ; ctx.fillrect(20, 20, 80, 60); addeventlistener( mousedown, mousedown, false); function mousedown(evt) { ctx.fillstyle = rgb(255,0,0) ; ctx.beginpath(); ctx.arc(evt.layerx, evt.layery, 10, 0, Math.PI*2, true); ctx.fill(); </script> </head> <body onload="init()"> <canvas id="c0" width="400" height="300" style="position:relative"> 14 rgba(r,g,b,a) A

23 (canvas not supported on your browser...) </canvas> </body> </html> 15: canvas 6 HTML CSS 5-1. gensound.c 5-2. gensound.c 5-3. genimage.c 5-4. genimage.c 23

24 5-5. PostScript a. b. ( ) c SVG canvas ( ) 7 ( ) 5 ( 10 ) 24

07_経営論集2010 小松先生.indd

07_経営論集2010 小松先生.indd 19 1 2009 105 123 Web Web Web Web World Wide Web WWW OS 1990 WWW Web HTML CSS JavaScript Web 1 WWW 2 Web Web 3 Web 4 HTML5 5 Web Web 3 1970 WWW HTML Web WWW WWW WWW WWW WWW 105 Web WWW 2 Web 1 1 NTT NTT

More information

Level1_ key

Level1_ key HTML5 1 2019 8 1.5 API ( ) 1.5.1 API 1.5.2 API 1.5.3 API 1.5.4 API!2 HTML5 Web HTML5 Web Web HTML5 Web Web Web Web Web HTML5!3 Web HTML5 Web HTML Web Web Web API Web HTML Web Web!4 1 2 HTML/HTML5 HTML5

More information

April, 2008 iii v 1 1 1.1.................................. 1 1.2 3.............................. 3 1.3 3.......................... 3 1.4................................... 4 1.5 HSV/HSB........................

More information

1.1. jquery 1 jquery jcanvas jquery javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web jq

1.1. jquery 1 jquery jcanvas jquery javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web jq 1 1.1. jquery 1 jquery jcanvas jquery javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web jquery jcanvas jquery jcanvas (jquery )

More information

1.1. jquery 1 jquery jcanvas jquery javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web jq

1.1. jquery 1 jquery jcanvas jquery javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web jq 1 1.1. jquery 1 jquery jcanvas jquery javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web jquery jcanvas jquery jcanvas (jquery )

More information

G-XML

G-XML G-XML PreSerV for WebG-XML G-XML i 1... 3 1.1 G-XML... 3 1.2... 3 1.3... 4 1.4... 5 2 G-XML... 6 2.1... 6 2.2... 8 2.2.1... 9 2.2.2...13 2.2.3...14 2.2.4...16 2.2.5...16 2.3...17 2.3.2...17 2.3.3...17

More information

コンピュータグラフィックス - 第4回 色彩の表現

コンピュータグラフィックス - 第4回 色彩の表現 .. 4 2013 10 9 ( ) 2013 10 9 1 / 22 3 3 3 ( ) 2013 10 9 2 / 22 380 nm 780 nm 1 nm = 10 9 m ( ) 2013 10 9 3 / 22 3 3 (S M L ) 3 3 3 ( ) 2013 10 9 4 / 22 加法混色 光の 3 原色を組み合わせることで 様々な色を表現できる 光を重ねて別の色を作ることを加法混色と呼ぶ

More information

2 PostScript PostScript (token) 437 == 437 == PostScript PostScript 437 == PostScript (operator) 437 == == ==

2 PostScript PostScript (token) 437 == 437 == PostScript PostScript 437 == PostScript (operator) 437 == == == PostScript version 1.03 2003 1 24 Copyright c 2000 2003 Daikoku Manabu 1 PostScript 1.1 PostScript PostScript PostScript (page description language) PostScript Adobe Systems Incorporated PostScript PostScript

More information

( )$("canvas").drawarc({strokestyle:"red", x:100, y:100, radius:20, start:0, end:360); drawline(x1:, y1:,... xn:, yn:) drawline n 2 n 3 x1: y1: xn: yn

( )$(canvas).drawarc({strokestyle:red, x:100, y:100, radius:20, start:0, end:360); drawline(x1:, y1:,... xn:, yn:) drawline n 2 n 3 x1: y1: xn: yn 0.1. jquaery jcanvas jquery John Resig OSS JavaScript Web JavaScript jquery jquery 1 0.2. jcanvas jcanvas 0.3. jcanvas HTML5 Canvas Canvas jcanvas jcanvas jquery Canvas API jcanvas Grouping Layer jcanvas

More information

1.1. jquery 1 jquery jcanvas jquery JavaScript jquery 1. / jquery Googlr Chrome Eddge(Enternet Explorer) 2. jquery JavaScript HTML div JS jqu

1.1. jquery 1 jquery jcanvas jquery JavaScript jquery 1. / jquery Googlr Chrome Eddge(Enternet Explorer) 2. jquery JavaScript HTML div JS jqu 1 1.1. jquery 1 jquery jcanvas jquery JavaScript 1.1.0.1. jquery 1. / jquery Googlr Chrome Eddge(Enternet Explorer) 2. jquery JavaScript HTML div JS jquery! div ...

More information

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4..

1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4.. WWW 17 2 10 1 1 2 Unix 1 3 4 4 SVG 6 4.1 SVG................................... 6 4.2 SVG......................... 6 4.3 SVG.............................. 7 4.4................................. 8 4.5...........................

More information

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif

6 Tgif William Chia-Wei Chang tgif 3.0 pixmap URL Tgif 6.1: Tgif 6 Tgif 121 6.1 Tgif............................ 122 6.2..................... 123 6.2.1...................... 126 6.2.2 Dash, Type, Style, Width.......... 127 6.2.3 Pen, Fill............. 128 6.2.4 Text......................

More information

1.1. jquery 1 jquery jcanvas javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web Web jquer

1.1. jquery 1 jquery jcanvas javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web Web jquer 1 1.1. jquery 1 jquery jcanvas javascript jquery JavaScript jquery $() JavaScript JavaScript jquery Googlr Chrome Eddge(Enternet Explorer) Web Web jquery jcanvas jquery jcanvas 1.2. jcanvas HTML5 Canvas

More information

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML

World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML Web 工学博士大堀隆文 博士 ( 工学 ) 木下正博 共著 World Wide Web =WWW Web ipad Web Web HTML hyper text markup language CSS cascading style sheet Web Web HTML CSS HTML ii HTML CSS CSS HTML HTML HTML HTML Eclipse Eclipse Eclipse

More information

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID 10 10 10.1 1. 2. 3. HTML(HyperText Markup Language) Web [ ][ ] HTML Web HTML HTML Web HTML ~b08a001/www/ ( ) ~b08a001/www-local/ ( ) html ( ) 10.2 WWW WWW-local b08a001 ~b08a001/www/ ~b08a001/www-local/

More information

経営論集2011_07_小松先生.indd

経営論集2011_07_小松先生.indd 20 1 2010 103 125 HTML+CSS HTML CSS CMS Web CMS CMS CMS CMS DreamWeaver Web Web CMS Web Web CSS Web Eclipse HTML CSS Web Web HTML CSS Web HTML CSS Web HTML CSS Web 1 Web Web HTML Web 103 HTML+CSS Web HTML

More information

GIMP

GIMP (JavaScript ) Javascript 2 1. 2 2. 52 3. A, K, Q, J, 10, 9, 8, 7, 6, 5, 4, 3, 2 4. 13 5. 6. 7. 8. 9. 13 10. 11. 12. JavaScript.png 1 GIMP 200 300 2 var ctx; function init() { var

More information

2.HTML5 の可能性 次の図はインターネットの普及にともなう出来事をまとめた図の再掲である この図を見ると W3C が HTML WG を設置した 2007 年は iphone が発売され Android OS が公開されたスマートフォン元年で これ以降 タブレットやカーナビ フォトスタンドなど

2.HTML5 の可能性 次の図はインターネットの普及にともなう出来事をまとめた図の再掲である この図を見ると W3C が HTML WG を設置した 2007 年は iphone が発売され Android OS が公開されたスマートフォン元年で これ以降 タブレットやカーナビ フォトスタンドなど Vol.10 HTML5 とシステム開発 1.HTML5 とは ウェブを記述する HTML(HyperText Markup Language) の規格は 1994 年以来 W3C(World Wide Web Consortium) によって行われている W3C は 1997 年の HTML4.01 の策定の後 HTML を文書としてさらに拡張性のある XML(Extensible MarkupLanguage)

More information

main.dvi

main.dvi A PostScript y 1997 1 Silicon Graphics i-station ( vhsgi) 1 i-station LaserMaster DisplayMaker-J DisplayMaker-J A dpi( ) PostScript 2 PostScript DisplayMaker-J i-station i-station ( AVS) PostScript i-station

More information

GIMP

GIMP (JavaScript ) Javascript 1. 2 2. 3. A, K, Q, J, 10, 9, 8, 7, 4. 5. 6. 7. J Q K A 8. 9. 6 10. 11. 12. 13. A- K- Q- J- 10-9 8 7 JavaScript.png 1 GIMP 200 300 2 var ctx; function init()

More information

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6.....................

1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6..................... web 0448039 1 1 1............................ 1 2.............. 1 3................... 1 4...................... 1 5 Web................. 2 6...................... 3 7 HTML CSS.................... 3 8....................

More information

Q&A集

Q&A集 MapViewer & ver.2 EWEB-3C-N055 PreSerV for Web MapViewer & i 1... 1 1.1... 1 1.2... 2 1.3... 3 1.4... 4 1.5... 5 1.6... 6 1.7... 7 1.8... 8 1.9... 9 1.10...11 1.11...12 1.12...13 1.13...14 1.14...15 1.15...16

More information

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.

1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2. 1 1 1............................ 1 2...................... 1 3..................... 2 4................... 2 2 4 1 CSS.......................... 4 2.......................... 4 3......................

More information

untitled

untitled 2007 IT G Google Map API WEB2.0 2007 8 23 GoogleMapAPI GoogleMapAPI Google Web URL XHTML JavaScript GoogleMAP LHACA FFFTP TeraPad Haruhiro Unno Japan Electronics College 1 GoogleMapAPI Web Google GMail

More information

Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheet

Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheet 2012 Homepage HTML+CSS Flash JavaScript Homepage Homepage Homepage Homepage Web HTML Hyper Text Markup Language XHTML XHTML HTML5 CSS Cascading Style Sheets CSS2 CSS3 Web Web2.0 Web3.0 Web IT Web Homepage

More information

untitled

untitled Web HTMLXHTML CSS JavaScript CGI World Wide Web XHTML 240px 480px CSS ECMAScriptJavaScript+ BinaryTable ES TR-B13 /ES// CGI B24 1 4 (XHTML) 5 (XHTML) TR-B15 BS 2 TR-B15 CSBS 2 TR-B14 A 23 TR-B14 B TR-B14

More information

r08.dvi

r08.dvi 19 8 ( ) 019.4.0 1 1.1 (linked list) ( ) next ( 1) (head) (tail) ( ) top head tail head data next 1: NULL nil ( ) NULL ( NULL ) ( 1 ) (double linked list ) ( ) 1 next 1 prev 1 head cur tail head cur prev

More information

27短01研01斉藤.indd

27短01研01斉藤.indd WordPress を用いたホームページ作成 Making a homepage using the WordPress 斎藤敏之 Toshiyuki SAITOH キーワード 1. はじめに WordPress WordPress PC PC WordPress HTML CSS HTML CSS WordPress 2.HTMLとCSSの基礎 HTML CSS World Wide Web Consortium

More information

ohp08.dvi

ohp08.dvi 19 8 ( ) 2019.4.20 1 (linked list) ( ) next ( 1) (head) (tail) ( ) top head tail head data next 1: 2 (2) NULL nil ( ) NULL ( NULL ) ( 1 ) (double linked list ) ( 2) 3 (3) head cur tail head cur prev data

More information

r6.dvi

r6.dvi 13 1 WYSIWYG/ 2013.5.21 1 WYSIWYG/ (LaTeX HTML+CSS ) 2 Web 3 ( GUI) 4 Web (1) 5 Web (2) 1 1.1 ( ) ( ) 1 1: / ( 1) ( ) ( ) 1 1 ( 2) / (text editor) Emacs Windows Mac OS X Unix ( ) (script) 2: 1.2??? 1 (

More information

ch31.dvi

ch31.dvi 1 1 1.1 1.1.1 ( ) ( 1.1 ): [ ] [ ] CPU[ + ] [ ] CPU( ) ( 1 2 1 1.1: ( 1.1 ): ( ) [ ] ( )[ ] + ( ) (+ ) ( ) ( ) 1.1. 3 1.2: ( ) ( ) ( 1.2) 4 1 1.3: 120m/ (432km/h) 0.5 2m/ 1 ( 1 ) ( ) ( ) ( 1.3) 1.1. 5

More information

山梨県ホームページ作成ガイドライン

山梨県ホームページ作成ガイドライン 17 7 ...1...4...4...4...4...5...5 W3C...5...6...6...6...7...8...8...10...10...10... 11...12...12...13...13...13...14...14...14...15...15...16...16...16...16...16...17...18 15 (2003 ) 69.7 81.1 43.6 19.6

More information

gs-cjk project gs: Ghostscript PostScript/PDF AFPL Ghostscript GNU Ghostscript c: Chinese j: Japanese k: Korean gs-cjk: A

gs-cjk project gs: Ghostscript PostScript/PDF AFPL Ghostscript GNU Ghostscript c: Chinese j: Japanese k: Korean gs-cjk:  A A Guide to gs-cjk Project taiji@aihara.co.jp A Guide to gs-cjk Project p.1/63 gs-cjk project gs: Ghostscript PostScript/PDF AFPL Ghostscript GNU Ghostscript c: Chinese j: Japanese k: Korean gs-cjk: http://www.gyve.org/gs-cjk/

More information

( )

( ) 2016 13H018 1 1 2 2 3 4 3.1............................................... 4 3.2 ( ).................................... 5 4 6 4.1........................................ 6 4.2..................... 6 5

More information

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1

6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 1 6 (1) (2) HTML (3) PDF Copy&Paste 1 Web 1 Web Web 1 Web HTML 6 2 s µ µµµ µµµµ µ µ h µs µ µµµµ µ µ µ s mµµµµµ µµµ µµ µ u m µmµµµµµ µµ µ µ µ µ µ µ µ µ s 1 6 3 1.1 HTML Web HTML(Hyper Text Markup Language)

More information

B 20 Web

B 20 Web B 20 Web 0753018 21 1 29 1 1 6 2 8 3 UI 10 3.1........................ 10 3.2 Web............ 11 3.3......... 12 4 UI 14 4.1 Web....................... 15 4.2 Web........... 16 4.3 Web....................

More information

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2

JavaScript 1.! DOM Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 JavaScript (2) 1 JavaScript 1.! 1. 2. 3. DOM 4. 2. 3. Ajax Shelley Powers,, JavaScript David Flanagan, JavaScript 2 (1) var a; a = 8; a = 3 + 4; a = 8 3; a = 8 * 2; a = 8 / 2; a = 8 % 3; 1 a++; ++a; (++

More information

Vol.56 No (Mar. 2015) Canvas SVG HTML Web Viewport Library UML Canvas SVG 1,000 HTML SVG Viewport Library Viewport Library HTML HTML Web H

Vol.56 No (Mar. 2015) Canvas SVG HTML Web Viewport Library UML Canvas SVG 1,000 HTML SVG Viewport Library Viewport Library HTML HTML Web H Vol.56 No.3 1039 1048 (Mar. 2015) Web 1,a) 1,b) 2014 6 30, 2014 10 8 HTML5 Web HTML5 HTML Canvas SVG HTML Canvas SVG Web Viewport Library Viewport Library HTML SVG Viewport Library Viewport Library AssureNote

More information

L A TEX? Word Word Word Word WYSIWYG T E X by Donald Knuth L A T E X by Leslie Lamport L A T E X 2ε L A T E X 2ε, pt E X, pl A T E X LATEX p.2/27

L A TEX? Word Word Word Word WYSIWYG T E X by Donald Knuth L A T E X by Leslie Lamport L A T E X 2ε L A T E X 2ε, pt E X, pl A T E X LATEX p.2/27 L A TEX 2007 2007 10 5 ( ) 338 8570 255 Tel: 048 858 3577, Fax : 048 858 3716 Email: tohru@mail.saitama-u.ac.jp URL: http://www.nls.ics.saitama-u.ac.jp/ tohru/ LATEX p.1/27 L A TEX? Word Word Word Word

More information

6/ Kageyama (Kobe Univ.) / 39

6/ Kageyama (Kobe Univ.) / 39 DOM API 2015 2015.06.02 Kageyama (Kobe Univ.) 2015.06.02 1 / 39 6/9 1 6 9 2 Kageyama (Kobe Univ.) 2015.06.02 2 / 39 WebGL WebGL Kageyama (Kobe Univ.) 2015.06.02 3 / 39 WebGL canvas.getcontext() WebGLRenderingContext

More information

r6.dvi

r6.dvi 14 1 WYSIWYG/ 2014.5.27 1 WYSIWYG/ (LaTeX HTML+CSS ) 2 Web 3 ( GUI) 4 Web (1) 5 Web (2) 1 1.1 ( ) ( ) 1 1: / ( 1) ( ) ( ) 1 1 ( 2) / (text editor) Emacs Windows Mac OS X Unix ( ) (script) 2: 1.2??? 1 (

More information

untitled

untitled Ajax Web Ajax http://www.openspc2.org/javascript/ajax/ajax_stu dy/index.html Life is beautiful Ajax http://satoshi.blogs.com/life/2005/06/ajax.html Ajax Ajax Asynchronous JavaScript + XML JavaScript XML

More information

JavaScript の使い方

JavaScript の使い方 JavaScript Release10.5 JavaScript NXJ JavaScript JavaScript JavaScript 2 JavaScript JavaScript JavaScript NXJ JavaScript 1: JavaScript 2: JavaScript 3: JavaScript 4: 1 1: JavaScript JavaScript NXJ Static

More information

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3...................

1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3................... 0448051 1 1 1........................... 1 2.............................. 1 2 2 1........................... 2 2...................... 3 3.................... 4 4........................ 6 5...........................

More information

PowerPoint プレゼンテーション

PowerPoint プレゼンテーション 3 Webデザイナーに求められる知識 優秀な HTML, CSS, 画像編集, JavaScript, jquery, XML, 色 彩理論, LL, データベース, SEO, SMO, EFO, コピーラ イティング, テキストライティング, イラストレー ション, Flash, ディレクション能力, プロジェクトマ ネジメント, Logo作成, Typography, サーバ管理, PHP, Perl,

More information

1

1 ...1...37 1 HTML4.01 Transitional Frameset DOCTYPE 5.1.a 2 Windows Shift_JIS Linux Unix EUC jp meta 5.1.a 3 5.1.a JIS cm cc kg alt 4 5.4.a 5.4.a 5 alt alt alt alt alt alt="" alt 6 5.4.b 5.4.b 7 8 5.3.a

More information

WebGL WebGL DOM Kageyama (Kobe Univ.) Visualization / 39

WebGL WebGL DOM Kageyama (Kobe Univ.) Visualization / 39 WebGL DOM API 2014.05.27 X021 2014 Kageyama (Kobe Univ.) Visualization 2014.05.27 1 / 39 WebGL WebGL DOM Kageyama (Kobe Univ.) Visualization 2014.05.27 2 / 39 WebGL WebGL Kageyama (Kobe Univ.) Visualization

More information

インターネットマガジン2001年9月号―INTERNET magazine No.80

インターネットマガジン2001年9月号―INTERNET magazine No.80 +CD-ROM Å 5 M0.9. A N S W E R function calc () { t = ocument.getelementbyi("tboy"); for(i = 0; i < t.rows.length; i++) { win = Number(t.rows[i].cells[3].firstChil.noeValue); lost = Number(t.rows[i].cells[].firstChil.noeValue);

More information

新しいイテレーション型開発

新しいイテレーション型開発 2 XAML WPF Windows Presentation Foundation 4 / 4 5 Silverlight 5 XAML 6 6 XAML 6 6 7 8 8 9 XAML 9 XAML 12 12 / / 13 / 14 15 XAML 15 Expression Blend 15 Visual Studio 2008 16 XAML 16 Microsoft Expression

More information

manual.dvi

manual.dvi oscommerce 2002 9 6 oscommerce oscommerce 2.2 1 1 1.1................................................. 1 1.1.1......................................... 1 1.2.................................................

More information

Microsoft PowerPoint _1a-HTML.pptx

Microsoft PowerPoint _1a-HTML.pptx HTML 5 の設計思想 誰もが自由に使い続けることができるオープンな Web 特定企業が定めた仕様 (API) や技術 ( プラグイン ) に頼らない 例 : アドビの Flash, マイクロソフトの Silverlight HTML5 に追加された新しい要素 ( タグ ) video, audio 要素 ( 動画や音声を再生する ) canvas 要素 ( ビットマップグラフィックスの表示 )

More information

1 JIS X 8341-3:2016 WCAG2.0 http://waic.jp/docs/wcag2/understanding.html WCAG2.0 http://waic.jp/docs/wcag2/techs.html 2 ... 1... 3... 6 1.1... 6 1.2... 7... 8 1.1.1... 8 1.2.1... 13 1.2.2... 14 1.2.3...

More information

paper.pdf

paper.pdf Cop: Web 1,a) 1,b) GUI, UI,,., GUI, Java Swing., Web HTML CSS,. CSS,, CSS,.,, HTML CSS Cop. Cop, JavaScript,,. Cop, Web,. Web, HTML, CSS, JavaScript, 1., GUI, Web., HTML CSS (UI), JavaScript, Web GUI.

More information

388-356697252-2.pdf

388-356697252-2.pdf 専修大学 ネットワーク情報学部 2012年度 特殊演習 (Webプログラミング) 新居雅行 / Masayuki Nii 2 HTML/CSS 2012 4 23 1 2-1 Web 2 2-1 80 SSL Apache WindowsIIS Internet Information Server HTTP HyperText Transfer Protocol HTML HTML 1 1 [ URI]

More information

EPSON PS Tools HTMLヘルプ <Macintosh版>

EPSON PS Tools HTMLヘルプ <Macintosh版> Rev. LP-9800CPL EPSON PS Tools NPD0892 00 EPSON PS Tools... 1... 1 EPSON PS Tools... 2 EPSON PS Tools... 4... 4... 6... 7... 9... 11... 12 EPSON PS Tools EPSON PS Tools PS EPS PDF TIFF JPEG Macintosh OS

More information

Blue Asterisk template

Blue Asterisk template IBM Content Analyzer V8.4.2 TEXT MINER の新機能 大和ソフトウェア開発 2008 IBM Corporation 目次 UI カスタマイズ機能 検索条件の共有 柔軟な検索条件の設定 2 UI カスタマイズ機能 アプリケーションをカスタマイズするために Java Script ファイルおよびカスケーディングスタイルシート (CSS) ファイルの読み込み機能が提供されています

More information

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3

ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 Web 2.0 Web Web Web Web Web Web Web I II I ii II Web Web HTML CSS PHP MySQL Web Web CSS JavaScript Web SQL Web 2014 3 1. 1.1 Web... 1 1.1.1... 3 1.1.2... 3 1.1.3... 4 1.2... 4 I 2 5 2. HTMLCSS 2.1 HTML...

More information

gnuplot.dvi

gnuplot.dvi gnuplot gnuplot 1 gnuplot exit 2 10 10 2.1 2 plot x plot sin(x) plot [-20:20] sin(x) plot [-20:20][0.5:1] sin(x), x, cos(x) + - * / ** 5 ** plot 2**x y =2 x sin(x) cos(x) exp(x) e x abs(x) log(x) log10(x)

More information

3 top#index 1 web router.ex web/router.ex 12 scope "/", NanoPlanner do 13 pipe_through browser get "/", TopController, index 16 end URL / to

3 top#index 1 web router.ex web/router.ex 12 scope /, NanoPlanner do 13 pipe_through browser get /, TopController, index 16 end URL / to 3 NanoPlanner SASS Bootstrap Font Awesome 3.1 RAVT 6 RAVT route action view template Phoenix top index top index top#index RAVT URL / top#index top#index top 23 3 top#index 1 web router.ex web/router.ex

More information

untitled

untitled 25 10 12 11 24 (1) 14 (2) 26 10 44 (3) (4) (5) 27 10 68 (6) (7) (8) 25 10 ( ) (1) (2) (3) ) city.yokohama.lg.jp city.yokohama.jp WEB WEB WEB WEB WEB WEB 1 25 10 WEB WEB (1) (2) (3) (4) 25 10 (1) WEB (2)

More information

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B

2 p.2 2 Java Hello0.class JVM Hello0 java > java Hello0.class Hello World! javac Java JVM java JVM : Java > javac 2> Q Foo.java Java : Q B 2 p.1 2 Java Java JDK Sun Microsystems JDK javac Java java JVM appletviewer IDESun Microsystems NetBeans, IBM 1 Eclipse 2 IDE GUI JDK Java 2.1 Hello World! 2.1.1 Java 2.1.1 Hello World Emacs Hello0.java

More information

JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4.

JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4. http://www1.iwate-ed.jp/ JIS Web Web JIS JIS 5.1.a 5.1.b 5.2.a 5.2.b 5.2.c 5.2.d 5.2.e 5.2.f 5.2.g 5.3.a 5.3.b 5.3.c 5.3.d 5.3.e 5.3.f 5.3.g 5.3.h 5.3.i 5.4.a 5.4.b 5.4.c 5.4.d 5.4.e 5.5.a 5.5.b 5.5.c

More information

m_sotsuron

m_sotsuron iphone Web 0848066 1. 1 1 1 2 iphone 2 3 2 4 3 2. 3 1 3 2 iphone Web 6 3 HTML 10 4 CSS 12 5 iphone 14 6 15 7 16 8 ipad 18 3. 22 iphone Web Web 2 iphone Web iphone iphone Web iphone Web PC 1 2000 iphone

More information

WebGL *1 DOM API *1 X LR301 Kageyama (Kobe Univ.) Visualization / 37

WebGL *1 DOM API *1 X LR301 Kageyama (Kobe Univ.) Visualization / 37 WebGL *1 DOM API 2013.05.21 *1 X021 2013 LR301 Kageyama (Kobe Univ.) Visualization 2013.05.21 1 / 37 WebGL WebGL DOM References Kageyama (Kobe Univ.) Visualization 2013.05.21 2 / 37 WebGL WebGL Kageyama

More information

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons.

1 1.1 PC PC PC PC PC workstation PC hardsoft PC PC CPU 1 Gustavb, Wikimedia Commons. 1 PC PC 1 PC PC 1 PC PC PC PC 1 1 1 1.1 PC PC PC PC PC workstation PC 1.1.1 hardsoft 1.1.2 PC PC 1.1 1 1. 2. 3. CPU 1 Gustavb, Wikimedia Commons.http://en.wikipedia.org/wiki/Image:Personal_computer,_exploded_5.svg

More information

Web

Web Web 1 1 1........................... 1 2 Web...................... 1 3...................... 3 4........................ 4 5........................... 5 i............................ 5 ii iii..........................

More information

r6.dvi

r6.dvi I 2005 6 2005.11.18 1 1.1 2 Hello, World public class r5ex2 extends JApplet { Font fn = new Font("Helvetica", Font.BOLD, 24); g2.setfont(fn); for(int i = 0; i < 10; ++i) { g2.setpaint(new Color(100+i*5,

More information

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO

() < > </ > / HTML SGML HTML 1.1 DTD DTD ( DTD (prolog) )SGML 1. DTD ( ) 2. DTD <!-- DTD-- > <!ELEMENT MAIL - - ((TO,FROM)?,DATE?,BODY) > <!ELEMENT TO 2009 2D SGML,XML,HTML 2009 11 11 1 SGML SGML Standard Generalized Markup Language (ISO 8879) (JIS X 4151) < >< >SGML< > < >asakawa@ieee.orgSGML < >SGML SGML Standard Generalized Markup

More information

4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html <meta ht tp - equiv="content-type" content=" tex t /html; charset=utf-

4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html <meta ht tp - equiv=content-type content= tex t /html; charset=utf- 4.html css html css Adobe Flash JavaScript xml Ajax html css 045 11 12 4-1. html css html 046 11 12 ht tp ht tp html HyperTex t Markup Language: html

More information

1 1 1.................... 1 2...................... 2 3................... 3 2 5 1.............................. 5 2........................ 6 3.................... 9 3 11 1...........................

More information

6 2 1

6 2 1 6 1 6 (1) (2) HTML (3) 1 Web HTML 1 Web 1 Web Web 6 2 1 6 3 1.1 HTML(XHTML) Web HTML(Hyper Text Markup Language) ( ) html htm HTML XHTML(XHTML 1.0 Transitional)

More information

ohp.mgp

ohp.mgp 2019/06/11 A/B -- HTML/WWW(World Wide Web -- (TA:, [ 1 ] !!? Web Page http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino VNC Server Address : 10.9.209.159 Password : vnc-2019 (2019/06/04 : : * * / / : (cf.

More information

tex02.dvi

tex02.dvi 2002 2 L A TEX 2002 4 15 : L A TEX EPS EPS 1 L A TEX L A TEX L A TEX L A TEX 1.1 L A TEX 1.1.1 L A TEX TEX.tex.tex.tex 1.1.2 TEX 1. TEX L A TEX Y TEX L A TEX Y (@ ) TEX L A TEX 2. 1 YTeX YTeX ( ) 3. 2

More information

(2 Linux Mozilla [ ] [ ] [ ] [ ] URL 2 qkc, nkc ~/.cshrc (emacs 2 set path=($path /usr/meiji/pub/linux/bin tcsh b

(2 Linux Mozilla [ ] [ ] [ ] [ ] URL   2 qkc, nkc ~/.cshrc (emacs 2 set path=($path /usr/meiji/pub/linux/bin tcsh b II 5 (1 2005 5 26 http://www.math.meiji.ac.jp/~mk/syori2-2005/ UNIX (Linux Linux 1 : 2005 http://www.math.meiji.ac.jp/~mk/syori2-2005/jouhousyori2-2005-00/node2. html ( (Linux 1 2 ( ( http://www.meiji.ac.jp/mind/tool/internet-license/

More information

年刊EDP 2003

年刊EDP 2003 1 2 3 HDD HDD HDD HDD ( 4 !!! ( )!! HDD ( )!! ( )!!(ry YU-SHOW!!!!!!!! HxH 5 HDD ( 0123-456-789 ( e 6 PC PC psd 7 8 YO! WebPage http://mode.jp/ PowerTone 9 A4 Canon PIXUS850i 1,440dpi 720dpi A4 10 etc

More information

untitled

untitled 2005 HP -1-2005 8 29 30 HP 1 ( ) 1. Web 2. HTML HTML 1 PDF HTML 1 Web HTML http://www.media.ritsumei.ac.jp/kodais2005 2 2.1 WWW HTML Hyper Text Markup Language) HTML Web HTML Internet Explorer http://www.ritsumei.ac.jp

More information

Network Computing の基礎

Network Computing の基礎 CSS Cascading Style Sheets Cascading = Style Sheets = CSS WEB HTML CSS 2 HTML h1 p CSS 3 CSS CSS HTML sample1.html CSS HTML sample2.html CSS CSS sample2.css CSS

More information

医療者のための情報技術入門第 9 回プログラムがはたらくしくみを学ぶ (2) 日紫喜光良 概要 1. はじめに- 具体例から ここから Javascript のプログラミング入門 次はどうする--

医療者のための情報技術入門第 9 回プログラムがはたらくしくみを学ぶ (2) 日紫喜光良 概要 1. はじめに- 具体例から ここから Javascript のプログラミング入門 次はどうする-- 2014.6.23 医療者のための情報技術入門第 9 回プログラムがはたらくしくみを学ぶ (2) 日紫喜光良 概要 1. はじめに- 具体例から- ------------- ここから------------ 2.Javascript のプログラミング入門 ------------ 次はどうする-------- 3. 足りないものは借りてくる-Javascript のライブラリ 4. 仕事は人にやらせる-サーバーとブラウザの役割分担

More information

ÉvÉçPM_02

ÉvÉçPM_02 2 JavaScript 2JavaScript JavaScript 2-11hello1.html hello

More information

2 1 6 2 7 2.1....................................... 7 2.2.......................................... 7 3 9 3.1.......................................

2 1 6 2 7 2.1....................................... 7 2.2.......................................... 7 3 9 3.1....................................... 23 Travel M 20 2 1 6 2 7 2.1....................................... 7 2.2.......................................... 7 3 9 3.1....................................... 9 3.1.1....................................

More information

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である

XMLとは、eXtensible Markup Languageの略で、拡張可能なマーク付け言語である XML ... 2... 2... 2... 3... 4... 4... 5... 6... 6... 6... 7... 8... 8... 9... 9... 12... 12... 14... 15... 15... 15... 15... 15... 16... 16... 17... 17... 18... 19... 20... 21... 22... 28... 29... 30 1

More information

”‰−ofiI…R…fi…e…L…X…g‡ðŠp‡¢‡½„�“õ„‰›Ê‡Ì™ñ”¦

”‰−ofiI…R…fi…e…L…X…g‡ðŠp‡¢‡½„�“õ„‰›Ê‡Ì™ñ”¦ 1 1 5 1.1........................................... 5 1.2.................................. 6 1.2.1.............. 6 1.2.2........................... 7 1.3........................................... 7

More information

(300, 150) 120 getchar() HgBox(x, y, w, h) (x, y), w, h #include <stdio.h> #include <handy.h> int main(void) { int i; double w, h; } HgO

(300, 150) 120 getchar() HgBox(x, y, w, h) (x, y), w, h #include <stdio.h> #include <handy.h> int main(void) { int i; double w, h; } HgO Handy Graphic for Handy Graphic Version 0.5 2008-06-09 1 Handy Graphic Handy Graphic C Handy Graphic Handy Graphic Mac OS X Handy Graphic HgDisplayer Handy Graphic HgDisplayer 2 Handy Graphic 1 Handy Graphic

More information

UbiquitousMetadata活用-3

UbiquitousMetadata活用-3 XML XML XML-DB WG NTT () ymmt@po.ntts.co.jp chiba@isid.co.jp obamikio@jp.ibm.com 2XML Week 3/4 XQuery SQL SQL SQL XQuery SQL XML XQuery XML XML XPath XML XPath XML XPath XPath XML XML XQuery XML XML XPath

More information

2 2 2 6 9 9 10 14 18 19 21 22 22 Java 23 24 25 25 26 30 31 32 39 46 53 55 58 2 2.0 2.0R Ver.2.0R Java Java 2.0 2.0R 2.0R 2.0 Ver2.0 2.0R Ver2.0R 19 Sun Sun Microsystems Java Java Sun Microsystems, Inc.

More information

19 3!! (+) (>) (++) (+=) for while 3.1!! (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics;

19 3!! (+) (>) (++) (+=) for while 3.1!! (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; 19 3!!...... (+) (>) (++) (+=) for while 3.1!! 3.1.1 50 20 20 5 (20, 20) 3.1.1 (1)(Blocks1.java) public class Blocks1 extends JApplet { public void paint(graphics g){ 5 g.drawrect( 20, 20, 50, 20); g.drawrect(

More information

E MathML W3C MathJax 1.3 MathJax MathJax[5] TEX MathML JavaScript TEX MathML [8] [9] MathSciNet[10] MathJax MathJax MathJax MathJax MathJax MathJax We

E MathML W3C MathJax 1.3 MathJax MathJax[5] TEX MathML JavaScript TEX MathML [8] [9] MathSciNet[10] MathJax MathJax MathJax MathJax MathJax MathJax We MathML TEX 1,a) 1,b) MathML TEX JavaScript MathJax TEX GUI MathML TEX MathJax Prototype of e-learning and Communication Systems to Support Displaying Math Equations with MathML and TEX Nobuo Yamashita

More information

Taro-WebGLサンプルの説明

Taro-WebGLサンプルの説明 WebGL 2017/ 1/19 V.2 cim3d_webgl.zip index_ad01.html DEFINITIONS_ad01.js 6 index.html HTML Document DEFINITIONS.js JavaScript DATA/ UNIX LINUX index.html DEFINITIONS.js DATA/ OS UNIX LINUX Web Apache HTTP

More information

a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster LAT E X

a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster LAT E X a0postercls, http://wwwmathkobe-uacjp/a0poster ( ) ( ): orange (Debian/GNU Linux, Etch) ssh -X orange pdf :, - pdf ( ) orange / tex a0postercls? Gerlinde Kettl, Matthias Weiser T E Xmacro wwwctanorg/tex-archive/macros/latex/contrib/a0poster

More information

Keynote '08 ユーザーズガイド

Keynote '08 ユーザーズガイド Keynote 08 KAppleInc. 2008AppleInc.Allrightsreserved. Apple Apple AppleInc. Apple Apple Apple 1InfiniteLoop Cupertino,CA95014-2084 U.S.A. www.apple.com 163-1480 3 20 2 www.apple.com/jp Apple Apple AppleWorks

More information

XMLテクノロジを使いやすくする

XMLテクノロジを使いやすくする XML 2005 9 XML... 3... 3 XML... 5 DOM XML... 5 DOM 3.0 Load and Save... 5 DOM 3.0 Validation... 8 SAX XML... 11 SAX... 11 XSL... 12... 13... 13... 14... 14 XML... 15 XML... 15 JAXB CLASS GENERATOR... 16

More information

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir

13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software Nspire Nspire Nspir 13 Student Software TI-Nspire CX CAS TI Web TI-Nspire CX CAS Student Software ( ) 1 Student Software 37 Student Software 37.1 37.1 Nspire Nspire Nspire 37.1: Student Software 13 2 13 Student Software esc

More information

2008 DS T050049

2008 DS T050049 DS T050049. PSP DS DS DS RPG DS OS Windows XP DevkiPro OS DS CPU ARM devkitarm MSYS MinGW MSYS MinGW Unix OS C++ C++ make nds nds DS DS micro SD Card nds DS DS DS nds C Java C++ nds nds DS 2008 DS T050049

More information

1

1 1 100 50/60Hz 100 50/60Hz 2 3 4 Windows 4.0SP3 Windows98 4.0SP3 800600 256 1024768 SETUP.EXE 5 [ ] 6 [ OK] [ ] 7 [ OK] [ ] 8 [ OK] [ ] 9 [ ] [ ] [ ] Enter Enter Windows Alt MP-60 10 [ ] F4 [ ] [ ] [ ]

More information

: Shift-Return evaluate 2.3 Sage? Shift-Return abs 2 abs? 2: abs 3: fac

: Shift-Return evaluate 2.3 Sage? Shift-Return abs 2 abs? 2: abs 3: fac Bulletin of JSSAC(2012) Vol. 18, No. 2, pp. 161-171 : Sage 1 Sage Mathematica Sage (William Stein) 2005 2 2006 2 UCSD Sage Days 1 Sage 1.0 4.7.2 1) Sage Maxima, R 2 Sage Firefox Internet Explorer Sage

More information

08encode part 2

08encode part 2 A - - #8 bit, Byte, Yutaka Yasuda 1/2 0/1 CD 9 1 0 0 or 1 1/9 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 4,3,4,7,7,8,8,5,3,2,2 CD/CD-R CD / CD-R - 1 bit data (7bit) P 0 1 1 0 1

More information

TEX American Mathematical Society PostScript Adobe Systems Incorporated

TEX American Mathematical Society PostScript Adobe Systems Incorporated P A D manual ( pad2ps 3.1j ) (seiichi@muraoka.info.waseda.ac.jp) 1996 11 2 TEX American Mathematical Society PostScript Adobe Systems Incorporated pad2ps PAD PAD (Problem Analysis Diagram) C 1 2 PAD PAD

More information