-
Notifications
You must be signed in to change notification settings - Fork 2
/
bib_to_tex.nb
6117 lines (6015 loc) · 333 KB
/
bib_to_tex.nb
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
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 12.3' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 334326, 6109]
NotebookOptionsPosition[ 330364, 6033]
NotebookOutlinePosition[ 330766, 6049]
CellTagsIndexPosition[ 330723, 6046]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell["Analysis", "Title",
CellChangeTimes->{{3.8401085320000367`*^9,
3.8401085351611214`*^9}},ExpressionUUID->"9cc2e359-e34b-4227-a462-\
cdd903241ddf"],
Cell[BoxData[{
RowBox[{
RowBox[{
RowBox[{"StringCases", "[",
RowBox[{
RowBox[{
"RegularExpression", "[", "\"\<\\\\\\\\cite\\\\{(.+?)\\\\}\>\"", "]"}],
"->", "\"\<$1\>\""}], "]"}], "@",
RowBox[{"Import", "[",
RowBox[{
"\"\<F:\\\\Research\\\\Projects\\\\large-angle_twisted_bilayer_graphene\\\
\\Manuscript\\\\main.tex\>\"", ",", "\"\<Text\>\""}], "]"}]}],
";"}], "\[IndentingNewLine]",
RowBox[{
RowBox[{
RowBox[{
RowBox[{"Join", "@@",
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"StringSplit", "[",
RowBox[{"#", ",", "\"\<,\>\""}], "]"}], "&"}], "/@", "%"}], ")"}]}],
"//", "DeleteDuplicates"}], "//", "TableForm"}], ";"}]}], "Input",
CellChangeTimes->{{3.840096076308009*^9, 3.8400963164213934`*^9}, {
3.840096350364979*^9, 3.840096355545362*^9}, {3.840096403612192*^9,
3.840096424385337*^9}, {3.8400964928296285`*^9, 3.8400964944107914`*^9}, {
3.8401110109295807`*^9, 3.8401110116795883`*^9}},
CellLabel->
"In[258]:=",ExpressionUUID->"ba01b43f-8c73-420f-99e6-e08f70fdc5b7"],
Cell[BoxData[
RowBox[{
RowBox[{"rawstrings", "=",
RowBox[{
RowBox[{"(",
RowBox[{
RowBox[{
RowBox[{"StringSplit", "[",
RowBox[{"#", ",",
RowBox[{"RegularExpression", "[", "\"\<\\n\\\\@\>\"", "]"}]}], "]"}],
"&"}], "@",
RowBox[{"Import", "[",
RowBox[{
"\"\<F:\\\\Research\\\\Projects\\\\large-angle_twisted_bilayer_\
graphene\\\\Manuscript\\\\tBLG_ZLM.bib\>\"", ",", "\"\<Text\>\""}], "]"}]}],
")"}], "\[LeftDoubleBracket]",
RowBox[{"2", ";;",
RowBox[{"-", "2"}]}], "\[RightDoubleBracket]"}]}], ";"}]], "Input",
CellChangeTimes->{{3.840096747159178*^9, 3.840096773130945*^9}, {
3.84009695772591*^9, 3.84009706401101*^9}, {3.8400970968995905`*^9,
3.8400970994791045`*^9}, {3.840097136419401*^9, 3.8400972891798296`*^9}, {
3.8400973267177505`*^9, 3.8400973935237093`*^9}, {3.8400974266676397`*^9,
3.8400975194704733`*^9}, 3.840111015568993*^9},
CellLabel->
"In[260]:=",ExpressionUUID->"3b9039c4-2bcb-4cf2-8a04-52f57fa7940f"],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"types", "=",
RowBox[{
RowBox[{
RowBox[{"\"\<type\>\"", "->",
RowBox[{"First", "[", "#", "]"}]}], "&"}], "/@",
RowBox[{
RowBox[{"StringCases", "[",
RowBox[{
RowBox[{
"RegularExpression", "[", "\"\<(^[A-Z]\\\\w+?)(?=\\\\{)\>\"", "]"}],
"->", "\"\<$1\>\""}], "]"}], "/@", "rawstrings"}]}]}]], "Input",
CellChangeTimes->{{3.8400975248672857`*^9, 3.84009753360335*^9}},
CellLabel->"In[58]:=",ExpressionUUID->"f8c0ad3c-eb69-4779-b25c-08606a4e47a3"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Book\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Book\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"Article\"\>"}], ",",
RowBox[{"\<\"type\"\>", "\[Rule]", "\<\"PhdThesis\"\>"}]}],
"}"}]], "Output",
CellChangeTimes->{{3.8400975279348207`*^9, 3.8400975343556633`*^9}},
CellLabel->"Out[58]=",ExpressionUUID->"7549e607-e08f-436e-b58b-11ab167a33a3"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"keys", "=",
RowBox[{
RowBox[{
RowBox[{"\"\<key\>\"", "->",
RowBox[{"First", "[", "#", "]"}]}], "&"}], "/@",
RowBox[{
RowBox[{"StringCases", "[",
RowBox[{
RowBox[{
"RegularExpression", "[", "\"\<(?<=\\\\{)([A-Z]\\\\w+?)(?=\\\\,)\>\"",
"]"}], "->", "\"\<$1\>\""}], "]"}], "/@", "rawstrings"}]}]}]], "Input",
CellChangeTimes->{{3.8400975447660847`*^9, 3.8400976338156633`*^9}},
CellLabel->"In[63]:=",ExpressionUUID->"ba1db840-4e6e-41ae-b76e-a1bbe38bec88"],
Cell[BoxData[
RowBox[{"{",
RowBox[{
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Cao2018N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Po2018PRX\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Codecido2019SA\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Arora2020N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Hao2021S\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Zhou2021N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Cao2018Na\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Calderon2020nQM\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Zhang2017SA\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Jin2019N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Seyler2019N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Tran2019N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Liu2020JPDAP\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Zhang2020NC\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Brem2020NL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Song2019PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Nuckolls2020N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Wu2021NM\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Stepanov2020a\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Repellin2020PRR\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Park2019PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Liu2021PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Park2021C\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Santos2007PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Bistritzer2011PNAS\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Carr2019PRR\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Balents2019SP\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Guinea2019PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Phong2020PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Koshino2020PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Andrei2020NM\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Nam2017PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Perebeinos2012PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Laissardiere2012PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Moon2012PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Andelkovic2018PRM\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Po2019PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Gargiulo20172M\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Yan2013NC\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Yoo2019NM\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Shi2020NC\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Liu2020PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Uchida2014PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Jain20162M\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Dai2016NL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Wijk20152M\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Lin2020PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"SanJose2014PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"SanJose2014PRBa\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Suzuura2002PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Jackiw1976PRD\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Shen2017\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Goldstein2005\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Yin2016NC\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Hou2018PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Ren2016RPP\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Zhang2013PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Bi2015PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Ren2017PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Wang2018FP\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Hou2020PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Hou2020PRBa\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Qiao2014PRL\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Wang2017PRB\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Ju2015N\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Li2016NN\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Kim2016NP\"\>"}], ",",
RowBox[{"\<\"key\"\>", "\[Rule]", "\<\"Carr2020\"\>"}]}], "}"}]], "Output",
CellChangeTimes->{{3.8400976065919056`*^9, 3.840097634400724*^9}},
CellLabel->"Out[63]=",ExpressionUUID->"69c169ff-f6bf-417c-bbb8-a6bf8437061c"]
}, Open ]],
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{
RowBox[{
RowBox[{"StringCases", "[",
RowBox[{
RowBox[{
"RegularExpression", "[",
"\"\< (\\\\w+) +\\\\= +\\\\{(.+)\\\\}\\\\,\\n\>\"", "]"}], "->",
RowBox[{"(",
RowBox[{"\"\<$1\>\"", "->", "\"\<$2\>\""}], ")"}]}], "]"}], "/@",
"rawstrings"}], "//", "TableForm"}]], "Input",
CellChangeTimes->{{3.840097703444296*^9, 3.8400978443301363`*^9}, {
3.8400978815715623`*^9, 3.8400979218828554`*^9}},
CellLabel->"In[73]:=",ExpressionUUID->"8d1b38fd-8836-4776-ae62-af21cbcf929d"],
Cell[BoxData[
InterpretationBox[GridBox[{
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Yuan Cao and Valla Fatemi and Shiang Fang and Kenji \
Watanabe and Takashi Taniguchi and Efthimios Kaxiras and Pablo \
Jarillo-Herrero\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Unconventional superconductivity in magic-angle \
graphene superlattices\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2018\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"mar\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7699\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"43--50\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"556\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/nature26160\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Hoi Chun Po and Liujun Zou and Ashvin Vishwanath and T. \
Senthil\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. X\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Origin of Mott Insulating Behavior and \
Superconductivity in Twisted Bilayer Graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2018\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"sep\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"3\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"031089\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"8\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1103/physrevx.8.031089\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Emilio Codecido and Qiyue Wang and Ryan Koester and Shi \
Che and Haidong Tian and Rui Lv and Son Tran and Kenji Watanabe and Takashi \
Taniguchi and Fan Zhang and Marc Bockrath and Chun Ning Lau\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Sci. Adv.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Correlated insulating and superconducting states in \
twisted bilayer graphene below the magic angle\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"sep\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"9\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"eaaw9770\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"5\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1126/sciadv.aaw9770\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Association for the Advancement of Science \
({AAAS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Harpreet Singh Arora and Robert Polski and Yiran Zhang \
and Alex Thomson and Youngjoon Choi and Hyunjin Kim and Zhong Lin and Ilham \
Zaky Wilson and Xiaodong Xu and Jiun-Haw Chu and Kenji Watanabe and Takashi \
Taniguchi and Jason Alicea and Stevan Nadj-Perge\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Superconductivity in metallic twisted bilayer graphene \
stabilized by {WSe}2\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"jul\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7816\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"379--384\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"583\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41586-020-2473-8\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Zeyu Hao and A. M. Zimmerman and Patrick Ledwith and \
Eslam Khalaf and Danial Haie Najafabadi and Kenji Watanabe and Takashi \
Taniguchi and Ashvin Vishwanath and Philip Kim\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Science\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Electric field{\\\\textendash}tunable superconductivity \
in alternating-twist magic-angle trilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2021\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"feb\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"6534\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"1133--1138\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"371\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1126/science.abg0399\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Association for the Advancement of Science \
({AAAS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Haoxin Zhou and Tian Xie and Takashi Taniguchi and \
Kenji Watanabe and Andrea F. Young\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Superconductivity in rhombohedral trilayer \
graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2021\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"sep\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"TBA\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"TBA\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"TBA\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41586-021-03926-0\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Yuan Cao and Valla Fatemi and Ahmet Demir and Shiang \
Fang and Spencer L. Tomarken and Jason Y. Luo and Javier D. Sanchez-Yamagishi \
and Kenji Watanabe and Takashi Taniguchi and Efthimios Kaxiras and Ray C. \
Ashoori and Pablo Jarillo-Herrero\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Correlated insulator behaviour at half-filling in \
magic-angle graphene superlattices\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2018\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"mar\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7699\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"80--84\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"556\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/nature26154\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Mar\[IAcute]a J. Calder\[OAcute]n and Elena \
Bascones\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"npj Quantum Mater.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Correlated states in magic angle twisted bilayer \
graphene under the optical conductivity scrutiny\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"aug\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"57\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"5\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41535-020-00258-6\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Chendong Zhang and Chih-Piao Chuu and Xibiao Ren and \
Ming-Yang Li and Lain-Jong Li and Chuanhong Jin and Mei-Yin Chou and \
Chih-Kang Shih\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Sci. Adv.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Interlayer couplings, Moir{\\\\'{e}} patterns, and 2D \
electronic superlattices in {MoS}2/{WSe}2hetero-bilayers\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2017\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"jan\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"e1601459\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"3\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1126/sciadv.1601459\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Association for the Advancement of Science \
({AAAS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Chenhao Jin and Emma C. Regan and Aiming Yan and M. \
Iqbal Bakti Utama and Danqing Wang and Sihan Zhao and Ying Qin and Sijie Yang \
and Zhiren Zheng and Shenyang Shi and Kenji Watanabe and Takashi Taniguchi \
and Sefaattin Tongay and Alex Zettl and Feng Wang\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Observation of moir{\\\\'{e}} excitons in {WSe}2/{WS}2 \
heterostructure superlattices\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"feb\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7746\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"76--80\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"567\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41586-019-0976-y\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Kyle L. Seyler and Pasqual Rivera and Hongyi Yu and \
Nathan P. Wilson and Essance L. Ray and David G. Mandrus and Jiaqiang Yan and \
Wang Yao and Xiaodong Xu\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Signatures of moir{\\\\'{e}}-trapped valley excitons in \
{MoSe}2/{WSe}2 heterobilayers\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"feb\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7746\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"66--70\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"567\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41586-019-0957-1\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Kha Tran and Galan Moody and Fengcheng Wu and Xiaobo Lu \
and Junho Choi and Kyounghwan Kim and Amritesh Rai and Daniel A. Sanchez and \
Jiamin Quan and Akshay Singh and Jacob Embley and Andr{\\\\'{e}} Zepeda and \
Marshall Campbell and Travis Autry and Takashi Taniguchi and Kenji Watanabe \
and Nanshu Lu and Sanjay K. Banerjee and Kevin L. Silverman and Suenne Kim \
and Emanuel Tutuc and Li Yang and Allan H. MacDonald and Xiaoqin Li\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Evidence for moir{\\\\'{e}} excitons in van der Waals \
heterostructures\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"feb\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7746\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"71--75\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"567\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41586-019-0975-z\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Hao Liu and Yixin Zong and Pan Wang and Hongyu Wen and \
Haibin Wu and Jianbai Xia and Zhongming Wei\"\>"}],
RowBox[{"\<\"journal\"\>",
"\[Rule]", "\<\"J. Phys. D: Appl. Phys.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Excitons in two-dimensional van der Waals \
heterostructures\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"nov\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"5\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"053001\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"54\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1088/1361-6463/abbf75\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"{IOP} Publishing\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Long Zhang and Zhe Zhang and Fengcheng Wu and Danqing \
Wang and Rahul Gogna and Shaocong Hou and Kenji Watanabe and Takashi \
Taniguchi and Krishnamurthy Kulkarni and Thomas Kuo and Stephen R. Forrest \
and Hui Deng\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nat. Commun.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Twist-angle dependence of moir{\\\\'{e}} excitons in \
{WS}2/{MoSe}2 heterobilayers\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"nov\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"5888\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"11\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41467-020-19466-6\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Samuel Brem and Christopher Linder\[ADoubleDot]lv and \
Paul Erhart and Ermin Malic\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nano Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Tunable Phases of Moir{\\\\'{e}} Excitons in van der \
Waals Heterostructures\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"sep\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"12\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"8534--8540\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"20\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1021/acs.nanolett.0c03019\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Chemical Society ({ACS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Zhida Song and Zhijun Wang and Wujun Shi and Gang Li \
and Chen Fang and B. Andrei Bernevig\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"All Magic Angles in Twisted Bilayer Graphene are \
Topological\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"jul\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"3\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"036401\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"123\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevlett.123.036401\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Kevin P. Nuckolls and Myungchul Oh and Dillon Wong and \
Biao Lian and Kenji Watanabe and Takashi Taniguchi and B. Andrei Bernevig and \
Ali Yazdani\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nature\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Strongly correlated Chern insulators in magic-angle \
twisted bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"dec\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7839\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"610--615\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"588\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41586-020-3028-8\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Shuang Wu and Zhenyuan Zhang and K. Watanabe and T. \
Taniguchi and Eva Y. Andrei\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nat. Mater.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Chern insulators, van Hove singularities and \
topological flat bands in magic-angle twisted bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2021\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"feb\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"4\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"488--494\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"20\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41563-020-00911-2\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Petr Stepanov and Ming Xie and Takashi Taniguchi and \
Kenji Watanabe and Xiaobo Lu and Allan H. MacDonald and B. Andrei Bernevig \
and Dmitri K. Efetov\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"arXiv\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Competing zero-field Chern insulators in \
Superconducting Twisted Bilayer Graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"15126\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"2012\"\>"}],
RowBox[{"\<\"abstract\"\>",
"\[Rule]", "\<\"The discovery of magic angle twisted bilayer graphene \
(MATBG) has unveiled a rich variety of superconducting, magnetic and \
topologically nontrivial phases. The existence of all these phases in one \
material, and their tunability, has opened new pathways for the creation of \
unusual gate tunable junctions. However, the required conditions for their \
creation - gate induced transitions between phases in zero magnetic field - \
have so far not been achieved. Here, we report on the first experimental \
demonstration of a device that is both a zero-field Chern insulator and a \
superconductor. The Chern insulator occurs near moire cell filling factor v = \
+1 in a hBN non-aligned MATBG device and manifests itself via an anomalous \
Hall effect. The insulator has Chern number C = +-1 and a relatively high \
Curie temperature of Tc = 4.5 K. Gate tuning away from this state exposes \
strong superconducting phases with critical temperatures of up to Tc = 3.5 K. \
In a perpendicular magnetic field above B > 0.5 T we observe a transition of \
the /C/= +1 Chern insulator from Chern number C = +-1 to C = 3, characterized \
by a quantized Hall plateau with Ryx = h/3e2. These observations show that \
interaction-induced symmetry breaking in MATBG leads to zero-field ground \
states that include almost degenerate and closely competing Chern insulators, \
and that states with larger Chern numbers couple most strongly to the \
B-field. By providing the first demonstration of a system that allows \
gate-induced transitions between magnetic and superconducting phases, our \
observations mark a major milestone in the creation of a new generation of \
quantum electronics.\"\>"}],
RowBox[{"\<\"archiveprefix\"\>", "\[Rule]", "\<\"arXiv\"\>"}],
RowBox[{"\<\"file\"\>",
"\[Rule]", "\<\":http\\\\://arxiv.org/pdf/2012.15126v1:PDF\"\>"}],
RowBox[{"\<\"keywords\"\>",
"\[Rule]", "\<\"cond-mat.mes-hall, cond-mat.str-el, cond-mat.supr-con\"\
\>"}],
RowBox[{"\<\"primaryclass\"\>", "\[Rule]", "\<\"cond-mat.mes-hall\"\>"}]},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"C\[EAcute]cile Repellin and T. Senthil\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Research\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Chern bands of twisted bilayer graphene: Fractional \
Chern insulators and spin phase transition\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"may\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"2\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"023238\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"2\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevresearch.2.023238\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Moon Jip Park and Youngkuk Kim and Gil Young Cho and \
SungBin Lee\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Higher-Order Topological Insulator in Twisted Bilayer \
Graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"nov\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"21\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"216803\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"123\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevlett.123.216803\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Bing Liu and Lede Xian and Haimen Mu and Gan Zhao and \
Zhao Liu and Angel Rubio and Z.{\\\\hspace{0.167em}}F. Wang\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Higher-Order Band Topology in Twisted Moir{\\\\'{e}} \
Superlattice\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2021\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"feb\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"6\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"066401\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"126\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevlett.126.066401\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Moon Jip Park and Sunam Jeon and SungBin Lee and Hee \
Chul Park and Youngkuk Kim\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Carbon\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Higher-Order Topological Corner State Tunneling in \
Twisted Bilayer Graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2021\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"apr\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"260--265\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"174\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1016/j.carbon.2020.12.037\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Elsevier {BV}\"\>"}], "\<\"\"\>", "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"J. M. B. Lopes~dos~Santos and N. M. R. Peres and A. H. \
Castro~Neto\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Graphene Bilayer with a Twist: Electronic \
Structure\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2007\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"dec\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"25\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"256802\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"99\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevlett.99.256802\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"R. Bistritzer and A. H. MacDonald\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Proc. Natl. Acad. Sci.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Moire bands in twisted double-layer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2011\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"jul\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"30\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"12233--12237\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"108\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1073/pnas.1108174108\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Proceedings of the National Academy of Sciences\"\>"}], \
"\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Stephen Carr and Shiang Fang and Ziyan Zhu and \
Efthimios Kaxiras\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Research\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Exact continuum model for low-energy electronic states \
of twisted bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"aug\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"013001\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevresearch.1.013001\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>", "\[Rule]", "\<\"Leon Balents\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"SciPost Phys.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"General continuum model for twisted bilayer graphene \
and arbitrary smooth deformations\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"oct\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"4\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"048\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"7\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.21468/scipostphys.7.4.048\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Stichting {SciPost}\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Francisco Guinea and Niels R. Walet\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. B\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Continuum models for twisted bilayer graphene: Effect \
of lattice deformation and hopping parameters\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"may\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"20\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"205134\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"99\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1103/physrevb.99.205134\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"V{\\\\~{o}} Ti\:1ebfn Phong and \
E.{\\\\hspace{0.167em}}J. Mele\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Obstruction and Interference in Low-Energy Models for \
Twisted Bilayer Graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"oct\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"17\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"176404\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"125\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevlett.125.176404\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Mikito Koshino and Nguyen N. T. Nam\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. B\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Effective continuum model for relaxed twisted bilayer \
graphene and moir{\\\\'{e}} electron-phonon interaction\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"may\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"19\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"195425\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"101\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevb.101.195425\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Eva Y. Andrei and Allan H. MacDonald\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nat. Mater.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Graphene bilayers with a twist\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2020\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"nov\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"12\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"1265--1275\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"19\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41563-020-00840-0\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Nguyen N. T. Nam and Mikito Koshino\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. B\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Lattice relaxation and energy band modulation in \
twisted bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2017\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"aug\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"7\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"075311\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"96\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1103/physrevb.96.075311\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"V. Perebeinos and J. Tersoff and Ph. Avouris\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Lett.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Phonon-Mediated Interlayer Conductance in Twisted \
Graphene Bilayers\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2012\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"dec\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"23\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"236604\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"109\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevlett.109.236604\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"G. Trambly de Laissardi\[EGrave]re and D. Mayou and L. \
Magaud\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. B\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Numerical studies of confined states in rotated \
bilayers of graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2012\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"sep\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"12\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"125413\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"86\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1103/physrevb.86.125413\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Pilkyung Moon and Mikito Koshino\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. B\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Energy spectrum and quantum Hall effect in twisted \
bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2012\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"may\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"19\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"195458\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"85\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1103/physrevb.85.195458\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"M. An\:0111elkovi\[CAcute] and L. Covaci and F. M. \
Peeters\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. Materials\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"{DC} conductivity of twisted bilayer graphene: \
Angle-dependent transport properties and effects of disorder\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2018\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"mar\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"3\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"034004\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"2\"\>"}],
RowBox[{"\<\"doi\"\>",
"\[Rule]", "\<\"10.1103/physrevmaterials.2.034004\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Hoi Chun Po and Liujun Zou and T. Senthil and Ashvin \
Vishwanath\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Phys. Rev. B\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Faithful tight-binding models and fragile topology of \
magic-angle bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"may\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"19\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"195455\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"99\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1103/physrevb.99.195455\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"American Physical Society ({APS})\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Fernando Gargiulo and Oleg V Yazyev\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"2D Mater.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Structural and electronic transformation in low-angle \
twisted bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2017\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"nov\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"015019\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"5\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1088/2053-1583/aa9640\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"{IOP} Publishing\"\>"}], "\<\"\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Wei Yan and Wen-Yu He and Zhao-Dong Chu and Mengxi Liu \
and Lan Meng and Rui-Fen Dou and Yanfeng Zhang and Zhongfan Liu and Jia-Cai \
Nie and Lin He\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nat. Commun.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Strain and curvature induced evolution of electronic \
band structures in twisted graphene bilayer\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2013\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"jul\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"1\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"2159\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"4\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/ncomms3159\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Hyobin Yoo and Rebecca Engelke and Stephen Carr and \
Shiang Fang and Kuan Zhang and Paul Cazeaux and Suk Hyun Sung and Robert \
Hovden and Adam W. Tsen and Takashi Taniguchi and Kenji Watanabe and Gyu-Chul \
Yi and Miyoung Kim and Mitchell Luskin and Ellad B. Tadmor and Efthimios \
Kaxiras and Philip Kim\"\>"}],
RowBox[{"\<\"journal\"\>", "\[Rule]", "\<\"Nat. Mater.\"\>"}],
RowBox[{"\<\"title\"\>",
"\[Rule]", "\<\"Atomic and electronic reconstruction at the van der \
Waals interface in twisted bilayer graphene\"\>"}],
RowBox[{"\<\"year\"\>", "\[Rule]", "\<\"2019\"\>"}],
RowBox[{"\<\"month\"\>", "\[Rule]", "\<\"apr\"\>"}],
RowBox[{"\<\"number\"\>", "\[Rule]", "\<\"5\"\>"}],
RowBox[{"\<\"pages\"\>", "\[Rule]", "\<\"448--453\"\>"}],
RowBox[{"\<\"volume\"\>", "\[Rule]", "\<\"18\"\>"}],
RowBox[{"\<\"doi\"\>", "\[Rule]", "\<\"10.1038/s41563-019-0346-z\"\>"}],
RowBox[{"\<\"publisher\"\>",
"\[Rule]", "\<\"Springer Science and Business Media {LLC}\"\>"}], "\<\"\
\"\>"},
{
RowBox[{"\<\"author\"\>",
"\[Rule]", "\<\"Haohao Shi and Zhen Zhan and Zhikai Qi and Kaixiang \
Huang and Edo van Veen and Jose \[CapitalAAcute]ngel Silva-Guill\[EAcute]n \
and Runxiao Zhang and Pengju Li and Kun Xie and Hengxing Ji and Mikhail I. \
Katsnelson and Shengjun Yuan and Shengyong Qin and Zhenyu Zhang\"\>"}],