-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.bib
1202 lines (1097 loc) · 38 KB
/
db.bib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
% vim:ts=1:et:nospell:spelllang=en_gb:ft=bib
@book{battista-1,
author = {Di Battista, Giuseppe and Eades, Peter and Tamassia, Roberto and Tollis, Ioannis G.},
title = {Graph Drawing: Algorithms for the Visualization of Graphs},
year = {1998},
isbn = {0133016153},
edition = {1st},
publisher = {Prentice Hall {PTR}},
address = {Upper Saddle River, {NJ}, {USA}},
}
@book{beach-1,
author = {Beach, R. J.},
title = {Computerized typesetting of technical documents},
note = {Technical report, Dept. of Computer Science, University of Waterloo,},
year = {1977}
}
url = {http://dx.doi.org/10.1016/0020-0190(87)90173-6},
@article{bhatt-1,
author = {Bhatt, Sandeep N. and Cosmadakis, Stavros S.},
title = {The Complexity of Minimizing Wire Lengths in {VLSI} Layouts},
journal = {Inf. Process. Lett.},
issue_date = {June 17, 1987},
volume = {25},
number = {4},
month = jun,
year = {1987},
issn = {0020-0190},
pages = {263--267},
numpages = {5},
doi = {10.1016/0020-0190(87)90173-6},
acmid = {31083},
publisher = {Elsevier North-Holland, Inc.},
address = {Amsterdam, The Netherlands, The Netherlands},
}
url = {http://doi.acm.org/10.1145/27623.29354},
@article{borning-1,
author = {Borning, Alan and Duisberg, Robert},
title = {Constraint-based Tools for Building User Interfaces},
journal = {{ACM} Trans. Graph.},
issue_date = {Oct. 1986},
volume = {5},
number = {4},
month = oct,
year = {1986},
issn = {0730-0301},
pages = {345--374},
numpages = {30},
doi = {10.1145/27623.29354},
acmid = {29354},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
url = {http://doi.acm.org/10.1145/357146.357147},
@article{borning-2,
author = {Borning, Alan},
title = {The Programming Language Aspects of ThingLab, a Constraint-Oriented Simulation Laboratory},
journal = {{ACM} Trans. Program. Lang. Syst.},
issue_date = {Oct. 1981},
volume = {3},
number = {4},
month = oct,
year = {1981},
issn = {0164-0925},
pages = {353--387},
numpages = {35},
doi = {10.1145/357146.357147},
acmid = {357147},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
url = {http://doi.acm.org/10.1145/108360.108361},
@article{casner-1,
author = {Casner, Stephen M.},
title = {Task-analytic Approach to the Automated Design of Graphic Presentations},
journal = {{ACM} Trans. Graph.},
issue_date = {April 1991},
volume = {10},
number = {2},
month = apr,
year = {1991},
issn = {0730-0301},
pages = {111--151},
numpages = {41},
doi = {10.1145/108360.108361},
acmid = {108361},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {automated design, graphic design, graphic user interface, task analysis, visual languages},
}
@misc{christensen-1,
author = {Christensen, J. and Marks, J. and Shieber, S.},
title = {Algorithms for cartographic label placement},
note = {In Proceedings of the American Congress on Surveying and Mapping 1, pages 75–89, 1993.},
year = {1993}
}
url = {http://doi.acm.org/10.1145/212332.212334},
@article{christensen-2,
author = {Christensen, Jon and Marks, Joe and Shieber, Stuart},
title = {An Empirical Study of Algorithms for Point-feature Label Placement},
journal = {{ACM} Trans. Graph.},
issue_date = {July 1995},
volume = {14},
number = {3},
month = jul,
year = {1995},
issn = {0730-0301},
pages = {203--232},
numpages = {30},
doi = {10.1145/212332.212334},
acmid = {212334},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {automated cartography, heuristic search, label placement, simulated annealing, stochastic methods},
}
@misc{comver-1,
author = {Comver, T. and Maltby, J.},
title = {Evaluating usability of screen design with layout complexity},
note = {In Proceedings of {OZCHI}’95, the {CHISIG} Annual Conference on Human-Computer Interaction, Full Papers, pages 175–178, 1995.},
year = {1995}
}
url = {http://dx.doi.org/10.1016/0020-0190(90)90045-Y},
@article{battista-2,
author = {Di Battista, Giuseppe and Liu, Wei-Ping and Rival, Ivan},
title = {Bipartite Graphs, Upward Drawings, and Planarity},
journal = {Inf. Process. Lett.},
issue_date = {Dec. 15, 1990},
volume = {36},
number = {6},
month = dec,
year = {1990},
issn = {0020-0190},
pages = {317--322},
numpages = {6},
doi = {10.1016/0020-0190(90)90045-Y},
acmid = {105410},
publisher = {Elsevier North-Holland, Inc.},
address = {Amsterdam, The Netherlands, The Netherlands},
}
url = {http://dl.acm.org/citation.cfm?id = 102313.102339},
@inproceedings{feiner-1,
author = {Feiner, S. K.},
title = {A Grid-based Approach to Automating Display Layout},
booktitle = {Proceedings on Graphics Interface '88},
year = {1988},
location = {Edmonton, Alberta, Canada},
pages = {192--197},
numpages = {6},
acmid = {102339},
publisher = {Canadian Information Processing Society},
address = {Toronto, Ont., Canada, Canada},
}
@misc{feiner-2,
author = {Feiner, S. and Mackinlay, J. and Marks, J.},
title = {Automating the design of effective graphics: Tutorial notes},
note = {{AAAI} ’93, Washington, {DC}, July 11–16, 1993.},
year = {1993}
}
biburl = {http://dblp2.uni-trier.de/rec/bib/conf/gd/2000},
bibsource = {dblp computer science bibliography, http://dblp.org}
@proceedings{graph-drawing-conference-1,
editor = {Marks, Joe},
title = {Graph Drawing, 8th International Symposium, {GD} 2000, Colonial Williamsburg, {VA}, {USA}, September 20-23, 2000, Proceedings},
series = {Lecture Notes in Computer Science},
volume = {1984},
publisher = {Springer},
year = {2001},
isbn = {3-540-41554-8},
}
url = {http://dl.acm.org/citation.cfm?id = 286013.286032},
@incollection{graf-1,
author = {Graf, Winfried H.},
chapter = {Constraint-based Graphical Layout of Multimodal Presentations},
title = {Readings in Intelligent User Interfaces},
editor = {Maybury, Mark T. and Wahlster, Wolfgang},
year = {1998},
isbn = {1-55860-444-8},
pages = {263--285},
numpages = {23},
acmid = {286032},
publisher = {Morgan Kaufmann Publishers Inc.},
address = {San Francisco, {CA}, {USA}},
}
url = {http://www.sciencedirect.com/science/article/pii/S0019995880908177},
@article{hofri-1,
author = {Hofri, Micha},
title = {Two-dimensional packing: Expected performance of simple level algorithms},
journal = {Information and Control, 45:1–17, 1980.},
number = {45},
year = {1980},
pages = {1--17},
publisher = {Elsevier},
}
@book{horn-1,
editor = {Horn, Berthold Klaus Paul},
title = {Robot Vision},
year = {1986},
isbn = {0-262-08159-8},
publisher = {{MIT} Press},
address = {Cambridge, {MA}, {USA}},
}
@misc{hu-1,
author = {Hu, T. C. and Kuh, E. S.},
title = {{VLSI} Circuit Layout: Theory and Design},
note = {{IEEE}, {USA}, 1985.},
year = {1985}
}
url = {http://doi.acm.org/10.1145/1054972.1055025},
@inproceedings{hudson-1,
author = {Hudson, Scott E. and Mankoff, Jennifer and Smith, Ian},
title = {Extensible Input Handling in the subArctic Toolkit},
booktitle = {Proceedings of the {SIGCHI} Conference on Human Factors in Computing Systems},
series = {{CHI} '05},
year = {2005},
isbn = {1-58113-998-5},
location = {Portland, Oregon, {USA}},
pages = {381--390},
numpages = {10},
doi = {10.1145/1054972.1055025},
acmid = {1055025},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {{GUI} toolkits, event handling, interaction techniques},
}
url = {http://doi.acm.org/10.1145/98188.98201},
@article{hudson-2,
author = {Hudson, Scott E. and Mohamed, Shamim P.},
title = {Interactive Specification of Flexible User Interface Displays},
journal = {{ACM} Trans. Inf. Syst.},
issue_date = {July 1990},
volume = {8},
number = {3},
month = jul,
year = {1990},
issn = {1046-8188},
pages = {269--288},
numpages = {20},
doi = {10.1145/98188.98201},
acmid = {98201},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
url = {http://doi.acm.org/10.1145/237091.237112},
@inproceedings{hudson-3,
author = {Hudson, Scott E. and Smith, Ian},
title = {Ultra-lightweight Constraints},
booktitle = {Proceedings of the 9th Annual {ACM} Symposium on User Interface Software and Technology},
series = {{UIST} '96},
year = {1996},
isbn = {0-89791-798-7},
location = {Seattle, Washington, {USA}},
pages = {147--155},
numpages = {9},
doi = {10.1145/237091.237112},
acmid = {237112},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {{Java}, lazy and incremental update, one-way constraint systems, space optimization, user interface layout, user interface toolkits},
}
@misc{hurlburt-1,
author = {Hurlburt, A.},
title = {The Grid},
note = {Van Nostr and Reinhold Company, Melborne, Australia, 1978.},
year = {1978}
}
url = {http://doi.acm.org/10.1145/108844.108862},
@inproceedings{jeffries-1,
author = {Jeffries, Robin and Miller, James R. and Wharton, Cathleen and Uyeda, Kathy},
title = {User Interface Evaluation in the Real World: A Comparison of Four Techniques},
booktitle = {Proceedings of the {SIGCHI} Conference on Human Factors in Computing Systems},
series = {{CHI} '91},
year = {1991},
isbn = {0-89791-383-3},
location = {New Orleans, Louisiana, {USA}},
pages = {119--124},
numpages = {6},
doi = {10.1145/108844.108862},
acmid = {108862},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
note = {http://ftp.cis.nctu.edu.tw/csie/Documents/Java/marketing/collateral/foundation\_classes.ps},
@misc{sun-1,
author = {Sun Microsystems},
title = {Java foundation classes: now and the future},
year = {1997},
}
@inproceedings{kamimura-1,
author = {Kamimura, R.},
booktitle = {Neural Networks, 1990., 1990 {IJCNN} International Joint Conference on},
title = {Application of temporal supervised learning algorithm to generation of natural language},
year = {1990},
month = jun,
pages = {201-207 vol.1},
keywords = {learning systems;natural languages;neural nets;Minkowski-r power metrics;instability;natural language generation;performance;recurrent neural network;temporal supervised learning algorithm},
doi = {10.1109/{IJCNN}.1990.137570},
}
url = {http://doi.acm.org/10.1145/97924.97926},
@inproceedings{kim-1,
author = {Kim, Won Chul and Foley, James D.},
title = {{DON}: User Interface Presentation Design Assistant},
booktitle = {Proceedings of the 3rd Annual {ACM} {SIGGRAPH} Symposium on User Interface Software and Technology},
series = {{UIST} '90},
year = {1990},
isbn = {0-89791-410-4},
location = {Snowbird, Utah, {USA}},
pages = {10--20},
numpages = {11},
doi = {10.1145/97924.97926},
acmid = {97926},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
@phdthesis{kochhar-1,
author = {Kochhar, Sandeep},
advisor = {Friedell, Mark},
title = {Cooperative Computer-aided Design: A Paradigm of Automating the Design and Modeling of Graphical Objects},
year = {1990},
note = {{AAI}9113180},
publisher = {Harvard University},
address = {Cambridge, {MA}, {USA}},
}
@article{kosak-1,
author = {Kosak, C. and Marks, J. and Shieber, S.},
journal = {Systems, Man and Cybernetics, {IEEE} Transactions on},
title = {Automating the layout of network diagrams with specified visual organization},
year = {1994},
month = {Mar},
volume = {24},
number = {3},
pages = {440-454},
doi = {10.1109/21.278993},
ISSN = {0018-9472},
}
url = {http://doi.acm.org/10.1145/159730.159731},
@article{kurlander-1,
author = {Kurlander, David and Feiner, Steven},
title = {Inferring Constraints from Multiple Snapshots},
journal = {{ACM} Trans. Graph.},
issue_date = {Oct. 1993},
volume = {12},
number = {4},
month = oct,
year = {1993},
issn = {0730-0301},
pages = {277--304},
numpages = {28},
doi = {10.1145/159730.159731},
acmid = {159731},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {constraints, empirical learning, graphical editing},
}
@book{lengauer-1,
author = {Lengauer, Thomas},
title = {Combinatorial Algorithms for Integrated Circuit Layout},
year = {1990},
isbn = {0-471-92838-0},
publisher = {John Wiley \& Sons, Inc.},
address = {New York, {NY}, {USA}},
}
url = {http://dx.doi.org/10.1109/2.19829},
@article{linton-1,
author = {Linton, Mark A. and Vissides, John M. and Calder, Paul R.},
title = {Composing User Interfaces with InterViews},
journal = {Computer},
issue_date = {February 1989},
volume = {22},
number = {2},
month = feb,
year = {1989},
issn = {0018-9162},
pages = {8--22},
numpages = {15},
doi = {10.1109/2.19829},
acmid = {63219},
publisher = {{IEEE} Computer Society Press},
address = {Los Alamitos, {CA}, {USA}},
}
url = {http://citeseerx.ist.psu.edu/viewdoc/download?doi = 10.1.1.14.4075\&\#38;rep = rep1\&\#38;type = pdf},
citeulike-linkout-0 = {http://citeseerx.ist.psu.edu/viewdoc/download?doi = 10.1.1.14.4075\&\#38;rep = rep1\&\#38;type = pdf},
@article{luders-1,
author = {Peter L\"{u}ders, Rolf E.},
citeulike-article-id = {10393403},
journal = {Software --- Practice and Experience ({SPE})},
keywords = {ui\_modeling},
month = nov,
number = {11},
posted-at = {2012-02-28 15:15:52},
priority = {3},
title = {An Approach to Automatic Display Layout Using Combinatorial Optimization Algorithms},
volume = {25},
year = {1995},
}
url = {http://doi.acm.org/10.1145/142750.142794},
@inproceedings{mackenzie-1,
author = {MacKenzie, I. Scott and Buxton, William},
title = {Extending Fitts' Law to Two-dimensional Tasks},
booktitle = {Proceedings of the {SIGCHI} Conference on Human Factors in Computing Systems},
series = {{CHI} '92},
year = {1992},
isbn = {0-89791-513-5},
location = {Monterey, California, {USA}},
pages = {219--226},
numpages = {8},
doi = {10.1145/142750.142794},
acmid = {142794},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {Fitts' law, human performance modeling, input devices, input tasks},
}
url = {http://doi.acm.org/10.1145/22949.22950},
@article{mackinlay-1,
author = {Mackinlay, Jock},
title = {Automating the Design of Graphical Presentations of Relational Information},
journal = {{ACM} Trans. Graph.},
issue_date = {April 1986},
volume = {5},
number = {2},
month = apr,
year = {1986},
issn = {0730-0301},
pages = {110--141},
numpages = {32},
doi = {10.1145/22949.22950},
acmid = {22950},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
@misc{mackworth-1,
author = {Mackworth, Alan. K.},
title = {Constraint satisfaction},
note = {In S. C. Shapiro, editor, Encyclopedia of Artificial Intelligence, volume 1. Addison-Wesley Publishing Company, 1992. Second Edition.},
year = {1992}
}
url = {http://dx.doi.org/10.1016/0004-3702(92)90003-G},
@article{mackworth-2,
author = {Mackworth, Alan K.},
title = {The Logic of Constraint Satisfaction},
journal = {Artif. Intell.},
issue_date = {Dec. 1992},
volume = {58},
number = {1-3},
month = dec,
year = {1992},
issn = {0004-3702},
pages = {3--20},
numpages = {18},
doi = {10.1016/0004-3702(92)90003-G},
acmid = {141448},
publisher = {Elsevier Science Publishers Ltd.},
address = {Essex, {UK}},
}
url = {http://doi.acm.org/10.1145/192426.192468},
@inproceedings{masui-1,
author = {Masui, Toshiyuki},
title = {Evolutionary Learning of Graph Layout Constraints from Examples},
booktitle = {Proceedings of the 7th Annual {ACM} Symposium on User Interface Software and Technology},
series = {{UIST} '94},
year = {1994},
isbn = {0-89791-657-3},
location = {Marina del Rey, California, {USA}},
pages = {103--108},
numpages = {6},
doi = {10.1145/192426.192468},
acmid = {192468},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {adaptive user interface, genetic algorithms, genetic programming, graph layout, graphic object layout, programming by example},
}
@misc{mccormack-1,
author = {McCormack, J. and Asente, P. and Swick, R. and Converse, D.},
title = {X Toolkit Intrinsics—C Language Interface},
note = {Digital Equipment Corporation, Maynard, {MA}, {USA}, 1985.},
year = {1985}
}
@misc{microsoft-1,
author = {Microsoft Corp.},
title = {{Microsoft Visual C++ MFC} Library Reference},
note = {Microsoft Press, Redmond, {WA}, {USA}, 1997.},
year = {1997}
}
@misc{milenkovic-1,
author = {Milenkovic, V. J. and Daniels, K. M. and Li, Z.},
title = {Automatic marker making},
note = {In T. Shermer, editor, Proceedings of the Third Canadian Conference on Computational Geometry, pages 243–246, August 6–10 1991.},
year = {1991}
}
@misc{muller-1,
author = {M\"uller-Brockmann, J.},
title = {Grid Systems in Graphic Design},
note = {Arthur Niggli Publishers, Niederteufen, Switzerland, 1981.},
year = {1981}
}
@misc{myers-1,
author = {Myers, B. A. and McDaniel, R. G. and Kosbie, D. S.},
title = {Marquise: Creating complete user interfaces by demonstration},
note = {In {INTERCHI} ’93, Human Factors in Computing Systems, Apr. 1993.},
year = {1993}
}
@misc{myers-2,
author = {Myers, B. A. and Giuse, D. and Mickish, A. and Vander Zanden, B. and Kosbie, D. and McDaniel, R. and Landay, J. and Golderg, M. and Pathasarathy, R.},
title = {The garnet user interface development environment},
note = {In Proceedings of the {CHI} ’94 conference companion on Human factors in computing systems, pages 457–458, 1994.},
year = {1994}
}
@misc{nilsson-1,
author = {Nilsson, N. J.},
title = {Artificial Intelligence: A New Synthesis},
note = {Morgan Kaufmann Publishers, San Francisco, 1998.},
year = {1998}
}
@misc{ousterhout-1,
author = {Ousterhout, J. K.},
title = {Tcl and Tk Toolkit},
note = {Addison-Wesley, 1994.},
year = {1994}
}
@misc{pan-1,
author = {Pan, S. and McKeown, K.},
title = {Learning intonation rules for concept to speech generation},
note = {In Proc. of the Joint International Conference on Computational Linguistics and Association for Computational Linguistics ({COLING}-{ACL}), 1998.},
year = {1998}
}
@misc{pizano-1,
author = {Pizano, A. and Shirota, Y. and Iizawa, A.},
title = {Automatic generation of graphical user interfaces for interactive database applications},
note = {In B. Bhargava, T. Finin, and Y. Yesha, editors, Proceedings of the 2nd International Conference on Information and Knowledge Management, pages 344–355, New York, {NY}, {USA}, Nov. 1993. {ACM} Press.},
year = {1993}
}
@misc{roth-1,
author = {Roth, S. F. and Kolojejchick, J. and Mattis, J. and Goldstein, J.},
title = {Interactive graphic design using automatic presentation knowledge},
note = {In Proceedings of {ACM} {CHI}’94 Conference on Human Factors in Computing Systems, volume 1 of Active Support for Interaction, pages 112–117, 1994.},
year = {1994}
}
@misc{roth-2,
author = {Roth, S. F. and Mattis, J. and Mesnard, X.},
title = {Graphics and natural language as components of automatic explanation},
note = {In J. Sullivan and S. Tyler, editors, Intelligent User Interfaces. Addison-Wesley, Reading, {MA}, 1991.},
year = {1991}
}
@misc{salzberg-1,
author = {Salzberg, S. and Searls, D. and Kasif, S.},
title = {Computational Methods in Molecular Biology},
note = {Elsevier Science Ltd, 1998.},
year = {1998}
}
@misc{schlungbaum-1,
author = {Schlungbaum, E.},
title = {Individual user interfaces and model-based user interface software tools},
note = {In Proceedings of the 1997 International Conference on Intelligent User Interfaces, pages 229–232, 1997.},
year = {1997}
}
@misc{sears-1,
author = {Sears, A.},
title = {Layout appropriateness: A metric for evaluating user interface widget layout},
note = {{IEEE} Transactions on Software Engineering, 19(7):707–719, July 1993.},
year = {1993}
}
@misc{sears-2,
author = {Sears, A.},
title = {{AIDE}: A step toward metric-based interface development tools},
note = {In Proceedings of the {ACM} Symposium on User Interface Software and Technology, Evaluation, pages 101–110, 1995.},
year = {1995}
}
@misc{sears-3,
author = {Sears, A. and Lund, A. M.},
title = {Creating effective user interfaces},
note = {{IEEE} Software, 14(4):21–24, July / Aug. 1997.},
year = {1997}
}
url = {http://dx.doi.org/10.1007/BF02086611},
@article{shahrokhi-1,
author = {Shahrokhi, F. and Székely, L. A. and Sýkora, O. and Vrt'o, I.},
title = {Drawings of graphs on surfaces with few crossings},
note = {Algorithmica, 16(1):118–131, July 1996.},
issn = {0178-4617},
journal = {Algorithmica},
volume = {16},
number = {1},
pages = {118-131},
year = {1996},
doi={10.1007/{BF}02086611},
publisher = {Springer-Verlag},
}
@misc{singh-1,
author = {Singh, G. and Green, M.},
title = {Automating the lexical and syntactic design of graphical user interfaces: The uofA* {UIMS}},
note = {{ACM} Transactions on Graphics, 10(3):213–254, 1991.},
year = {1991}
}
@misc{singh-2,
author = {Singh, G. and Kok, C. H. and Ngan, T. Y.},
title = {Druid: A system for demonstrational rapid user interface development},
note = {In Proc. of the 3rd Annual Symposium on User Interface Software and Technology ({UIST}’90), pages 167–177, Snowbird, {UT}, 1990.},
year = {1990}
}
note = {http://www.w3.org/{TR}/2000/{REC}-xml-20001006.},
@misc{bray-1,
author = {Bray, C. S.-M. Tim and Paoli, Jean and Maler, E.},
title = {Extensible markup language (xml) 1.0},
year = {1006}
}
@misc{tullis-1,
author = {Tullis, T. S.},
title = {A computer-based tool for evaluating alphanumeric displays},
note = {In Proceedings of {IFIP} {INTERACT}’84: Human-Computer Interaction, Evaluation—Approaches and Methods, pages 719–723, 1984.},
year = {1984}
}
@inproceedings{vanderzanden-1,
author = {Vander Zanden, B. and Myers, B. A.},
title = {Automatic, look-and-feel independent dialog creation for graphical user interfaces},
booktitle = {{ACM} {CHI}’90 Conference on Human Factors in Computing Systems},
series = {Constraint Based {UI} Tools},
pages = {27-–34},
year = {1990},
}
@misc{weitzman-1,
author = {Weitzman, L. and Wittenburg, K.},
title = {Relational grammars for interactive design},
note = {In E. P. Glinert and K. A. Olsen, editors, Proc. {IEEE} Symp. Visual Languages, {VL}, pages 4–11. {IEEE} Press, 24–27 Aug. 1993.},
year = {1993}
}
@misc{weitzman-2,
author = {Weitzman, L. and Wittenburg, K.},
title = {Automatic presentation of multimedia documents using relational grammars},
note = {In Proceedings of the Second {ACM} International Conference on Multimedia ({MULTIMEDIA} ’94), pages 443–452, New York, Oct. 1994. {ACM} Press.},
year = {1994}
}
@misc{zhou-1,
author = {Zhou, M. X. and Feiner, S. K.},
title = {Data characterization for automatically visualizing heterogeneous information},
note = {In Proceedings {IEEE} Symposium on Information Visualization, pages 13–20. {IEEE}, 1996.},
year = {1996}
}
@misc{zhou-2,
author = {Zhou, M. X. and Feiner, S. K.},
title = {Top-down hierarchical planning of coherent visual discourse},
note = {In J. Moore, E. Edmonds, and A. Puerta, editors, Proceedings of the International Conference on Intelligent User Interfaces, pages 129–136, New York, 1997. {ACM} Press.},
year = {1997}
}
@misc{zhou-3,
author = {Zhou, M. X. and Ma, S.},
title = {Toward applying machine learning for to design rule acquisition for automated graphics generation},
note = {Technical report, {IBM} Watson Research Center, 1999.},
year = {1999}
}
url = {http://www.computerhistory.org/collections/catalog/102745695},
@misc{austin-1,
author = {Austin, Dennis},
title = {Beginnings of \ppt: A Personal Technical Story},
year = {2009}
}
@misc{parks-1,
author = {Parks, Bob},
title = {Death to \ppt},
year = {2012}
}
@misc{vandermeersch-1,
author = {Vandermeersch, Joris and Timbermont, Stijn},
title = {Compiling Mutually Tail-Recursive Functions Into Iterative Loops},
year = {2009}
}
@misc{sundaram-1,
author = {Sundaram, Elango},
title = {Excelling in Excel with {Java}},
year = {2004}
}
url = {http://link.springer.com/book/10.1007\%2F978-3-319-11746-1},
@inproceedings{roels-1,
author = {Roels, Reinout and Signer, Beat},
title = {MindXpres: An Extensible Content-driven Cross-Media Presentation Platform},
booktitle = {Web Information Systems Engineering --- {WISE} 2014},
series = {Information Systems and Applications, incl. Internet/Web, and {HCI}},
volume = {8787},
year = {2014},
isbn = {978-3-319-11745-4, 978-3-319-11746-1},
location = {Thessaloniki, Greece},
pages = {215--230},
numpages = {16},
publisher = {Springer International Publishing},
}
@book{tufte-1,
author = {Tufte, Edward Rolf},
title = {The Cognitive Style of \ppt: Pitching Out Corrupts Within},
publisher = {Graphics Press},
year = {2003}
}
@article{farkas-1,
author = {Farkas, David K.},
title = {Toward a better understanding of \ppt deck design},
journal = {Information Design Journal},
number = {2},
pages = {162--171},
volume = {14},
year = {2006}
}
url = {http://doi.acm.org/10.1145/208344.208353},
@article{nelson-1,
author = {Nelson, Theodor Holm},
title = {The Heart of Connection: Hypermedia Unified by Transclusion},
journal = {Commun. {ACM}},
issue_date = {Aug. 1995},
volume = {38},
number = {8},
month = aug,
year = {1995},
issn = {0001-0782},
pages = {31--33},
numpages = {3},
doi = {10.1145/208344.208353},
acmid = {208353},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
}
@article{holzinger-1,
author = {Holzinger, Andreas and Kickmeier-Rust, Michael and Albert, Dietrich},
title = {Dynamic Media in Computer Science Education; Content Complexity and Learning Performance: Is Less More?},
journal = {Journal of Educational Technology \& Society},
volume = {11},
number = {1},
month = jan,
year = {2008},
pages = {279--290},
}
@article{adams-1,
author = {Adams, Catherine},
title = {\ppt, Habits of Mind, and Classroom Culture},
journal = {Journal of Curriculum Studies},
volume = {38},
year = {2006},
pages = {389--411},
number = {4},
doi = {10.1080/00220270600579141},
masid = {5133202}
}
@article{gross-1,
author = {Gross, A. and Harmon, J.E.},
title = {The Structure of \ppt Presentations: The Art of Grasping Things Whole},
journal = {{IEEE} Transactions on Professional Communication},
volume = {52},
number = {2},
month = jun,
pages = {121-137},
year = {2009},
}
url = {http://dx.doi.org/10.1057/palgrave/ivs/9500004},
@article{good-1,
author = {Good, Lance and Bederson, Benjamin B.},
title = {Zoomable User Interfaces As a Medium for Slide Show Presentations},
journal = {Information Visualization},
issue_date = {March 2002},
volume = {1},
number = {1},
month = mar,
year = {2002},
issn = {1473-8716},
pages = {35--49},
numpages = {15},
doi = {10.1057/palgrave/ivs/9500004},
acmid = {941236},
publisher = {Palgrave Macmillan},
keywords = {Jazz, Powerpoint, presentations, spatial hypertext, zoomable user interfaces ({ZUI}s)},
}
url = {http://doi.acm.org/10.1145/1518701.1518786},
@inproceedings{lichtschlag-1,
author = {Lichtschlag, Leonhard and Karrer, Thorsten and Borchers, Jan},
title = {Fly: A Tool to Author Planar Presentations},
booktitle = {Proceedings of the {SIGCHI} Conference on Human Factors in Computing Systems},
series = {{CHI} '09},
year = {2009},
isbn = {978-1-60558-246-7},
location = {Boston, {MA}, {USA}},
pages = {547--556},
numpages = {10},
doi = {10.1145/1518701.1518786},
acmid = {1518786},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {authoring, planar user interfaces, presentation software, slideware, zoomable user interfaces},
}
url = {http://doi.acm.org/10.1145/1459359.1459428},
@inproceedings{lanir-1,
author = {Lanir, Joel and Booth, Kellogg S. and Tang, Anthony},
title = {MultiPresenter: A Presentation System for (Very) Large Display Surfaces},
booktitle = {Proceedings of the 16th {ACM} International Conference on Multimedia},
series = {{MM} '08},
year = {2008},
isbn = {978-1-60558-303-7},
location = {Vancouver, British Columbia, Canada},
pages = {519--528},
numpages = {10},
doi = {10.1145/1459359.1459428},
acmid = {1459428},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {high-resolution displays, human-centered design, multiple displays, presentations},
}
url = {http://doi.acm.org/10.1145/1180639.1180653},
@inproceedings{chen-1,
author = {Chen, Jun-Cheng and Chu, Wei-Ta and Kuo, Jin-Hau and Weng, Chung-Yi and Wu, Ja-Ling},
title = {Tiling Slideshow},
booktitle = {Proceedings of the 14th Annual {ACM} International Conference on Multimedia},
series = {{MULTIMEDIA} '06},
year = {2006},
isbn = {1-59593-447-2},
location = {Santa Barbara, {CA}, {USA}},
pages = {25--34},
numpages = {10},
doi = {10.1145/1180639.1180653},
acmid = {1180653},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {image content analysis, music analysis, photo clustering, slideshow},
}
url = {http://doi.acm.org/10.1145/1226969.1226981},
@inproceedings{signer-1,
author = {Signer, Beat and Norrie, Moira C.},
title = {PaperPoint: A Paper-based Presentation and Interactive Paper Prototyping Tool},
booktitle = {Proceedings of the 1st International Conference on Tangible and Embedded Interaction},
series = {{TEI} '07},
year = {2007},
isbn = {978-1-59593-619-6},
location = {Baton Rouge, Louisiana},
pages = {57--64},
numpages = {8},
doi = {10.1145/1226969.1226981},
acmid = {1226981},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {paper user interface, pen-based input, presentation tool, rapid prototyping},
}
url = {http://doi.acm.org/10.1145/302979.303109},
@inproceedings{nelson-2,
author = {Nelson, Les and Ichimura, Satoshi and Pedersen, Elin R{\o}nby and Adams, Lia},
title = {Palette: A Paper Interface for Giving Presentations},
booktitle = {Proceedings of the {SIGCHI} Conference on Human Factors in Computing Systems},
series = {{CHI} '99},
year = {1999},
isbn = {0-201-48559-1},
location = {Pittsburgh, Pennsylvania, {USA}},
pages = {354--361},
numpages = {8},
doi = {10.1145/302979.303109},
acmid = {303109},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {interaction design, paper interfaces, physically embodied interfaces, presentation applicance, tatic interaction},
}
url = {http://doi.acm.org/10.1145/2379790.2379795},
@article{spicer-1,
author = {Spicer, Ryan and Lin, Yu-Ru and Kelliher, Aisling and Sundaram, Hari},
title = {NextSlidePlease: Authoring and Delivering Agile Multimedia Presentations},
journal = {{ACM} Trans. Multimedia Comput. Commun. Appl.},
issue_date = {November 2012},
volume = {8},
number = {4},
month = nov,
year = {2012},
issn = {1551-6857},
pages = {53:1--53:20},
articleno = {53},
numpages = {20},
doi = {10.1145/2379790.2379795},
acmid = {2379795},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {Presentations, authoring, slideware},
}
url = {http://doi.acm.org/10.1145/2470654.2470749},
@inproceedings{edge-1,
author = {Edge, Darren and Savage, Joan and Yatani, Koji},
title = {HyperSlides: Dynamic Presentation Prototyping},
booktitle = {Proceedings of the {SIGCHI} Conference on Human Factors in Computing Systems},
series = {{CHI} '13},
year = {2013},
isbn = {978-1-4503-1899-0},
location = {Paris, France},
pages = {671--680},
numpages = {10},
doi = {10.1145/2470654.2470749},
acmid = {2470749},
publisher = {{ACM}},
address = {New York, {NY}, {USA}},
keywords = {grounded theory, powerpoint, presentations, slideware},
}
url = {http://www.editlib.org/p/14625},
@inproceedings{garcia-1,
author = {Garcia, Penny},
title = {Retooling \ppt for Hypermedia Authoring},
editor = {Richard Ferdig and Caroline Crawford and Roger Carlsen and Niki Davis and Jerry Price and Roberta Weber and Dee Anna Willis},
booktitle = {Proceedings of Society for Information Technology \& Teacher Education International Conference 2004},
year = {2004},
pages = {4098--4099},
address = {Atlanta, {GA}, {USA}},
publisher = {Association for the Advancement of Computing in Education ({AACE})},
}
@inproceedings{suss-1,
author = {S\"uß, Christian and Freitag, Burkhard},
title = {{LMML} --- The Learning Material Markup Language Framework},
booktitle = {Proceedings of Workshop {ICL}},
location = {Villach, Austria},
month = sep,
year = {2002},
}
@inproceedings{fisler-1,
author = {Fisler, Jo\"el and Bleisch, Susanne},
title = {{eLML}, the eLesson Markup Language: Developing sustainable e-Learning Content Using an Open Source {XML} Framework},
booktitle = {{WEBIST} 2006 --- International Conference on Web Information Systems and Technologies},
location = {Setubal, Portugal},
month = apr,
year = {2006},
}