Newer
Older
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
title={WATSON: a gateway for the semantic web},
url={http://oro.open.ac.uk/23561/},
journal={Poster Session at 4th ESWC},
author={d{'}Aquin, Mathieu and Sabou, Marta and Dzbor, Martin and Baldassarre, Claudio and
Gridinoc, Laurian and Angeletou, Sofia and Motta, Enrico},
year={2007}}
@article{dAquinMotta:WatsonMore2011,
title={Watson, more than a Semantic Web search engine},
volume={2},
url={http://oro.open.ac.uk/28571/},
number={1},
journal={Semantic Web},
publisher={IOS Press},
author={d{'}Aquin, Mathieu and Motta, Enrico},
year={2011},
pages={55--63}}
@article{dAquinEtAl:WatsonNextGen2007,
title={Watson: supporting next generation semantic web applications},
url={http://oro.open.ac.uk/23560/}, journal={Knowledge Creation Diffusion Utilization}, author={d'Aquin, Mathieu and Baldassarre, Claudio and Gridinoc, Laurian and Sabou, Marta and Angeletou, Sofia and Motta, Enrico}, year={2007}}
@inproceedings{AuLeh:whilic07,
author = {S{\"o}ren Auer and Jens Lehmann},
title = {What have Innsbruck and Leipzig in common? Extracting Semantics from Wiki Content},
crossref = {eswc2007},
pages = {503--517}}
@online{Burdick:isass08,
url={http://www.theiia.org/intAuditor/itaudit/archives/2008/march/improving-spreadsheet-audits-in-six-steps/},
title = {Improving Spreadsheet Audits in Six Steps},
year = {2008},
author = {Tim Burdick}}
@online{Mathcad:URL,
key = {Mathcad},
title = {Mathcad: Optimize your design and engineering},
url = {http://www.ptc.com/products/mathcad},
urldate = {2012-02-24}}
@INPROCEEDINGS{FisRot:EUSEScorpus05,
author = {Marc Fisher and Gregg Rothermel},
title = {The EUSES Spreadsheet Corpus: A Shared Resource for Supporting
Experimentation with Spreadsheet Dependability Mechanisms},
booktitle = {In 1st Workshop on End-User Software Engineering},
year = 2005,
pages = {47--51}
}
@ARTICLE{RohBurLi:amts01,
author = {Gregg Rothermel and Margaret Burnett and Lixin Li and Christopher DuPuis and Andrei Sheretov},
title = {A Methodology for Testing Spreadsheets},
journal = {ACM Transactions on Software Engineering and Methodology},
year = {2001},
volume = {10},
pages = {110--147}
}
@inproceedings{NixOHa:sas01,
author = {David Nixon and Mike O'Hara},
title = {Spreadsheet Auditing Software},
crossref = {EUSPRIG01}}
@article{NixonOHara:SpreadsheetAuditingSoftwareReprint:2010,
author = {David Nixon and Mike O'Hara},
title = {Spreadsheet Auditing Software},
journal = {CoRR},
volume = {abs/1001.4293},
year = {2010}}
@online{truenumbers:URL,
key={truenumbers},
title = {truenumbers},
url = {http://www.truenum.com},
urldate = {2012-02-24}}
@online{Cinderella:URL,
key={Cinderella},
title = {Cinderella: Interactive Geometry Software},
url = {http:\\www.cinderella.de},
urldate = {2012-02-24}}
@online{SemanticDesktop:URL,
key={Semantic Desktop},
title = {Semantic Desktop},
url = {http://www.semanticdesktop.org/},
urldate = {2012-02-24}}
@inproceedings{DanielEtAl:TowardsProcessMashups2010,
author = {Daniel, Florian and Koschmider, Agnes and Nestler, Tobias and Roy, Marcus and Namoun, Abdallah},
title = {Toward process mashups: key ingredients and open research challenges},
booktitle = {Proceedings of the 3rd and 4th International Workshop on Web APIs and Services Mashups},
series = {Mashups '09/'10},
year = 2010,
isbn = {978-1-4503-0418-4},
location = {Ayia Napa, Cyprus},
pages = {9:1--9:8},
articleno = 9,
numpages = 8,
url = {http://doi.acm.org/10.1145/1944999.1945008},
doi = {http://doi.acm.org/10.1145/1944999.1945008},
acmid = 1945008,
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{SalminenEtAl:ClientSideMashups2010,
author = {Salminen, Arto and Mikkonen, Tommi and Nyrhinen, Feetu and Taivalsaari, Antero},
title = {Developing client-side mashups: experiences, guidelines and the road ahead},
booktitle = {Proceedings of the 14th International Academic MindTrek Conference: Envisioning Future Media Environments},
series = {MindTrek '10},
year = 2010,
isbn = {978-1-4503-0011-7},
location = {Tampere, Finland},
pages = {161--168},
numpages = 8,
url = {http://doi.acm.org/10.1145/1930488.1930523},
doi = {http://doi.acm.org/10.1145/1930488.1930523},
acmid = 1930523,
publisher = {ACM},
address = {New York, NY, USA},
keywords = {mashup development, mashups, web applications, web engineering, web-based software development},
}
@inproceedings{NestlerEtAl:AppsAtPresLayer2011,
author = {Nestler, Tobias and Namoun, Abdallah and Schill, Alexander},
title = {End-user development of service-based interactive web applications at the presentation layer},
booktitle = {Proceedings of the 3rd ACM SIGCHI symposium on Engineering interactive computing systems},
series = {EICS '11},
year = 2011,
isbn = {978-1-4503-0670-6},
location = {Pisa, Italy},
pages = {197--206},
numpages = 10,
url = {http://doi.acm.org/10.1145/1996461.1996521},
doi = {http://doi.acm.org/10.1145/1996461.1996521},
acmid = 1996521,
publisher = {ACM},
address = {New York, NY, USA},
keywords = {composition at the presentation layer, end-user programming, service frontend},
}
@inproceedings{WongHong:Marmite2007,
author = {Wong, Jeffrey and Hong, Jason I.},
title = {Making mashups with marmite: towards end-user programming for the web},
booktitle = {Proceedings of the SIGCHI conference on Human factors in computing systems},
series = {CHI '07},
year = 2007,
isbn = {978-1-59593-593-9},
location = {San Jose, California, USA},
pages = {1435--1444},
numpages = 10,
url = {http://doi.acm.org/10.1145/1240624.1240842},
doi = {http://doi.acm.org/10.1145/1240624.1240842},
acmid = 1240842,
publisher = {ACM},
address = {New York, NY, USA},
keywords = {end-user programming, mashup, spreadsheet, web services},
}
@online{drupal:booksmodule,
label={DruB},
title = {Book module: Creating Structured Documents | drupal.org},
url = {https://drupal.org/node/284},
urldate = {2012-04-22}}
@online{XULRunner,
title = {XULRunner Runtime Environment},
url = {https://developer.mozilla.org/en/XULRunner},
urldate = {2012-02-29},}
@online{xul:online,
title = {XUL language},
url = {https://developer.mozilla.org/en/XUL},
urldate = {2012-01-30},}
@online{trixie:online,
title = {Trixie addon},
url = {http://www.bhelpuri.net/Trixie/},
urldate = {2012-01-30},}
@online{semanticweb:online,
title = {Semantic Web website},
url = {http://semanticweb.org/},
urldate = {2012-01-29},}
@online{semanticdesktop:online,
tile = {Semantic Desktop website},
url = {http://www.semanticdesktop.org/},
urldate = {2012-01-29},}
@online{solidworks:online,
title = {Solidworks CAD software},
url = {http://www.solidworks.com/},
urldate = {2012-01-29},}
@online{catia:online,
title = {CATIA CAD software},
url = {http://www.3ds.com/products/catia},
urldate = {2012-01-29},}
@online{freecad:online,
title = {FreeCAD software},
url = {http://sourceforge.net/projects/free-cad/},
urldate = {2012-01-29},}
@inproceedings{SI:ContentAnalysisClassificationMath11,
author = {Wolfram Sperber and Patrick D. F. Ion},
title = {Content analysis and classification in mathematics},
booktitle = {Classification \& {ontology}: formal approaches and access to knowledge},
editor = {Aida Slavic and Edgardo Civallero},
eventtitle = {International UDC seminar},
eventdate = {2011-09-19/2011-09-20},
venue = {The Hague, Netherlands},
pages = {129--144},
publisher = {Ergon},
location = {W{\"u}rzburg},
}
@inproceedings{IS:MKM11,
author = {Patrick Ion and Wolfram Sperber},
title = {Some facets of knowledge management in mathematics},
booktitle = {Facets of Knowledge Organization},
eventtitle = {ISKO UK biennial conference},
eventdate = {2011-07-04/2011-07-05},
venue = {London},
url = {http://www.iskouk.org/conf2011/}
}
@phdthesis{Assem:ConvertingIntegratingVocabSemWeb10,
title = {Converting and Integrating Vocabularies for the Semantic Web},
author = {Mark F. J. van Assem},
school = {Vrije Universiteit Amsterdam},
year = 2010,
date = {2010-10-01},
url = {http://hdl.handle.net/1871/16148}}
@misc{Saffer:PersonaNonGrata,
author = {Dan Saffer},
title = {Persona Non Grata},
url = {http://www.adaptivepath.com/ideas/e000524},
year = {2005},
urldate = {2011-05-06},
note = {http://www.adaptivepath.com/ideas/e000524}
}
@book{Smolka:peism11,
author = {Gert Smolka},
title = {Programmierung -- eine Einf{\"u}hrung in die Informatik mit Standard ML},
publisher = {Oldenbourg Wissenschaftsverlag},
year = 2011,
note = {ISBN: 978-3486705171},
edition = {corrected}}
@book{Teetor:RC11,
author = {Paul Teetor},
title = {R Cookbook},
publisher = {O'Reilly},
url = {http://oreilly.com/catalog/9780596809157},
year = 2011,
note = {ISBN: 978-3486705171},
edition = {second},
abstract = {Perform data analysis with R quickly and efficiently
with the task-oriented recipes in this cookbook.
Although the R language and environment include
everything you need to perform statistical work right
out of the box, its structure can often be difficult
to master. R Cookbook will help both beginners and
experienced statistical programmers unlock and use the
power of R.}
}
@misc{Frege:b79,
author={Gottlob Frege},
title={Begriffsschrift: eine der arithmetischen nachgebildete Formelsprache des reinen Denkens},
place={Halle},
year = {1879}}
@book{Scheinermann:CPlusPlus,
author = {Edward Scheinermann},
title = {C++ for Mathematicians: An Introduction For Students and Professionals},
year = {2006},
isbn = {158488584X},
publisher = {CRC Press Inc},
}
@Misc{Brown:LearningInDigitalAge,
author = {John Seely Brown},
title = {Learning in the Digital Age},
howpublished = {Available at {\url{http://net.educause.edu/ir/library/pdf/FFPIU015.pdf}}},
year = 2005,
note = {Accessed on 2011-05-11}
}
@online{GitLab:on,
label = {GL},
url = {http://gitlab.org},
title = {GitLab},
urldate = {2014-02-24}}
@online{GitHub:on,
label = {GH},
url = {http://gitlab.org},
title = {GitHub: Build software better, together},
urldate = {2014-02-24}}
@online{GitHub:upr,
author = {GitHub},
title = {Using Pull Requests},
url = {https://help.github.com/articles/using-pull-requests},
urldate = {2014-04-27}}
@inproceedings{Slattery:EditThisPage,
author = {Shaun P. Slattery},
title = {``edit this page'': the socio-technological infrastructure of a wikipedia article},
crossref = {SIGDOC09},
pages = {289--296},
numpages = {8},
url = {http://doi.acm.org/10.1145/1621995.1622052},
doi = {http://doi.acm.org/10.1145/1621995.1622052},
acmid = {1622052},
publisher = {ACM},
keywords = {activity theory, infrastructure, wiki, wikipedia}
}
@article{FollowYourNose,
author = {Summers, Ed},
year = 2008,
title = {Following your nose to the Web of Data},
journal = {Information Standards Quarterly},
volume = 20,
number = 1,
url = {http://inkdroid.org/journal/following-your-nose-to-the-web-of-data}}
@book{HB:LinkedData11,
author = {Tom Heath and Christian Bizer},
year = {2011},
title = {{Linked Data}: Evolving the Web into a Global Data Space},
edition = 1,
series = {Synthesis Lectures on the Semantic Web: Theory and Technology},
publisher = {Morgan \& Claypool},
url = {http://linkeddatabook.com},
address = {San Rafael, CA}}
@online{DD:LinkedDataPatterns,
author = {Leigh Dodds and Ian Davis},
date = {2011-08-19},
year = 2011,
title = {Linked Data Patterns},
subtitle = {A pattern catalogue for modelling, publishing, and consuming Linked Data},
url = {http://patterns.dataincubator.org/book/},
}
@incollection{Kirsh:ProblemSolvingAndSituatedCognition,
author = {David Kirsh},
title = {Problem Solving and Situated Cognition},
booktitle = {Handbook of Situated Cognition},
editor = {Philipp Robbins and M. Aydede},
year = {2009},
pages = {264--306},
}
@online{DoCo,
title = {DoCo, the Document Components Ontology},
author = {David Shotton and Silvio Peroni},
url = {http://purl.org/spar/doco},
date = {2011-05-05},
urldate = {2011-12-24},}
@online{SPAR,
title = {SPAR -- Semantic Publishing and Referencing},
url = {http://purl.org/spar},
urldate = {2011-12-24},}
@online{CuL,
title = {{C\&L Computer- und Literaturverlag GmbH}},
url = {http://www.cul.de},
urldate = {2011-05-19}}
@online{Engelschall:WML,
title = {{Website Meta Language (WML)}},
author = {Ralf S. Engelschall},
url = {http://www.thewml.org},
urldate = {2011-05-19}}
@inproceedings{BazireBrezillon:UnderstandingContext2005,
author = {Mary Bazire and
Patrick Br{\'e}zillon},
title = {Understanding Context Before Using It},
booktitle = {CONTEXT},
year = {2005},
pages = {29--40},
ee = {http://dx.doi.org/10.1007/11508373_3},
crossref = {DBLP:conf/context/2005},
bibsource = {DBLP, http://dblp.uni-trier.de}
}
@inproceedings{Lehtonen:UIForDocumentAssembly_2002,
author = {Lehtonen, Miro and Petit, Renaud and Heinonen, Oskari and Lind\'{e}n, Greger},
title = {A dynamic user interface for document assembly},
booktitle = {Proceedings of the 2002 ACM symposium on Document engineering},
series = {DocEng '02},
year = {2002},
isbn = {1-58113-594-7},
location = {McLean, Virginia, USA},
pages = {134--141},
numpages = {8},
url = {http://doi.acm.org/10.1145/585058.585083},
doi = {http://doi.acm.org/10.1145/585058.585083},
acmid = {585083},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {BML, XML, XSLT, document assembly, dynamic user interfaces, structured documents},
}
@inproceedings{Kato:SeriousGamesKeyNote2011,
author = {Kato, Pamela Machiko},
title = {Using serious games to improve communication: talking about a revolution},
booktitle = {Proceedings of the 29th ACM international conference on Design of communication},
series = {SIGDOC '11},
year = {2011},
isbn = {978-1-4503-0936-3},
location = {Pisa, Italy},
pages = {261--262},
numpages = {2},
url = {http://doi.acm.org/10.1145/2038476.2038527},
doi = {10.1145/2038476.2038527},
acmid = {2038527},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {biofeedback, communication, health care, patients, physicians, serious games},
}
@inproceedings{Haramundanis:ModularizingGlossaries_2010,
author = {Haramundanis, Katherine},
title = {Modularizing in glossaries: an experience report},
crossref = {SIGDOC10},
pages = {131--134},
numpages = {4},
url = {http://doi.acm.org/10.1145/1878450.1878473},
doi = {http://doi.acm.org/10.1145/1878450.1878473},
acmid = {1878473},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {database, design of communication, development process, information design, technology, translation, writing standards},
}
@inproceedings{Haramundanis:ModularizationAsParadigm_2009,
author = {Haramundanis, Katherine},
title = {Experience report: modularization - the new paradigm for the information engineer},
crossref={SIGDOC09},
pages = {151--154},
numpages = {4},
url = {http://doi.acm.org/10.1145/1621995.1622023},
doi = {http://doi.acm.org/10.1145/1621995.1622023},
acmid = {1622023},
keywords = {design of communication, development process, information design, technology, translation, writing standards}
}
@inproceedings{SousaEtAl:OrgWikiForKM_2010,
author = {Sousa, Fernando and Aparicio, Manuela and Costa, Carlos J.},
title = {Organizational wiki as a knowledge management tool},
crossref={SIGDOC10},
pages = {33--39},
numpages = {7},
url = {http://doi.acm.org/10.1145/1878450.1878457},
doi = {http://doi.acm.org/10.1145/1878450.1878457},
acmid = {1878457},
keywords = {SECI, knowledge management, learning organization, wiki},
}
@incollection {GrabowskiSchwarzweller:RevisionsForMaintenance,
author = {Grabowski, Adam and Schwarzweller, Christoph},
title = {Revisions as an Essential Tool to Maintain Mathematical Repositories},
crossref = {MKM07},
pages = {235--249},
url = {http://dx.doi.org/10.1007/978-3-540-73086-6_20}
}
@misc{AESstandard:01,
key = {AES},
url = {http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf},
title = {Announcing the {ADVANCED ENCRYPTION STANDARD} ({AES})},
institution = {National Institute of Standards and Technology},
year = 2001,
type = {Federal Information Processing Standards Publication},
number = 197}
@inproceedings{MANTIC,
author = {Glauco Mantegari and Matteo Palmonari and Giuseppe Vizzari},
title = {Rapid Prototyping a Semantic Web Application for Cultural Heritage{: The Case of MANTIC}},
crossref={eswc2010-2},
}
@article{HilLop:wtcscci11,
title = {The World's Technological Capacity to Store, Communicate, and Compute Information},
author = {Martin Hilbert and Priscila L{\'o}pez},
journal = {Science},
volume = {331},
month = {feb},
year = {2011},
url = {http://www.sciencemag.org/content/331/6018/692.full.pdf},
doi = {10.1126/science.1200970}}
@book{Smolka:peism08,
author = {Gert Smolka},
title = {Programmierung - eine Einf{\"u}hrung in die Informatik mit Standard ML},
publisher = {Oldenbourg},
year = {2008},
isbn = {978-3-486-58601-5},
ee = {http://www.oldenbourg-wissenschaftsverlag.de/olb/de/1.c.1321689.de}}
@InBook{FoundStatNLP,
booktitle = {Foundations of Statistical Natural Language Processing},
title = {Statistical Inference: n-gram Models over Sparse Data},
author = {Christopher D. Manning and Hinrich Sch{\"u}tze},
publisher = {{MIT Press}},
year = {1999},
address = {Cambridge, Massachusetts},
chapter = {6},
keywords = {lamapunbibs}
}
@online{xampp:on,crossref={xampp:base},urldate={2012-04-08}}
@misc{xampp:webpage,crossref={xampp:base},
howpublished={\url{http://www.apachefriends.org/en/xampp.html}}}
@misc{xampp:base,
key = {XAMPP},
title={apache friends - Xampp},
url={http://www.apachefriends.org/en/xampp.html}}
@online{apachepoi:on,crossref={apachepoi:base},urldate={2012-04-08},label={POI}}
@misc{apachepoi:webpage,crossref={apachepoi:base},
howpublished={\url{https://poi.apache.org/}}}
@misc{apachepoi:base,
key = {POI},
title={Apache POI - the Java API for Microsoft Documents},
url={https://poi.apache.org/}}
@online{netspeak:on,crossref={netspeak:base},urldate={2013-04-17}}
@misc{netspeak:webpage,crossref={netspeak:base},
howpublished={\url{http://www.netspeak.org/}}}
@misc{netspeak:base,
key = {Netspeak},
label = {NSpk},
title={Netspeak - One words word leads to another},
url={http://www.netspeak.org/}}
@online{jtidy:on,crossref={jtidy:base},urldate={2012-04-08}}
@misc{jtidy:webpage,crossref={jtidy:base},
howpublished={\url{http://jtidy.sourceforge.net/}}}
@misc{jtidy:base,
key = {JTidy},
title={JTidy},
url={http://jtidy.sourceforge.net/}}
@online{spreadsheet-naming:on,crossref={spreadsheet-naming:base},urldate={2012-04-08}}
@misc{spreadsheet-naming:webpage,crossref={spreadsheet-naming:base},
howpublished={\url{http://spreadsheetpage.com/index.php/tip/naming_techniques/}}}
@misc{spreadsheet-naming:base,
title={Spreadsheet Page Excel Tips: Naming Techniques},
url={http://spreadsheetpage.com/index.php/tip/naming_techniques/}}
@online{Volkman:cpfb:on,crossref={Volkman:cpfb:base},urldate = {2011-02-28}}
@misc{Volkman:cpfb:url,crossref={Volkman:cpfb:base},
howpublished = {\url{http://www.codeguru.com/csharp/.net/net_general/patterns/article.php/c12805__2/Classic-Parsing-with-Flex-and-Bison.htm}},
note = {visited Feb 2011},
year = 2011}
@misc{Volkman:cpfb:base,
author = {Victor Volkman},
title = {Classic Parsing with Flex and Bison},
url = {http://www.codeguru.com/csharp/.net/net_general/patterns/article.php/c12805__2/Classic-Parsing-with-Flex-and-Bison.htm}}
@inproceedings{CarFar:hlt08,
author = {Carette, Jacques and Farmer, William M.},
title = {High-Level Theories},
crossref={CICM08},
pages = {232--245},
doi = {10.1007/978-3-540-85110-3_19}}
@PhdThesis{Baraka:fpdmws06,
author = {Rebhi S. Baraka},
title = {A Framework for Publishing and Discovering Mathematical Web Services},
school = {Johannes Kepler Universit{\"a}t Linz},
year = 2006,
url = {http://www.risc.uni-linz.ac.at/publications/download/risc_2945/06-04.pdf},
pubs = {projects/omdocbiblio}}
@inproceedings{Farmer:btc07,
author = {Farmer, William M.},
title = {Biform Theories in Chiron},
crossref = {MKM07},
pages = {66--79},
url = {http://dx.doi.org/10.1007/978-3-540-73086-6_6},
doi = {http://dx.doi.org/10.1007/978-3-540-73086-6_6}}
@Article{CorDavJefWat:aas00,
title = "{According to Abramowitz and Stegun}",
author = {Corless, R.M. and Davenport, J.H. and Jeffrey, D.J. and Watt, S.M.},
journal = {SIGSAM Bulletin 2},
volume = {34},
year = {2000},
pages = {58--65}}
@Article{Bewig:iecnsss03,
title = "{In Excel, Cell Names Spell Speed, Safety}",
author = {Philip L. Bewig},
journal = {Journal of Accountancy},
url = {http://www.journalofaccountancy.com/issues/2003/nov/inexcelcellnamesspellspeedsafety.htm},
month = nov,
year = {2003}}
@Unpublished{Liguda:SDU,
author = {Christian Liguda},
title = {From Spreadhsheet Data to Structured Knowledge},
note = {manuscript, in preparation},
month = feb,
year = 2013}
@Online{SysMO-DB-SEEK,
title = {{SysMO-DB SEEK}},
url = {http://www.sysmo-db.org/seek/},
urldate = {2010-11-30},
}
@Online{DocTip:online,crossref={DocTip:base},urldate={2010-11-30}}
@misc{DocTip:URL,crossref={DocTip:base},
howpublished = {\webpageat\url{http://www.informatik.uni-bremen.de/agbkb/forschung/formal_methods/DocTIP/}}}
@misc{DocTip:base,
key = {DocTIP},
title = {{DocTIP}: Document and Tool Integration Platform},
url = {http://www.informatik.uni-bremen.de/agbkb/forschung/formal_methods/DocTIP/}
}
@INPROCEEDINGS{vonKnethen:tmsrces01,
author = {Antje von Knethen},
title = {A trace model for system requirements changes on embedded systems},
booktitle = {4th International Workshop on Principles of Software},
year = {2001},
pages = {17--26}
}
@INPROCEEDINGS{vonKnethen:acsbtm02,
author = {Antje von Knethen},
title = {Automatic change support based on a trace model},
booktitle = {Proceedings of the Traceability Workshop},
year = {2002},
address = {Edinburgh, UK},
timestamp = {2007.10.19}
}
@INPROCEEDINGS{Asperti:UsabilityInteractiveProvers10,
author = {Andrea Asperti and Sacerdoti Coen, Claudio},
title = {Some Considerations on the Usability of Interactive Provers},
crossref = {CICM10},
pages = {147--156}}
@INPROCEEDINGS{Hutter:smhd09,
author = {Dieter Hutter},
title = {Semantic Management of Heterogeneous Documents (Invited Talk)},
booktitle = {Proceedings of the Mexican International Conference on Artificial Intelligence (MICAI-2009)},
year = {2009},
publisher = {Springer},
series = {LNAI},
number = 5845,
pages = {1--14}}
@Online{JST-flange-failure:online,
title = {Leakage and fire from a flange with a special shape at the reactor outlet at a gas oil medium-pressure hydrocracker},
organization = {JST Failure Knowledge Base},
url = {http://shippai.jst.go.jp/en/Detail?fn=0&id=CC1300006&},
urldate = {2010-12-15}
}
@inproceedings{MissierEtAl:WorkfSemProvLOD10,
author = {Paolo Missier and Satya S. Sahoo and Jun Zhao and Carole Goble and Amit Sheth},
title = {Janus: from Workflows to Semantic Provenance and Linked Open Data},
booktitle = {Proceedings of the 3\textsuperscript{rd} Provenance and Annotation Workshop},
editors = {Deborah L. McGuinness and Luc Moreau},
eventdate = {2010-06-15/2010-06-16},
venue = {Troy, NY, USA},
year = {2010}
}
@InProceedings{DeRoureEtAl:EvolutionMyExperiment10,
author = {De Roure, David and Carole Goble and Sergejs Aleksejevs and Sean Bechhofer and Jiten Bhagat and Don Cruickshank and Paul Fisher and Nandkumar Kollara and Danius Michaelides and Paolo Missier and David Newman and Marcus Ramsden and Marco Roos and Katy Wolstencroft and Ed Zaluska and Jun Zhao},
title = {The Evolution of {myExperiment}},
crossref = {escience2010}
}
@InProceedings{BechhoferEtAl:LinkedDataScientists10,
author = {Sean Bechhofer and John Ainsworth and Jiten Bhagat and Iain Buchan and Philip Couch and Don Cruickshank and De Roure, David and Mark Delderfield and Ian Dunlop and Matthew Gamble and Carole Goble and Danius Michaelides and Paolo Missier and Stuart Owen and David Newman and Shoaib Sufi},
title = {Why Linked Data is Not Enough for Scientists},
pages = {300--307},
crossref = {escience2010}
}
@Online{RKB:ACM,
editor = {{Advanced Knowledge Technologies (AKT)}},
title = {acm.rkbexplorer.com},
url = {http://acm.rkbexplorer.com},
urldate = {2010-11-30},
}
@Article{AGN:SocProcProgVerif09,
author = {Andrea Asperti and Herman Geuvers and Raja Natarajan},
title = {Social Processes, Program Verification and all that.},
journal = {Mathematical Structures in Computer Science},
year = 2009,
volume = 19,
number = 5,
pages = {877--896},
month = oct}
@Misc{URL:JavaScript,
title = {{Mozilla Developer Center -- JavaScript}},
url = {https://developer.mozilla.org/en/JavaScript},
urldate = {2010-06-05}}
@Misc{URL:JQuery,
title = {{jQuery main website}},
url = {http://jquery.com/},
urldate = {2010-06-05}}
@Online{URL:XPath:online,crossref={URL:XPath:base},urldate = {2010-06-05},label={XPa}}
@Misc{URL:XPath,crossref={URL:XPath:base},key={XPa},
howpublished={\url{http://www.w3.org/TR/xpath/}}}
@techreport{URL:XPath:base,
title = {{XPath Reference}},
url = {http://www.w3.org/TR/xpath/},
institution = {W3C},
type = {Recommendation},
year = 2010}
@Misc{URL:JavaServlet,
title = {{Sun Java Servlet documentation}},
url = {http://java.sun.com/products/servlet/},
urldate = {2010-06-05}}
@Misc{URL:Tomcat,
key = {ATC},
title = {{Apache Tomcat website}},
url = {http://tomcat.apache.org/},
urldate = {2010-06-05}}
@Misc{URL:AJAX,
title = {{AJAX -- descriptive article}},
url = {http://www.adaptivepath.com/ideas/essays/archives/000385.php},
urldate = {2010-06-05}}
@Misc{URL:Firebug,
title = {{Firebug extension for Firefox}},
url = {http://getfirebug.com/},
urldate = {2010-06-05}}
@Misc{URL:ExpressionML,
title = {{ExpressionML specification}},
url = {http://reference.wolfram.com/mathematica/ref/format/ExpressionML.html},
urldate = {2010-06-05}}
@Misc{URL:SameOriginPolicy,
title = {{Mozilla Developer Center documentation for Same Origin Policy}},
url = {https://developer.mozilla.org/En/Same_origin_policy_for_JavaScript},
urldate = {2010-06-05}}
@Misc{URL:JavaMashup,
title = {{Mashup Styles, Part 1: Server-Side Mashups}},
url = {http://java.sun.com/developer/technicalArticles/J2EE/mashup_1/},
urldate = {2010-06-05}}
@Misc{URL:MathDoxOM2M,
title = {{MathDox webservice for OpenMath to Mathematica conversion}},
url = {http://mathdox.org/phrasebook/mathematica/eval_openmath_native},
urldate = {2010-06-05}}
@Misc{URL:WITM,
title = {{Web Interface to Mathematica}},
url = {http://witm.sourceforge.net/},
urldate = {2010-06-05}}
@Misc{URL:SentidoFormEditor,
title = {{Sentido Formula Editor}},
url = {http://www.matracas.org/sentido/index.html.en},
urldate = {2010-06-05}}
@Misc{URL:jQueryUI,
title = {{jQuery UI website}},
url = {http://jqueryui.com/},
urldate = {2010-06-05}}
@Misc{URL:AJAXnoJS,
title = {{Proof of Concept: AJAX without JavaScript}},
url = {http://jonathanscorner.com/ajax/},
urldate = {2010-04-26}}
@InProceedings{DBPH:DevOntoCollabEngMechatronics07,
author = {Violeta Damjanovi{\'c} and Wernher Behrendt and Manuela Pl{\"o}{\ss}nig and Merlin Holzapfel},
title = {Developing Ontologies for Collaborative Engineering in Mechatronics},
crossref = {eswc2007},
pages = {190--204}}
@InProceedings{LFB:ReqOntoEngDesign96,
author = {Jinxin Lin and Mark S. Fox and Taner Bilgic},
title = {A Requirement Ontology for Engineering Design},
booktitle = {Proceedings of 3\textsuperscript{rd} International Conference on Concurrent Engineering},
pages = {343--351},
year = 1996,
month = aug,
publisher = {Technomic Publishing Company, Inc.}}
@online{Tennison:HTML5RDFa09,
author = {Jeni Tennison},
title = {{HTML5}/{RDFa} Arguments},
url = {http://www.jenitennison.com/blog/node/124},
urldate = {2010-02-02},
date = {2009-08-21}}
@online{Sargent:ti08,
author = {Murray Sargent},
title = {The invisibles},
url = {https://blogs.msdn.com/b/murrays/archive/2008/08/26/the-invisibles.aspx},
urldate = {2012-04-14},
date = {2008-08-25}}
@online{microhttpd:on,crossref={microhttpd:base},urldate={2011-07-11}}
@misc{microhttpd:web,crossref={microhttpd:base},howpublished={\url{http://www.gnu.org/software/libmicrohttpd/}}}
@MISC{microhttpd:base,
key = {MicroHTTPd},
title = {{GNU MicroHTTPd} Library},
url = {http://www.gnu.org/software/libmicrohttpd/},
note = {\seen Jul 2011}
}
@online{Tennison:CantDoHTML5Microdata09,
author = {Jeni Tennison},
title = {What You Can't Do with {HTML5} Microdata},
url = {http://www.jenitennison.com/blog/node/103},
urldate = {2010-02-02},
date = {2009-05-13}}
@InProceedings{Cartier:MathUniversalReliable10,
author = {Pierre Cartier},
title = {Can we make Mathematics universal as well as fully reliable?},
crossref = {CICM10},
note = {Invited Talk}}
@Online{EuDML:on,
label = {EUD},
title = {{EuDML} -- The {European} Digital Mathematics Library},
url = {http://eudml.eu},
urldate = {2011-08-02}}
@Online{EuDML:UsabilityStudy:2010,
label={EUU},
author={Tim Kitchen},
title = {The European Digital Mathematics Library: Usability Study},
url = {https://wiki.eudml.eu/eudml-w/images/D6.1.pdf},
urldate = {2014-03-14}}
@inproceedings{Zhao:MIR:2008,
author = {Zhao, Jin and Kan, Min-Yen and Theng, Yin Leng},
title = {Math Information Retrieval: User Requirements and Prototype Implementation},
booktitle = {Proceedings of the 8th ACM/IEEE-CS Joint Conference on Digital Libraries},
series = {JCDL '08},
year = {2008},
isbn = {978-1-59593-998-2},
location = {Pittsburgh PA, PA, USA},
pages = {187--196},
numpages = {10},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{Brown:InformationSeekingScientists:1999,
author = {Brown, Cecelia M.},
journal = {JASIS},
keywords = {dblp},
number = 10,
pages = {929-943},
title = {Information Seeking Behavior of Scientists in the Electronic Information Age: Astronomers, Chemists, Mathematicians, and Physicists.},
volume = 50,
year = 1999
}
@InProceedings{BBNS:EuDMLProject11,
title = {Project {EuDML} -- A First Year Demonstration},
author = {Jos{\'e} Borbinha and Thierry Bouche and Aleksander Nowi{\'n}ski and Petr Sojka},
crossref = {CICM11},
pages = {281--284}
}
@InProceedings{SojLis:ismdl11,
title = {Indexing and Searching Mathematics in Digital Libraries -- Architecture, Design and Scalability Issues.},
author = {Sojka, Petr and L{\'i}{\v{s}}ka, Martin},
crossref = {CICM11},
pages = {228--243}}
@Article{Turing:ocnae36,
author = {Alan Turing},
title = {On computable numbers, with an application to the {Entscheidungsproblem}},
journal = {Proceedings of the London Mathematical Society, Series 2},
year = 1936,
volume = 42,
month = jun,
pages = {230--265}}
@phdthesis{Cauderlier16,
author = {Rapha{\"{e}}l Cauderlier},
title = {Object-oriented mechanisms for interoperability between proof systems},
year = {2016},
school = {CNAM}
}
@Article{Turing:cmi50,
author = {Alan Turing},
title = {Computing
Machinery and Intelligence},
journal = {Mind},
year = 1950,
volume = 59,
pages = {433--460}}
@Article{Church:ne36,
author = {Alonzo Church},
title = {A note on the {Entscheidungsproblem}},
journal = {Journal of Symbolic Logic},
year = 1936,
month = may,
pages = {40--41}}
@InProceedings{ABMU:lfw11,
title = {Large Formal Wikis: Issues and Solutions},
author = {Jesse Alama and Kasper Brink and Lionel Mamane and Josef Urban},
pages = {133--148},
crossref = {CICM11},
keywords = {conference}}
@inproceedings{MacMalCos:smsep11,
title = {A Semantic Model for Scholarly Electronic Publishing},
author = {Carlos H. Marcondes},
url = {http://ceur-ws.org/Vol-721/paper-06.pdf},
crossref = {SEPUBLICA11}}
@InProceedings{Chen:ElectronicGeometryTextbook10,
author = {Xiaoyu Chen},
title = {Electronic Geometry Textbook: A Geometric Textbook Knowledge Management System},
pages = {278--292},
crossref = {CICM10},
eprint = {1005.0080v1},
eprinttype = {arxiv},
eprintclass = {cs.AI}}
@InProceedings{UARG:MizarWiki10,
author = {Josef Urban and Jesse Alama and Piotr Rudnicki and Herman Geuvers},
title = {A wiki for {Mizar}: Motivation, considerations, and initial prototype},
pages = {455--469},
eprint = {1005.4552v1},
eprinttype = {arxiv},
eprintclass = {cs.DL},
crossref = {CICM10}}
@inProceedings{KLSY:FormulatorMathMLEditor10,
author = {Andriy Kovalchuk and Vyacheslav Levitsky and Igor Samolyuk and Valentyn Yanchuk},
title = {The Formulator {MathML} Editor Project: User-Friendly Authoring of Content Markup Documents},
crossref = {CICM10},
pages = {385--397},
eprint = {1005.0146v1},
eprinttype = {arxiv},
eprintclass = {cs.DL}}
@InProceedings{Kerber:ProofsProofsProofsProofs10,
author = {Manfred Kerber},
title = {Proofs, proofs, proofs, and proofs},
eprint = {1005.5124v1},
eprinttype = {arxiv},
eprintclass = {cs.AI},
pages = {345--354},
crossref = {CICM10}}
@InProceedings{Libbrecht:NotationCensus10,
author = {Paul Libbrecht},
title = {Notations Around the World: Census and Exploitation},
eprint = {1004.5165v1},
eprinttype = {arxiv},
eprintclass = {cs.DL},
pages = {398--410},
keywords = {lamapunbibs},
crossref = {CICM10}}
@InProceedings{CP:SIOCAction10,
author = {Pierre Antoine Champin and Alexandre Passant},
title = {SIOC in Action},
subtitle = {Representing the Dynamics of Online Communities},
crossref = {ISEMANTICS2010}}
@InCollection{Blum:VModel,
author = {T. Blum and D. Burgartz},
title = {QM-Optimizing der Softwareentwicklung},
booktitle = {QM-Handbuch gem{\"a}{\ss} DIN EN ISO 9001 und Leitfaden f{\"u}r Best-Practices im Unternehmen},
editor = {M. Shu},
year = {1998},
pages = {305--336},
chapter = {9},
publisher = {Kluwer},
note = {ISBN: 3-528-15493-4}}