-
Notifications
You must be signed in to change notification settings - Fork 1
/
bibliography.html
990 lines (850 loc) · 31.8 KB
/
bibliography.html
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="fca.css" />
<title>Formal Concept Analysis Homepage</title>
<meta name="description" content="Formal Concept Analysis is a method of conceptual
knowledge representation and data analysis.">
<meta name="keywords" content="formal concept analysis, conceptual structures,
knowledge representation, data analysis, Galois lattices">
</head>
<body>
<center>
<a href="fca.html">Formal Concept Analysis Homepage</a> --
<a href="fcasitemap.html">Table of Contents/Sitemap</a> --
<a href="https://www.upriss.org.uk">Uta Priss</a>
<img src="lattice.jpg" width=50 style="float: right">
</center>
<hr><p>
Contents:
<a href="#groups">Groups/People</a> --
<a href="#conferences">Conferences</a> --
<a href="#books">Books</a> --
<a href="#applications">Applications</a> --
<a href="#edited">Edited Volumes</a> --
<a href="#dissertations">Dissertations</a>
<h2>A Formal Concept Analysis Bibliography</h2>
<a name="conferences"></a>
<h4>Conferences: <a href="#concepts">CONCEPTS</a>,
<a href="#ICFCA">ICFCA</a>, <a href="#ICCS">ICCS</a>,
<a href="#CLA">CLA</a>, <a href="#other">Other</a></h4>
<a name="concepts"></a>
<table border=1>
<col width="20%"><col width="16%"><col width="10%"><col width="30%">
<tr><th>conference homepages<th>proceedings<th>journal<th> workshops
<tr><td><a href="https://concepts2024.uca.es/">CONCEPTS 2024</a> Cadiz
<td><a href="https://dblp.org/db/conf/concepts/concepts2024.html">
table of contents</a>
<td><a href="https://www.sciencedirect.com/special-issue/10K3K99NV7F">IJAR</a>
<td><a href="https://www.kde.cs.uni-kassel.de/coka/">CoKA</a>,
<a href="https://concepts2024.uca.es/lbacs/">Late Breaking Advances</a>
</table>
<p></p>
<table border=1>
<col width="20%"><col width="16%"><col width="8%"><col width="30%"><col width="16%">
<tr><th>conference homepages<th>proceedings<th>journal
<th>supplem. proceedings<th> workshops
<a name="ICFCA"></a>
<tr><td><a href="https://www.kde.cs.uni-kassel.de/icfca2023/">ICFCA'23</a> Kassel
<td><a href="
https://dblp.org/db/conf/icfca/icfca2023.html">
table of contents</a>
<td>
<td>
<td>PreSCoD,
<a href="https://upriss.github.io/fca/CoNo-Concepts2023.html">CoNo-Concepts</a>
<tr><td><a href="https://icfca2021.sciencesconf.org/">ICFCA'21</a> virtual
<td><a href="
https://dblp.org/db/conf/icfca/icfca2021.html">
table of contents</a>
<td>
<td>
<td><a href="https://icfca2021.sciencesconf.org/resource/page/id/12">RealDataFCA</a>:
<a href="https://ceur-ws.org/Vol-3151/">proceedings</a>
<tr><td><a href="https://www.informatik.fb2.frankfurt-university.de/~icfca2019/">ICFCA'19
</a> Frankfurt
<td><a href="
https://dblp.org/db/conf/icfca/icfca2019.html">
table of contents</a>
<td>
<td>Cristea et al
<a href="http://ceur-ws.org/Vol-2378/">Supplementary Proceedings</a>
<td>Applications and Tools,
<a href="https://link.springer.com/book/9783030932770">BigFCA</a>
<tr><td><a href="http://icfca2017.irisa.fr/">ICFCA'17</a> Rennes
<td><a href="
https://dblp.org/db/conf/icfca/icfca2017.html">
table of contents</a>
<td>
<td>Bertet; Borchmann; Cellier; Ferre:
<a href="https://icfca2017.irisa.fr/files/2017/06/icfca_suppl_final_avec_isbn.pdf">
Supplementary Proceedings (pdf)</a>
<td>Tutorials and Poster session
<tr><td><a href="http://www.matap.uma.es/icfca2015">ICFCA'15</a> Malaga
<td><a href="
https://dblp.org/db/conf/icfca/icfca2015.html">
table of contents</a>
<td>
<td>?
<td><a href="http://ceur-ws.org/Vol-1534/">SNAFCA<a/>,
<a href="http://ceur-ws.org/Vol-1434">FCA&A</a>
<tr><td><a href="http://www.cs.ubbcluj.ro/icfca14/">ICFCA'14</a> Cluj
<td><a href="
https://dblp.org/db/conf/icfca/icfca2014.html">
table of contents</a>
<td>
<td>Studia Universitatis Babes-Bolyai Series Informatica,
<a href="http://www.cs.ubbcluj.ro/~studia-i/2014-icfca/index.php">
Special Issue 2</a>
<td>Workshop for FCA Tools and Applications
<tr><td><a href="http://www.math.tu-dresden.de/icfca13">ICFCA'13</a> Dresden
<td><a href="
https://dblp.org/db/conf/icfca/icfca2013.html">
table of contents</a>
<td>
<td>Cellier; Distel; Ganter: Contributions to the 11th International Conference
on Formal Concept Analysis <a href="
http://www.qucosa.de/fileadmin/data/qucosa/documents/11309/SupplementariesFull.pdf">
(pdf)</a>
<td><a href="toolworkshop13.html">Workshop for FCA Tools and Applications</a>, Cubist
<tr><td><a href="http://www.econ.kuleuven.be/ICFCA/">ICFCA'12</a> Leuven
<td><a href="
https://dblp.org/db/conf/icfca/icfca2012.html">
table of contents</a>
<td>
<td>Domenach; Ignatov; Poelmans:
<a href="http://ceur-ws.org/Vol-876/">Contributions to ICFCA 2012</a>, CEUR
<td><a href="http://ceur-ws.org/Vol-871/">CDUD</a>, Cubist, EEML
<tr><td><a href="http://www.unic.ac.cy/icfca2011/">ICFCA'11</a> Cyprus
<td><a href="
https://dblp.org/db/conf/icfca/icfca2011.html">
table of contents</a>
<td>
<td>Valtchev; Jaeschke (eds.)
<td>
<tr><td><a href="http://w3.uqo.ca/icfca10/">ICFCA'10</a> Agadir
<td><a href="
https://dblp.org/db/conf/icfca/icfca2010.html">
table of contents</a>
<td>
<td>Boumedjout et al: Supplementary Proceedings
<td>FCA Software Workshop
<tr><td><a href="http://www.icfca2009.h-da.de/">ICFCA'09</a> Darmstadt
<td><a href="
https://dblp.org/db/conf/icfca/icfca2009.html">
table of contents</a>
<td>
<td>Wolff, Rudolph, Ferre: Contributions to
ICFCA 2009. Verlag Allg. Wissensch. (3-935924-08-9)
<td>FCA Software Workshop
<tr><td><a href="https://web.archive.org/web/20080225135246/http://www.latece.uqam.ca/icfca08/">ICFCA'08</a> Montreal
<td><a href="
https://dblp.org/db/conf/icfca/icfca2008.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="https://web.archive.org/web/20080113062950/http://www.isima.fr/icfca07/">ICFCA'07</a> Clermont-Ferrand
<td><a href="
https://dblp.org/db/conf/icfca/icfca2007.html">
table of contents</a>
<td>
<td>Gely; Nourine; Kuznetsov; Schmidt: Contributions to ICFCA 2007.
<td>Obiedkov; Roth:
Social Network Analysis and Conceptual Structures: Exploring Opportunities,
<a href="http://camille.roth.free.fr/confs/icfcasna.html">link</a>
<tr><td><a href="http://w3.uqo.ca/icfca06/index2.html">ICFCA'06</a> Dresden
<td><a href="
https://dblp.org/db/conf/icfca/icfca2006.html">
table of contents</a>
<td>
<td>Ganter; Kwuida: Contributions to
ICFCA 2006. Verlag Allg. Wissensch. (3-935924-05-4)
<td>
<tr><td><a href="http://www.cril.univ-artois.fr/icfca05/">ICFCA'05</a> Lens
<td><a href="
https://dblp.org/db/conf/icfca/icfca2005.html">
table of contents</a>
<td>
<td>Ganter; Godin; Mephu Nguifo: Supplementary Volume, Univ. d'Artois.
<td>
<tr><td><!--<a href="http://www.kvocentral.org/icfca04">-->ICFCA'04</a> Sydney
<td><a href="
https://dblp.org/db/conf/icfca/icfca2004.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="https://web.archive.org/web/20030623201028/http://fzbw.de/icfca03">ICFCA'03</a> Darmstadt
<td>
<td><a href="http://www.jucs.org/jucs_10_8">JUCS</a>
<td>
<td>
<a name="ICCS"></a>
<tr><td><a href="https://iccs-conference.org/">ICCS'23</a> Berlin
<td><a href="
https://dblp.org/db/conf/iccs/iccs2023.html">
table of contents</a>
<td>
<td>
<td>Tutorials
<tr><td><a href="https://iccs-conference.org/?page_id=1086">ICCS'22</a> Münster
<td><a href="
https://dblp.org/db/conf/iccs/iccs2022.html">
table of contents</a>
<td>
<td>
<td>Tutorials
<tr><td><a href="https://iccs-conference.org/?page_id=900">ICCS'21</a> virtual
<td><a href="
https://dblp.org/db/conf/iccs/iccs2021.html">
table of contents</a>
<td>
<td>
<td>Tutorials
<tr><td><a href="https://iccs-conference.org/?page_id=891">ICCS'20</a> virtual
<td><a href="
https://dblp.org/db/conf/iccs/iccs2020.html">
table of contents</a>
<td><a href="https://link.springer.com/article/10.1007/s10472-022-09819-w">
AMAI</a>
<td>
<td>Tutorials
<tr><td><a href="https://iccs-conference.org/?page_id=583">ICCS'19</a> Marburg
<td><a href="
https://dblp.org/db/conf/iccs/iccs2019.html">
table of contents</a>
<td>
<td>
<td>Tutorials
<tr><td><a href="http://blogs.napier.ac.uk/iccs/callforpapers/">ICCS'18</a> Edinburgh
<td><a href="
https://dblp.org/db/conf/iccs/iccs2018.html">
table of contents</a>
<td>
<td>
<td>co-located with Diagrams
<tr><td><a href="http://www.irit.fr/ICCS2016/">ICCS'16</a> Annecy
<td><a href="
https://dblp.org/db/conf/iccs/iccs2016.html">
table of contents</a>
<td>
<td>Haemmerle; Stapleton; Faron-Zucker: <a href="
https://www.irit.fr/recherches/MELODI/ontologies/tmp/PosterProceedings.pdf">Supplementary
Proceedings</a>
<td><a href="http://ceur-ws.org/Vol-1637/">CSTIW</a>
<tr><td><a href="http://thor.info.uaic.ro/~iccs2014/">ICCS'14</a> Iasi
<td><a href="
https://dblp.org/db/conf/iccs/iccs2014.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="http://iccs2013.hbcse.tifr.res.in">ICCS'13</a> Mumbai
<td><a href="
https://dblp.org/db/conf/iccs/iccs2013.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="http://www.derby.ac.uk/iccs2011">ICCS'11</a> Derby
<td><a href="
https://dblp.org/db/conf/iccs/iccs2011.html">
table of contents</a>
<td>
<td>
<td><a href="http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-753/">
CUBIST</a>; CS-LTA; TSIR
<tr><td><a href="http://www.mimos.my/iccs2010/">ICCS'10</a> Kuching
<td><a href="
https://dblp.org/db/conf/iccs/iccs2010.html">
table of contents</a>
<td>
<td>
<td><a href="http://conceptualstructures.org/BioMed/ESIT.htm">ESIT-BIOMED</a>,
<a href="http://extra.shu.ac.uk/cslta2010">CS-LTA</a>
(<a href="http://extra.shu.ac.uk/cetl/cpla/cslta2010/CS-LTA_FullProceedings.pdf">
Proceedings</a>)
<tr><td><!--a href="http://iccs09.hse.ru/"-->ICCS'09</a> Moscow
<td><a href="
https://dblp.org/db/conf/iccs/iccs2009.html">
table of contents</a>
<td>
<td>Rudolph; Dau; Kuznetsov: <a href="http://ceur-ws.org/Vol-483">
Leveraging Semantic Technology</a>, CEUR
<td><a href="http://ceur-ws.org/Vol-476">SENSE</a>,
<a href="http://www.kde.cs.uni-kassel.de/ws/cs-tiw2009/proceedings_final_15July.pdf">
CS-TIW (pdf)</a>, Elsewhere
<tr><td><a href="http://www.inra.fr/iccs08">ICCS'08</a> Toulouse
<td><a href="
https://dblp.org/db/conf/iccs/iccs2008.html">
table of contents</a>
<td>
<td>Eklund; Haemmerle:
<a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-354/">
Supplementary Proceedings of ICCS'08</a>, CEUR
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-352/">
CS-TIW</a>
<tr><td><a href="http://semanticweb.org/wiki/ICCS2007">ICCS'07</a> Sheffield
<td><a href="
https://dblp.org/db/conf/iccs/iccs2007.html">
table of contents</a>
<td>
<td>
<td>CS-TIW (Pfeiffer; Kabbaj; Benn, Res. Press Int.)
<tr><td><a href="http://www.iccs-06.hum.aau.dk/">ICCS'06</a> Aalborg
<td><a href="
https://dblp.org/db/conf/iccs/iccs2006.html">
table of contents</a>
<td>
<td>Hitzler; Scharfe; Ohrstrom:
Inspiration and Application. Contributions to ICCS 2006,
Aalborg Univ. Press, Denmark. (87-7307-768-2)
<td><a href="http://www.iccs-06.hum.aau.dk/tools.htm">CS-TIW</a>
(de Moor; Polovina; Delugach, Res. Press Int.)
<tr><td><a href="http://www.kde.cs.uni-kassel.de/conf/iccs05">ICCS'05</a>
Kassel<td><a href="
https://dblp.org/db/conf/iccs/iccs2005.html">
table of contents</a>
<td>
<td>Dau; Mugnier; Stumme:
<a href="http://www.upress.uni-kassel.de/katalog/abstract.php?978-3-89958-138-6">
Common Semantics for Sharing Knowledge</a>, Univ. Kassel.
<td>
<tr><td><!--<a href="http://www.cs.uah.edu/~delugach/CG/ICCS04/">-->
ICCS'04</a> Alabama<td><a href="
https://dblp.org/db/conf/iccs/iccs2004.html">
table of contents</a>
<td>
<td>Pfeiffer; Wolff; Delugach:
<a href="http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8322-2950-7">
Conceptual Structures at Work</a>, Shaker.
<td>
<tr><td><a href="cache6.html">ICCS'03</a> Dresden
<td><a href="
https://dblp.org/db/conf/iccs/iccs2003.html">
table of contents</a>
<td>
<td>Ganter; de Moor: <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8322-1705-3">
Using Conceptual Structures,</a> Shaker.
<td>
<tr><td><a href="http://www.lml.bas.bg/iccs2002/">ICCS'02</a> Borovets
<td><a href="
https://dblp.org/db/conf/iccs/iccs2002.html">
table of contents</a>
<td>
<td>Angelova; Corbett; Priss:
Foundations and Applications of Conceptual Structures,
Bulgarian Acad. of Science.
<td><a href="http://www.lml.bas.bg/iccs2002/PortIndex.htm">PORT</a>,
<a href="http://www.lml.bas.bg/iccs2002/ACSIndex.htm">Applications</a>
<tr><td><a href="http://www.ksl.stanford.edu/iccs2001/">ICCS'01</a> Palo Alto
<td><a href="
https://dblp.org/db/conf/iccs/iccs2001.html">
table of contents</a>
<td>
<td>Mineau:
<a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-41/">
Conceptual Structures: Extracting and Representing Semantics</a>, CEUR
<td><a href="http://www.cs.nmsu.edu/~hdp/CGTools/proceedings/">CGTools</a>,
<a href="http://www.ksl.stanford.edu/iccs2001/SemanticWeb.htm">PORT</a>
<tr><td><a href="https://web.archive.org/web/20011004124319/http://www.mathematik.tu-darmstadt.de/ags/ag1/iccs2000/">ICCS'00</a> Darmstadt
<td><a href="
https://dblp.org/db/conf/iccs/iccs2000.html">
table of contents</a>
<td>
<td>Stumme: <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-7669-1">
Working with Conceptual Structures</a>, Shaker
<td>
<tr><td><a href="https://web.archive.org/web/20070709043255/http://www.ee.vt.edu/~iccs99/advprogram.html">ICCS'99</a> Blacksburg
<td><a href="
https://dblp.org/db/conf/iccs/iccs99.html">
table of contents</a>
<td>
<td>
<td>
<tr><td>ICCS'98</a> Montpellier
<td><a href="
https://dblp.org/db/conf/iccs/iccs98.html">
table of contents</a>
<td>
<td>
<td>
<tr><td>ICCS'97</a> Seattle
<td><a href="
https://dblp.org/db/conf/iccs/iccs97.html">
table of contents</a>
<td>
<td>
<td>
<tr><td>ICCS'96</a> Sydney
<td><a href="
https://dblp.org/db/conf/iccs/iccs96.html">
table of contents</a>
<td>
<td>
<td>
<tr><td>ICCS'95</a> Santa Cruz
<td><a href="
https://dblp.org/db/conf/iccs/iccs95.html">
table of contents</a>
<td>
<td>
<td>
<a name="CLA"></a>
<tr><td><a href="https://cs.ttu.ee/events/cla2022/">CLA'22</a> Tallinn
<td><a href="https://ceur-ws.org/Vol-3308/">proceedings CEUR</a>
<td>
<td>
<td><a href="https://cs.ttu.ee/events/etafca-2022/">ETAFCA'2022</a>
<tr><td><a href="https://cs.ttu.ee/events/cla2020/">CLA'20</a> virtual
<td><a href="http://ceur-ws.org/Vol-2668/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><a href="http://cla2018.inf.upol.cz">CLA'18</a> Olomouc
<td><a href="http://ceur-ws.org/Vol-2123/">
proceedings CEUR</a>
<td>DAM
<td>
<td>
<tr><td><!--a href="http://cla2016.hse.ru/"-->CLA'16</a> Moscow
<td><a href="http://ceur-ws.org/Vol-1624/">
proceedings CEUR</a>
<td><a href="https://www.sciencedirect.com/journal/discrete-applied-mathematics/vol/273/suppl/C">DAM 273</a>
<td>
<td><a href="http://ceur-ws.org/Vol-1625/">CDUD</a>,
<a href="http://ceur-ws.org/Vol-1687/">SCAKD</a>,
<!--a href="https://cla2016.hse.ru/afcadm"-->AFCADM</a>
<tr><td><a href="http://cla2015.isima.fr/cfp">CLA'15</a> Clermont-Ferrand
<td><a href="http://ceur-ws.org/Vol-1466">
proceedings CEUR</a>
<td><a href="https://www.tandfonline.com/toc/ggen20/46/5?nav=tocList">IJGS</a>
<td>
<td>
<tr><td><a href="http://cla2014.ics.upjs.sk/">CLA'14</a> Kosice
<td><a href="http://ceur-ws.org/Vol-1252">
proceedings CEUR</a>
<td><a href="https://www.sciencedirect.com/journal/discrete-applied-mathematics/vol/249/suppl/C">DAM 249</a>
<td>
<td>
<tr><td><a href="http://cla2013.univ-lr.fr">CLA'13</a> La Rochelle
<td><a href="http://ceur-ws.org/Vol-1062">
proceedings CEUR</a>
<td><a href="http://www.tandfonline.com/toc/ggen20/45/2">IJGS 45,2</a>
<td>
<td>
<tr><td><a href="http://www.matap.uma.es/cla2012/">CLA'12</a> Malaga
<td><a href="http://ceur-ws.org/Vol-972">
proceedings CEUR</a>
<td><a href="http://link.springer.com/journal/10472/72/1">AMAI 72,1</a>
<td>
<td>
<tr><td><a href="http://cla2011.loria.fr/">CLA'11</a> Nancy
<td><a href="http://ceur-ws.org/Vol-959">
proceedings CEUR</a>
<td><a href="http://link.springer.com/journal/10472/70/1">AMAI 70,1</a>
<td>
<td>
<tr><td><a href="http://www.glc.us.es/cla2010/">CLA'10</a> Seville
<td><a href="http://ceur-ws.org/Vol-672">
proceedings CEUR</a>
<td><a href="http://content.iospress.com/journals/fundamenta-informaticae/115/4">
Fund Inf 115,4</a>
<td>
<td>FCA Software Interoperability Workshop
<tr><td><a href="http://cla2008.inf.upol.cz/">CLA'08</a> Olomouc
<td><a href="http://ceur-ws.org/Vol-433">
proceedings CEUR</a>
<td><a href="http://www.informatik.uni-trier.de/~%20ley/db/journals/amai/amai59.html">
AMAI 59,2</a>
<td>
<td><a href="http://www.ehu.es/ccwintco/uploads/f/f1/Proceedings-cla2008-workshop.pdf">
LBM (pdf)</a>
<tr><td><a href="http://www.lirmm.fr/cla07/">CLA'07</a>
<td><a href="http://ceur-ws.org/Vol-331">
proceedings CEUR</a>
<td><a href="http://www.tandfonline.com/toc/ggen20/38/4">
IJGS 38,4</a>
<td>
<td>
<tr><td><a href="https://web.archive.org/web/20070102095744/http://www.cck.rnu.tn/cla06">CLA'06</a>
<td><a href="http://dblp.uni-trier.de/db/conf/cla/cla2006.html">
table of contents</a>
<td><a href="http://www.worldscientific.com/toc/ijfcs/19/02">IJFCS 19,2</a>
<td>
<td>
<tr><td><a href="http://cla2005.inf.upol.cz/">CLA'05</a>
<td><a href="
http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS//Vol-162/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><a href="https://web.archive.org/web/20050219112527/http://www.cs.vsb.cz/cla/2004/programme.html">CLA'04</a>
<td><a href="
http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS//Vol-110/">
proceedings CEUR</a>
<td>
<td>
<td>
<a name="other"></a>
<tr><td><!--a href="http://www.hse.ru/en/org/hse/fcair"-->FCAIR'13</a>
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-977/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2023"-->FCA4AI'23</a>
<td><a href="http://ceur-ws.org/Vol-3489/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2022"-->FCA4AI'22</a>
<td><a href="http://ceur-ws.org/Vol-3233/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2021"-->FCA4AI'21</a>
<td><a href="http://ceur-ws.org/Vol-2972">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2020"-->FCA4AI'20</a>
<td><a href="http://ceur-ws.org/Vol-2729/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2019"-->FCA4AI'19</a>
<td><a href="http://ceur-ws.org/Vol-2529/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2018"-->FCA4AI'18</a>
<td><a href="http://ceur-ws.org/Vol-2149/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2016"-->FCA4AI'16</a>
<td><a href="http://ceur-ws.org/Vol-1703/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2015"-->FCA4AI'15</a>
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-1430/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2014"-->FCA4AI'14</a>
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-1257/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2013"-->FCA4AI'13</a>,
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-1058/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><!--a href="http://www.fca4ai.hse.ru/2012"-->FCA4AI'12</a>,
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-939/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td>
<a href="http://ipmu2018.uca.es/submission/cfspecial-sessions/special-sessions/#fca">
Session at IPMU 2018</a>
<td><a href="https://dblp.uni-trier.de/db/conf/ipmu/ipmu2018-1.html">table of contents</a>
<td>
<td>
<td>
<tr><td><!--a href="http://rsfdgrc.hse.ru/cdud"-->CDUD'11</a>
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-757/">
proceedings CEUR</a>
<td>
<td>
<td>
<tr><td><a href="https://graphkr.github.io">GKR'20 (ECAI)</a>
<td><a href="http://dblp.uni-trier.de/db/conf/gkr/gkr2020.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="http://www.lirmm.fr/~hecham/GKR/index.html">GKR'17 (IJCAI)</a>
<td><a href="http://dblp.uni-trier.de/db/conf/gkr/gkr2017.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="http://www.lirmm.fr/~croitoru/GKR/index.html">GKR'15 (IJCAI)</a>
<td><a href="http://dblp.uni-trier.de/db/conf/gkr/gkr2015.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="http://www.lirmm.fr/~croitoru/GKR/index.html">GKR'13 (IJCAI)</a>
<td><a href="http://dblp.uni-trier.de/db/conf/gkr/gkr2013.html">
table of contents</a>
<td>
<td>
<td>
<tr><td><a href="http://www.lirmm.fr/~croitoru/GKR/index.html">GKR'11 (IJCAI)</a>
<td><a href="
http://ijcai-11.iiia.csic.es/files/proceedings/W22-GKR2011-proceedings.pdf">PDF</a>
<td>
<td>
<td>
<tr><td><a href="cache27.html">ACKE'07</a>
<td>
<td><!--<a href="http://www.ijcis.info/">-->IJCIS</a>
<td>
<td>
<tr><td>CLKDD'01 Stanford
<td><a href="http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-42/">
proceedings CEUR</a>
<td><a href="http://taylorandfrancis.metapress.com/link.asp?id=hvtlrcc1guny">
JETAI (2002)</a>
<td>
<td>
<tr><td>CLKDD'03</a>
<td>
<td><a href="http://taylorandfrancis.metapress.com/link.asp?id=pah120q976d6">
AAI</a>
<td>
<td>
<tr><td><!--<a href="http://www.cs.sfu.ca/cs/conf/kruse97/">-->Kruse'97</a> Vancouver
<td>proceedings (printed)
<td>
<a href="http://onlinelibrary.wiley.com/doi/10.1111/coin.1999.15.issue-1/issuetoc">
Comp Int (1999)</a>
<td>
<td>
<tr><td><!--a href="https://fca4kd.hse.ru"-->FCA4KD 17</a> Moscow
<td>
<td>
<td>
<td>
<tr><td><a href="http://ismis2017.ii.pw.edu.pl/s_kd_fca.php">FCA4KD++ 17</a>
at ISMIS
<td><a href="http://dblp.uni-trier.de/db/conf/ismis/ismis2017.html">table of contents</a>
<td>
<td>
<td>
<tr><td>FCAKDD (ECAI'02) Lyon
<td>Advances in FCA for KDD
<td>
<td>
<td>
<tr><td><a href="https://web.archive.org/web/20051120235236/http://www.mathematik.tu-darmstadt.de:80/ags/esz/veranstaltungen/alt/uebersicht.html">Darmstadt conferences
<td>
<td>
<td>
<td>
<tr><td><a href="https://web.archive.org/web/20020906235818/http://www.mathematik.tu-darmstadt.de/ags/ag1/Veranstaltungen/Alt/KnowLogIn.html">Int Conf Knowl Logic Inf, 1998 Darmstadt
<td>
<td>
<td>
<td>
</table>
<h4>The rest of this page reports historical information and is not kept
up to date</h4>
<a name="groups"></a>
<h4>Publications by Groups/People</h4>
Note: Below are links to websites with FCA papers.
This is not a complete list of everybody involved in FCA (and it is no longer
up to date). If you know
of any other FCA websites, please, send an email to
<img src="http://www.upriss.org.uk/emadr.gif" style="vertical-align:-15%"> .
<p>
<li><a href="cache1.html">Darmstadt Group:</a> Rudolf Wille, Peter Burmeister,
...
<li><a href="http://www.itee.uq.edu.au/~kvo/publications/">KVO:</a>
<a href="http://www.uow.edu.au/~peklund/">Peter Eklund</a>, Peter
Becker, Richard Cole, Bernd Groh, ...;
<a href="https://web.archive.org/web/20081122034024/http://www.kvocentral.org/publications/kvo.bib">Bib tex listing 1993-2003</a>
<li><a href="http://belohlavek.inf.upol.cz/belohlavekpublications.html">Radim
Belohlavek</a>
<li><a href="http://search.fub.it/claudio/">Claudio Carpineto</a>,
Giovanni Romano
<li><a href="http://www.dr-dau.net/publications.shtml">Frithjof Dau</a>
<li>Vincent Duquenne <a href="
https://dblp.org/db/indices/a-tree/d/Duquenne:Vincent.html">
DBLP</a>
<li><a href="http://www.irisa.fr/LIS/ferre/index.en.html">
Sebastian Ferre</a>, Olivier Ridoux
<li><a href="http://tu-dresden.de/Members/bernhard.ganter/fca">Bernhard Ganter
</a>
<li>Robert Godin <a href="
https://dblp.org/db/indices/a-tree/g/Godin:Robert.html
">DBLP</a>,
<a href="http://w3.uqo.ca/missaoui/Publications.html">Rokia Missaoui</a>,
<a href="http://www.ift.ulaval.ca/~lci/publication/publications.htm">
Guy Mineau</a>
<li>Robert Kent <a href="
https://dblp.org/db/indices/a-tree/k/Kent:Robert_E=.html
">DBLP</a>
<li><!--a href="http://new.hse.ru/C7/C18/Kuznetsov/default.aspx"-->
Sergei Kuznetsov</a>
<li><a href="http://www.cril.univ-artois.fr/~mephu/publication.html">
Engelbert Mephu-Nguifo</a>
<li>Amedeo Napoli <a href="http://dblp.uni-trier.de/pers/hd/n/Napoli:Amedeo">DBLP</a>
<li><a href="http://www.upriss.org.uk/top/research.html">Uta Priss</a>
<li><a href="http://www.kde.cs.uni-kassel.de/stumme/publications.html">
Gerd Stumme</a>, Gerd Stumme's <a href="http://www.bibsonomy.org/tag/fca">
Bibsonomy FCA pages</a>, which collect FCA references
<li><a href="
http://www.fbmn.h-da.de/home/wolff/Publikationen_pfd.html">
Karl Erich Wolff</a>
<li><a href="http://newton.case.edu/publications.html">GQ Zhang</a>
<a name="books"></a>
<h4>Books</h4>
<li>Bernhard Ganter and Sergei Obiedkov (2016).
"Conceptual Exploration". Springer, ISBN 978-3-662-49290-1.
<li>Ganter, Stumme, Wille (eds.) (2005). <a href="
https://dblp.org/db/conf/fca/fca2005.html">
Formal Concept Analysis, Foundations and Applications.</a>
Lecture Notes in Computer Science 3626, Springer.
<li>Ganter & Wille (1999). Formal Concept Analysis. Mathematical
Foundations, Springer Verlag. This is the English version of:
Ganter & Wille (1996).
<a href="
http://www.springeronline.com/sgw/cda/frontpage/0,10735,5-0-22-1476563-0,00.html
"> Formale Begriffsanalyse
Mathematische Grundlagen</a> Springer Verlag.
<li>Carpineto & Romano (2004).
<a href="
http://www.wileyeurope.com/WileyCDA/WileyTitle/productCd-0470850558.html">
Concept Data Analysis: Theory and Applications.</a>
<li>Davey & Priestley (2002).
<a href="http://www.cambridge.org/gb/knowledge/isbn/item1167139/">
Introduction to Lattices and Order.</a>
Cambridge University Press. (This book covers lattices more generally
but contains an introduction to FCA.)
<li>Vogt (1996).
Formale Begriffsanalyse mit C++ : Datenstrukturen und Algorithmen.
Springer-Verlag.
<a name="applications"></a>
<h4>Applications of FCA</h4>
(These people have applied FCA but do not predominantly conduct research
on FCA). <p>
<li>Social Network Analysis:
<a href="http://moreno.ss.uci.edu/pubs.html">Linton Freeman</a>;
<a href="http://eclectic.ss.uci.edu/~drwhite/links2pdf.htm">
Douglas White</a>
<li>Psychology:
<a href="
http://www.psyeval.uni-bremen.de/publikationen/angewandte_methoden.html">
H. J. Henning</a>
<li>Software Engineering:
<a href="http://pp.info.uni-karlsruhe.de/personhp/snelting_publikationen.php">
Gregor Snelting</a>;
<a href="http://www.st.cs.uni-saarland.de/~lindig/#papers">Christian Lindig</a>;
<a href="http://www.mathematik.uni-marburg.de/~hesse/papers.html">
Wolfgang Hesse</a>;
<a href="http://www.cs.chalmers.se/~schupp/old_projects/fca/fca.html">
Sibylle Schupp</a>
<li>AI:
<a href="http://www.jaist.ac.jp/~bao/publications.html">Tu Bao Ho</a>
<a href="http://www.aifb.uni-karlsruhe.de/WBS/phi/topics/publications.html">
Pascal Hitzler</a>
<a name="edited"></a>
<h4>Edited Volumes</h4>
<li>Ganter, Bernhard; Wille, Rudolf; Wolff, Karl Erich (eds.) (1987).
Beitrage zur Begriffsanalyse. BI-Wissenschaftsverlag.
<li>Wille, Rudolf; Zickwolff, Monika (eds.) (1994).
Begriffliche Wissensverarbeitung. Wissenschaftsverlag.
<li>Stumme, Gerd; Wille, Rudolf (eds.) (1998).
<a href="
http://www.springeronline.com/sgw/cda/frontpage/0,10735,5-0-22-2058937-0,00.html
">Begriffliche Wissensverarbeitung:
Methoden und Anwendungen.</a>
<a name="dissertations"></a>
<h4>Phd Dissertations on FCA which were published as books:</h4>
<p>This list is very much out of date!</p>
<li>Sebastian Rudolph (2006).
<a href="http://www.aifb.kit.edu/web/Book1380/en">Relational Exploration -
Combining Description Logics and Formal Concept Analysis for Knowledge Specification
</a>
<li>Vormbrock (2006). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=978-3-8322-4890-1">
The Structure of Double Boolean Algebras</a> Phd Thesis, Shaker Verlag.
<li>Klinger (2005). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8322-4204-X">
The Logic System of Protoconcept Graphs</a> Phd Thesis, Shaker Verlag.
<li>Kwuida (2004). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8322-3350-4">
Dicomplemented Lattices</a>Phd Thesis, Shaker Verlag.
<li>Dau (2003). <a href="
http://www.springeronline.com/sgw/cda/frontpage/0,10735,1-40109-22-18057009-0,00.html">
The Logic System of Concept Graphs with Negation
And Its Relationship to Predicate Logic. </a>Springer Verlag.
<li>Sacarea (2001). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-8337-X">
Towards a Theory of Contextual Topology<a> Phd Thesis, Shaker Verlag.
<li>Holzer (2001). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-9092-9">
Methoden der formalen Begriffsanalyse bei der Behandlung
unvollstandigen Wissens</a> Phd Thesis, Shaker Verlag.
<li>Grosskopf (2000). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-8115-6">
Conceptual Structures of Finite Abelian Group Contexts</a>
Phd Thesis, Shaker Verlag.
<li>Doerflein (1999). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-6137-6">
Coherence Networks of Concept Lattices</a> Phd Thesis, Shaker Verlag.
<li>Becker (1999). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-6106-6">
Formal Concept Analysis and Algebraic Geometry</a>
Phd Thesis, Shaker Verlag.
<li>Prediger (1998). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-3969-9">
Kontextuelle Urteilslogik mit Begriffsgraphen</a>, Phd Thesis, Shaker Verlag.
<li>Priss (1998). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-4099-9">
Relational Concept Analysis</a>, Phd Thesis, Shaker Verlag.
<li>Biedermann (1998). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-4028-X">
A Foundation of the Theory of Trilattices</a> Phd Thesis, Shaker Verlag.
<li>Pollandt (1997). Fuzzy-Begriffe. Springer-Verlag.
<li>Stumme (1997). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-2930-8">
Concept Exploration.</a>, Phd Thesis, Shaker Verlag.
<li>Lengnink (1996). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-8265-1393-2">
Formalisierungen von Ahnlichkeit
aus Sicht der Formalen Begriffsanalyse</a>, Phd Thesis, Shaker Verlag.
<li>Vogt (1994). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-86111-936-6">
Bialgebraic Contexts</a>Phd Thesis, Shaker Verlag.
<li>Xia (1993). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-86111-620-0">
Morphismen als formale Begriffe</a> Phd Thesis, Shaker Verlag.
<li>Luxenburger (1993). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.idc?ISBN=3-86111-615-4">
Implikationen, Abhangigkeiten und
Galois-Abbildungen.</a>, Phd Thesis, Shaker Verlag.
<li>Skorsky (1992). <a href="
http://www.shaker.de/Online-Gesamtkatalog/Details.asp?ISBN=3-86111-266-3">
Endliche Verbande</a>, Phd Thesis, Shaker Verlag.
<p><hr><p>
<center>
Copyright 2007. Uta Priss <BR>
<a href="https://www.upriss.org.uk">www.upriss.org.uk</a><br>
Please send comments about this site to:
<img src="https://www.upriss.org.uk/emadr.gif" style="vertical-align:-15%">
</center>
<p>
</body>
</html>