-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathref.bib
More file actions
2758 lines (2548 loc) · 157 KB
/
ref.bib
File metadata and controls
2758 lines (2548 loc) · 157 KB
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
%% This BibTeX bibliography file was created using BibDesk.
%% http://bibdesk.sourceforge.net/
%% Created for Kevin Bundy at 2019-10-29 10:11:39 -0700
%% Saved with string encoding Unicode (UTF-8)
@article{Nagamine:2020_tomography,
Author = {{Nagamine}, Kentaro and {Shimizu}, Ikkoh and {Fujita}, Katsumi and {Suzuki}, Nao and {Lee}, Khee-Gan and {Momose}, Rieko and {Mukae}, Shiro and {Liang}, Yongming and {Kashikawa}, Nobunari and {Ouchi}, Masami and {Silverman}, John},
Journal = {arXiv e-prints},
Month = jul,
Pages = {arXiv:2007.14253},
Title = {{Probing Feedback via IGM tomography and Ly$\alpha$ forest with Subaru PFS, TMT/ELT, \& JWST}},
Year = 2020}
@article{Oppenheimer:2018aa,
Author = {{Oppenheimer}, B.~D. and {Schaye}, J. and {Crain}, R.~A. and {Werk}, J.~K. and {Richings}, A.~J.},
Journal = {MNRAS},
Month = nov,
Pages = {835-859},
Title = {{The multiphase circumgalactic medium traced by low metal ions in EAGLE zoom simulations}},
Volume = 481,
Year = 2018}
@article{Papovich:2015_progenitorMasses,
Author = {{Papovich}, C. and {Labb{\'e}}, I. and {Quadri}, R. and {Tilvi}, V. and {Behroozi}, P. and {Bell}, E.~F. and {Glazebrook}, K. and {Spitler}, L. and {Straatman}, C.~M.~S. and {Tran}, K. -V. and {Cowley}, M. and {Dav{\'e}}, R. and {Dekel}, A. and {Dickinson}, M. and {Ferguson}, H.~C. and {Finkelstein}, S.~L. and {Gawiser}, E. and {Inami}, H. and {Faber}, S.~M. and {Kacprzak}, G.~G. and {Kawinwanichakij}, L. and {Kocevski}, D. and {Koekemoer}, A. and {Koo}, D.~C. and {Kurczynski}, P. and {Lotz}, J.~M. and {Lu}, Y. and {Lucas}, R.~A. and {McIntosh}, D. and {Mehrtens}, N. and {Mobasher}, B. and {Monson}, A. and {Morrison}, G. and {Nanayakkara}, T. and {Persson}, S.~E. and {Salmon}, B. and {Simons}, R. and {Tomczak}, A. and {van Dokkum}, P. and {Weiner}, B. and {Willner}, S.~P.},
Journal = {\apj},
Month = {Apr},
Number = {1},
Pages = {26},
Title = {{ZFOURGE/CANDELS: On the Evolution of M* Galaxy Progenitors from z = 3 to 0.5}},
Volume = {803},
Year = {2015}}
@article{Conroy:2007_buildUpMassive,
Author = {{Conroy}, Charlie and {Wechsler}, Risa H. and {Kravtsov}, Andrey V.},
Journal = {\apj},
Month = oct,
Number = {2},
Pages = {826-838},
Title = {{The Hierarchical Build-Up of Massive Galaxies and the Intracluster Light since z = 1}},
Volume = {668},
Year = 2007}
@article{Lukic:2007_highZhaloMassFunc,
Author = {{Luki{\'c}}, Zarija and {Heitmann}, Katrin and {Habib}, Salman and {Bashinsky}, Sergei and {Ricker}, Paul M.},
Journal = {\apj},
Month = dec,
Number = {2},
Pages = {1160-1181},
Title = {{The Halo Mass Function: High-Redshift Evolution and Universality}},
Volume = {671},
Year = 2007}
@article{Bahcall:1969qy,
Author = {Bahcall, John N. and Spitzer, Jr., Lyman},
Journal = {ApJL},
Month = may,
Pages = {L63},
Title = {Absorption {Lines} {Produced} by {Galactic} {Halos}},
Volume = {156},
Year = {1969}}
@article{Nelson:2019_outflows,
Author = {{Nelson}, Dylan and {Pillepich}, Annalisa and {Springel}, Volker and {Pakmor}, R{\"u}diger and {Weinberger}, Rainer and {Genel}, Shy and {Torrey}, Paul and {Vogelsberger}, Mark and {Marinacci}, Federico and {Hernquist}, Lars},
Journal = {\mnras},
Month = {Dec},
Number = {3},
Pages = {3234-3261},
Title = {{First results from the TNG50 simulation: galactic outflows driven by supernovae and black hole feedback}},
Volume = {490},
Year = {2019}}
@article{johnson16,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2016ApJ...827...33J},
Archiveprefix = {arXiv},
Author = {{Johnson}, L. Clifton and {Seth}, Anil C. and {Dalcanton}, Julianne J. and {Beerman}, Lori C. and {Fouesneau}, Morgan and {Lewis}, Alexia R. and {Weisz}, Daniel R. and {Williams}, Benjamin F. and {Bell}, Eric F. and {Dolphin}, Andrew E. and {Larsen}, S{\o}ren S. and {Sandstrom}, Karin and {Skillman}, Evan D.},
Doi = {10.3847/0004-637X/827/1/33},
Eid = {33},
Eprint = {1606.05349},
Journal = {\apj},
Keywords = {galaxies: individual: M31, galaxies: star clusters: general, Astrophysics - Astrophysics of Galaxies},
Month = aug,
Number = {1},
Pages = {33},
Primaryclass = {astro-ph.GA},
Title = {{Panchromatic Hubble Andromeda Treasury. XVI. Star Cluster Formation Efficiency and the Clustered Fraction of Young Stars}},
Volume = {827},
Year = 2016,
Bdsk-Url-1 = {https://doi.org/10.3847/0004-637X/827/1/33}}
@article{drlica-wagner19,
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019arXiv190201055D},
archiveprefix = {arXiv},
author = {{Drlica-Wagner}, Alex and others},
date-added = {2021-01-06 16:57:13 -0800},
date-modified = {2021-01-06 16:57:53 -0800},
eid = {arXiv:1902.01055},
eprint = {1902.01055},
journal = {arXiv e-prints},
keywords = {Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Astrophysics of Galaxies, Astrophysics - High Energy Astrophysical Phenomena, High Energy Physics - Experiment, High Energy Physics - Phenomenology},
month = feb,
pages = {arXiv:1902.01055},
primaryclass = {astro-ph.CO},
title = {{Probing the Fundamental Nature of Dark Matter with the Large Synoptic Survey Telescope}},
year = 2019}
@article{nadler19,
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...878L..32N},
archiveprefix = {arXiv},
author = {{Nadler}, Ethan O. and {Gluscevic}, Vera and {Boddy}, Kimberly K. and {Wechsler}, Risa H.},
date-added = {2021-01-05 10:45:50 -0800},
date-modified = {2021-01-05 10:45:51 -0800},
doi = {10.3847/2041-8213/ab1eb2},
eid = {L32},
eprint = {1904.10000},
journal = {\apjl},
keywords = {cosmology: theory, dark matter, galaxies: halos, methods: numerical, Astrophysics - Cosmology and Nongalactic Astrophysics, High Energy Physics - Phenomenology},
month = jun,
number = {2},
pages = {L32},
primaryclass = {astro-ph.CO},
title = {{Constraints on Dark Matter Microphysics from the Milky Way Satellite Population}},
volume = {878},
year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/2041-8213/ab1eb2}}
@article{read18,
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
adsurl = {https://ui.adsabs.harvard.edu/abs/2018MNRAS.481..860R},
archiveprefix = {arXiv},
author = {{Read}, J.~I. and {Walker}, M.~G. and {Steger}, P.},
date-added = {2021-01-05 09:56:19 -0800},
date-modified = {2021-01-05 09:56:20 -0800},
doi = {10.1093/mnras/sty2286},
eprint = {1805.06934},
journal = {\mnras},
keywords = {galaxies: dwarf, galaxies: haloes, galaxies: kinematics dynamics, dark matter, cosmology: observations, Astrophysics - Astrophysics of Galaxies, Astrophysics - Cosmology and Nongalactic Astrophysics},
month = nov,
number = {1},
pages = {860-877},
primaryclass = {astro-ph.GA},
title = {{The case for a cold dark matter cusp in Draco}},
volume = {481},
year = 2018,
Bdsk-Url-1 = {https://doi.org/10.1093/mnras/sty2286}}
@article{jethwa18,
adsnote = {Provided by the SAO/NASA Astrophysics Data System},
adsurl = {https://ui.adsabs.harvard.edu/abs/2018MNRAS.473.2060J},
archiveprefix = {arXiv},
author = {{Jethwa}, P. and {Erkal}, D. and {Belokurov}, V.},
date-added = {2021-01-04 21:03:35 -0800},
date-modified = {2021-01-04 21:03:35 -0800},
doi = {10.1093/mnras/stx2330},
eprint = {1612.07834},
journal = {\mnras},
keywords = {Galaxy: halo, galaxies: dwarf, galaxies: Local Group, cosmology: dark matter, Astrophysics - Astrophysics of Galaxies},
month = jan,
number = {2},
pages = {2060-2083},
primaryclass = {astro-ph.GA},
title = {{The upper bound on the lowest mass halo}},
volume = {473},
year = 2018,
Bdsk-Url-1 = {https://doi.org/10.1093/mnras/stx2330}}
@article{Sandford20,
author = {Nathan R. Sandford and Daniel R. Weisz and Yuan-Sen Ting},
doi = {10.3847/1538-4365/ab9cb0},
journal = {The Astrophysical Journal Supplement Series},
month = {jul},
number = {2},
pages = {24},
publisher = {American Astronomical Society},
title = {Forecasting Chemical Abundance Precision for Extragalactic Stellar Archaeology},
url = {https://doi.org/10.3847/1538-4365/ab9cb0},
volume = {249},
year = 2020,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4365/ab9cb0}}
@ARTICLE{Ting19,
author = {{Ting}, Yuan-Sen and {Rix}, Hans-Walter},
title = "{The Vertical Motion History of Disk Stars throughout the Galaxy}",
journal = {\apj},
keywords = {Galaxy: disk, Galaxy: evolution, Galaxy: kinematics and dynamics, Galaxy: structure, methods: data analysis, methods: statistical, Astrophysics - Astrophysics of Galaxies},
year = 2019,
month = jun,
volume = {878},
number = {1},
eid = {21},
pages = {21},
doi = {10.3847/1538-4357/ab1ea5},
archivePrefix = {arXiv},
eprint = {1808.03278},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...878...21T},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{TingPayne19,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...879...69T},
Archiveprefix = {arXiv},
Author = {{Ting}, Yuan-Sen and {Conroy}, Charlie and {Rix}, Hans-Walter and {Cargile}, Phillip},
Doi = {10.3847/1538-4357/ab2331},
Eid = {69},
Eprint = {1804.01530},
Journal = {\apj},
Keywords = {methods: data analysis, stars: abundances, techniques: spectroscopic, Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Astrophysics of Galaxies},
Month = jul,
Number = {2},
Pages = {69},
Primaryclass = {astro-ph.SR},
Title = {{The Payne: Self-consistent ab initio Fitting of Stellar Spectra}},
Volume = {879},
Year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/ab2331}}
@ARTICLE{Martig16,
author = {{Martig}, Marie and {Fouesneau}, Morgan and {Rix}, Hans-Walter and
{Ness}, Melissa and {M{\'e}sz{\'a}ros}, Szabolcs and
{Garc{\'\i}a-Hern{\'a}ndez}, D.~A. and {Pinsonneault}, Marc and
{Serenelli}, Aldo and {Silva Aguirre}, Victor and {Zamora}, Olga},
title = "{Red giant masses and ages derived from carbon and nitrogen abundances}",
journal = {\mnras},
keywords = {stars: abundances, stars: evolution, stars: fundamental parameters, Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Astrophysics of Galaxies},
year = 2016,
month = mar,
volume = {456},
number = {4},
pages = {3655-3670},
doi = {10.1093/mnras/stv2830},
archivePrefix = {arXiv},
eprint = {1511.08203},
primaryClass = {astro-ph.SR},
adsurl = {https://ui.adsabs.harvard.edu/abs/2016MNRAS.456.3655M},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{Ting15,
author = {{Ting}, Yuan-Sen and {Conroy}, Charlie and {Goodman}, Alyssa},
title = "{Prospects for Chemically Tagging Stars in the Galaxy}",
journal = {\apj},
keywords = {Galaxy: abundances, Galaxy: disk, Galaxy: evolution, Galaxy: formation, ISM: abundances, stars: abundances, Astrophysics - Astrophysics of Galaxies},
year = 2015,
month = jul,
volume = {807},
number = {1},
eid = {104},
pages = {104},
doi = {10.1088/0004-637X/807/1/104},
archivePrefix = {arXiv},
eprint = {1504.03327},
primaryClass = {astro-ph.GA},
adsurl = {https://ui.adsabs.harvard.edu/abs/2015ApJ...807..104T},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{Corlies:2018aa,
Author = {{Corlies}, L. and {Peeples}, M.~S. and {Tumlinson}, J. and {O'Shea}, B.~W. and {Lehner}, N. and {Howk}, J.~C. and {O'Meara}, J.~M.},
Date-Modified = {2019-11-04 09:08:14 -0800},
Journal = {arXiv e-prints},
Month = nov,
Title = {{Figuring Out Gas {\&} Galaxies in Enzo (FOGGIE). II. Emission from the z=3 Circumgalactic Medium}},
Year = 2018}
@article{Whitaker:2012,
Author = {{Whitaker}, Katherine E. and {van Dokkum}, Pieter G. and {Brammer}, Gabriel and {Franx}, Marijn},
Journal = {\apjl},
Month = {Aug},
Number = {2},
Pages = {L29},
Title = {{The Star Formation Mass Sequence Out to z = 2.5}},
Volume = {754},
Year = {2012}}
@INPROCEEDINGS{spectel2019,
author = {{Ellis}, Richard and {Dawson}, Kyle},
title = "{SpecTel: A 10-12 meter class Spectroscopic Survey Telescope}",
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
booktitle = {Bulletin of the American Astronomical Society},
year = 2019,
volume = {51},
month = sep,
eid = {45},
pages = {45},
archivePrefix = {arXiv},
eprint = {1907.06797},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019BAAS...51g..45E},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@INPROCEEDINGS{mse2019,
author = {{Marshall}, Jennifer and {Bolton}, Adam and {Bullock}, James and
{Burgasser}, Adam and {Chambers}, Ken and {DePoy}, Darren and
{Dey}, Arjun and {Flagey}, Nicolas and {Hill}, Alexis and {Hillenbrand
}, Lynne and {Huber}, Daniel and {Li}, Ting and {Juneau}, Stephanie and
{Kaplinghat}, Manoj and {Mateo}, Mario and {McConnachie}, Alan and
{Newman}, Jeffrey and {Petric}, Andreea and {Schlegel}, David and
{Sheinis}, Andrew and {Shen}, Yue and {Simons}, Doug and
{Strauss}, Michael and {Szeto}, Kei and {Tran}, Kim-Vy and
{Y{\`e}che}, Christophe},
title = "{The Maunakea Spectroscopic Explorer}",
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics},
booktitle = {Bulletin of the American Astronomical Society},
year = 2019,
volume = {51},
month = sep,
eid = {126},
pages = {126},
archivePrefix = {arXiv},
eprint = {1907.07192},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019BAAS...51g.126M},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@INPROCEEDINGS{mega2019,
author = {{Schlegel}, David and {Kollmeier}, Juna A. and {Ferraro}, Simone},
title = "{The MegaMapper: a z>2 spectroscopic instrument for the study of Inflation and Dark Energy}",
keywords = {Astrophysics - Instrumentation and Methods for Astrophysics, High Energy Physics - Experiment},
booktitle = {Bulletin of the American Astronomical Society},
year = 2019,
volume = {51},
month = sep,
eid = {229},
pages = {229},
archivePrefix = {arXiv},
eprint = {1907.11171},
primaryClass = {astro-ph.IM},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019BAAS...51g.229S},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{johnson15,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2015ApJ...802..127J},
Archiveprefix = {arXiv},
Author = {{Johnson}, L. Clifton and {Seth}, Anil C. and {Dalcanton}, Julianne J. and {Wallace}, Matthew L. and {Simpson}, Robert J. and {Lintott}, Chris J. and {Kapadia}, Amit and {Skillman}, Evan D. and {Caldwell}, Nelson and {Fouesneau}, Morgan and {Weisz}, Daniel R. and {Williams}, Benjamin F. and {Beerman}, Lori C. and {Gouliermis}, Dimitrios A. and {Sarajedini}, Ata},
Doi = {10.1088/0004-637X/802/2/127},
Eid = {127},
Eprint = {1501.04966},
Journal = {\apj},
Keywords = {catalogs, galaxies: individual: M31, galaxies: star clusters: general, Astrophysics - Astrophysics of Galaxies, Astrophysics - Cosmology and Nongalactic Astrophysics},
Month = apr,
Number = {2},
Pages = {127},
Primaryclass = {astro-ph.GA},
Title = {{PHAT Stellar Cluster Survey. II. Andromeda Project Cluster Catalog}},
Volume = {802},
Year = 2015,
Bdsk-Url-1 = {https://doi.org/10.1088/0004-637X/802/2/127}}
@article{YST2017,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2017ApJ...843...32T},
Archiveprefix = {arXiv},
Author = {{Ting}, Yuan-Sen and {Conroy}, Charlie and {Rix}, Hans-Walter and {Cargile}, Phillip},
Doi = {10.3847/1538-4357/aa7688},
Eid = {32},
Eprint = {1706.00111},
Journal = {\apj},
Keywords = {methods: data analysis, stars: abundances, stars: atmospheres, techniques: spectroscopic, Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Astrophysics of Galaxies, Astrophysics - Instrumentation and Methods for Astrophysics},
Month = jul,
Number = {1},
Pages = {32},
Primaryclass = {astro-ph.SR},
Title = {{Prospects for Measuring Abundances of \>20 Elements with Low-resolution Stellar Spectra}},
Volume = {843},
Year = 2017,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/aa7688}}
@article{xiang2019,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJS..245...34X},
Archiveprefix = {arXiv},
Author = {{Xiang}, Maosheng and {Ting}, Yuan-Sen and {Rix}, Hans-Walter and {Sand ford}, Nathan and {Buder}, Sven and {Lind}, Karin and {Liu}, Xiao-Wei and {Shi}, Jian-Rong and {Zhang}, Hua-Wei},
Doi = {10.3847/1538-4365/ab5364},
Eid = {34},
Eprint = {1908.09727},
Journal = {\apjs},
Keywords = {Spectroscopy, Spectroscopic binary stars, Stellar atmospheres, Stellar abundances, Astronomy databases, Stellar properties, Stellar spectral lines, Astronomy data analysis, Sky surveys, Fundamental parameters of stars, Milky Way Galaxy, Astronomy data modeling, Astrophysics - Solar and Stellar Astrophysics, Astrophysics - Astrophysics of Galaxies, Astrophysics - Instrumentation and Methods for Astrophysics},
Month = dec,
Number = {2},
Pages = {34},
Primaryclass = {astro-ph.SR},
Title = {{Abundance Estimates for 16 Elements in 6 Million Stars from LAMOST DR5 Low-Resolution Spectra}},
Volume = {245},
Year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4365/ab5364}}
@article{escala20,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2020ApJ...889..177E},
Archiveprefix = {arXiv},
Author = {{Escala}, Ivanna and {Gilbert}, Karoline M. and {Kirby}, Evan N. and {Wojno}, Jennifer and {Cunningham}, Emily C. and {Guhathakurta}, Puragra},
Doi = {10.3847/1538-4357/ab6659},
Eid = {177},
Eprint = {1909.00006},
Journal = {\apj},
Keywords = {Astrophysics - Astrophysics of Galaxies},
Month = feb,
Number = {2},
Pages = {177},
Primaryclass = {astro-ph.GA},
Title = {{Elemental Abundances in M31: A Comparative Analysis of Alpha and Iron Element Abundances in the the Outer Disk, Giant Stellar Stream, and Inner Halo of M31}},
Volume = {889},
Year = 2020,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/ab6659}}
@article{dorman12,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2012ApJ...752..147D},
Archiveprefix = {arXiv},
Author = {{Dorman}, Claire E. and {Guhathakurta}, Puragra and {Fardal}, Mark A. and {Lang}, Dustin and {Geha}, Marla C. and {Howley}, Kirsten M. and {Kalirai}, Jason S. and {Bullock}, James S. and {Cuilland re}, Jean-Charles and {Dalcanton}, Julianne J. and {Gilbert}, Karoline M. and {Seth}, Anil C. and {Tollerud}, Erik J. and {Williams}, Benjamin F. and {Yniguez}, Basilio},
Date-Added = {2019-10-23 15:16:55 -0700},
Date-Modified = {2019-10-23 15:16:56 -0700},
Doi = {10.1088/0004-637X/752/2/147},
Eid = {147},
Eprint = {1204.4455},
Journal = {\apj},
Keywords = {galaxies: individual: M31, galaxies: kinematics and dynamics, galaxies: spiral, Local Group, techniques: spectroscopic, Astrophysics - Astrophysics of Galaxies, Astrophysics - Cosmology and Nongalactic Astrophysics},
Month = {Jun},
Number = {2},
Pages = {147},
Primaryclass = {astro-ph.GA},
Title = {{The SPLASH Survey: Kinematics of Andromeda's Inner Spheroid}},
Volume = {752},
Year = {2012},
Bdsk-Url-1 = {https://doi.org/10.1088/0004-637X/752/2/147}}
@article{dorman15,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2015ApJ...803...24D},
Archiveprefix = {arXiv},
Author = {{Dorman}, Claire E. and {Guhathakurta}, Puragra and {Seth}, Anil C. and {Weisz}, Daniel R. and {Bell}, Eric F. and {Dalcanton}, Julianne J. and {Gilbert}, Karoline M. and {Hamren}, Katherine M. and {Lewis}, Alexia R. and {Skillman}, Evan D. and {Toloba}, Elisa and {Williams}, Benjamin F.},
Doi = {10.1088/0004-637X/803/1/24},
Eid = {24},
Eprint = {1502.03820},
Journal = {\apj},
Keywords = {galaxies: individual: M31, galaxies: kinematics and dynamics, galaxies: spiral, galaxies: stellar content, Astrophysics - Astrophysics of Galaxies},
Month = apr,
Number = {1},
Pages = {24},
Primaryclass = {astro-ph.GA},
Title = {{A Clear Age-Velocity Dispersion Correlation in Andromeda{\textquoteright}s Stellar Disk}},
Volume = {803},
Year = 2015,
Bdsk-Url-1 = {https://doi.org/10.1088/0004-637X/803/1/24}}
@article{phat,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2012ApJS..200...18D},
Archiveprefix = {arXiv},
Author = {{Dalcanton}, Julianne J. and {Williams}, Benjamin F. and {Lang}, Dustin and {Lauer}, Tod R. and {Kalirai}, Jason S. and {Seth}, Anil C. and {Dolphin}, Andrew and {Rosenfield}, Philip and {Weisz}, Daniel R. and {Bell}, Eric F. and {Bianchi}, Luciana C. and {Boyer}, Martha L. and {Caldwell}, Nelson and {Dong}, Hui and {Dorman}, Claire E. and {Gilbert}, Karoline M. and {Girardi}, L{\'e}o and {Gogarten}, Stephanie M. and {Gordon}, Karl D. and {Guhathakurta}, Puragra and {Hodge}, Paul W. and {Holtzman}, Jon A. and {Johnson}, L. Clifton and {Larsen}, S{\o}ren S. and {Lewis}, Alexia and {Melbourne}, Jason L. and {Olsen}, Knut A.~G. and {Rix}, Hans-Walter and {Rosema}, Keith and {Saha}, Abhijit and {Sarajedini}, Ata and {Skillman}, Evan D. and {Stanek}, Krzysztof Z.},
Doi = {10.1088/0067-0049/200/2/18},
Eid = {18},
Eprint = {1204.0010},
Journal = {\apjs},
Keywords = {galaxies: individual: M31, galaxies: stellar content, stars: general, stars: imaging, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Solar and Stellar Astrophysics},
Month = {Jun},
Number = {2},
Pages = {18},
Primaryclass = {astro-ph.CO},
Title = {{The Panchromatic Hubble Andromeda Treasury}},
Volume = {200},
Year = {2012},
Bdsk-Url-1 = {https://doi.org/10.1088/0067-0049/200/2/18}}
@article{splash,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2009ApJ...701..776G},
Archiveprefix = {arXiv},
Author = {{Gilbert}, Karoline M. and {Font}, Andreea S. and {Johnston}, Kathryn V. and {Guhathakurta}, Puragra},
Doi = {10.1088/0004-637X/701/1/776},
Eprint = {0908.1111},
Journal = {\apj},
Keywords = {cosmology: theory, galaxies: abundances, galaxies: evolution, galaxies: halos, galaxies: individual: M31, Astrophysics - Cosmology and Nongalactic Astrophysics},
Month = {Aug},
Number = {1},
Pages = {776-786},
Primaryclass = {astro-ph.CO},
Title = {{The Dominance of Metal-rich Streams in Stellar Halos: A Comparison Between Substructure in M31 and {\ensuremath{\Lambda}}CDM Models}},
Volume = {701},
Year = {2009},
Bdsk-Url-1 = {https://doi.org/10.1088/0004-637X/701/1/776}}
@article{kirby18,
Author = {Kirby, Evan N. and Xie, Justin L. and Guo, Rachel and Kovalev, Mikhail and Bergemann, Maria},
Date-Modified = {2019-10-07 17:05:13 -0700},
Doi = {10.3847/1538-4365/aac952},
File = {Full Text PDF:/Users/nathansandford/Zotero/storage/DP2BFB22/Kirby et al. - 2018 - Catalog of Chromium, Cobalt, and Nickel Abundances.pdf:application/pdf;Snapshot:/Users/nathansandford/Zotero/storage/F2VD6ENE/abstract.html:text/html},
Journal = {The Astrophysical Journal Supplement Series},
Keywords = {DEIMOS},
Language = {en},
Month = jul,
Number = {1},
Pages = {18},
Title = {Catalog of {Chromium}, {Cobalt}, and {Nickel} {Abundances} in {Globular} {Clusters} and {Dwarf} {Galaxies}},
Url = {https://ui.adsabs.harvard.edu/abs/2018ApJS..237...18K/abstract},
Urldate = {2019-09-25},
Volume = {237},
Year = {2018},
Bdsk-Url-1 = {https://ui.adsabs.harvard.edu/abs/2018ApJS..237...18K/abstract},
Bdsk-Url-2 = {https://doi.org/10.3847/1538-4365/aac952}}
@article{kourkchi17,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2017ApJ...843...16K},
Archiveprefix = {arXiv},
Author = {{Kourkchi}, Ehsan and {Tully}, R. Brent},
Date-Added = {2019-12-04 09:56:09 -0800},
Date-Modified = {2019-12-04 09:56:10 -0800},
Doi = {10.3847/1538-4357/aa76db},
Eid = {16},
Eprint = {1705.08068},
Journal = {\apj},
Keywords = {dark matter, galaxies: groups: general, galaxies: luminosity function, mass function, Astrophysics - Astrophysics of Galaxies},
Month = {Jul},
Number = {1},
Pages = {16},
Primaryclass = {astro-ph.GA},
Title = {{Galaxy Groups Within 3500 km s$^{-1}$}},
Volume = {843},
Year = {2017},
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/aa76db}}
@article{margutti2018,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2018arXiv181204051M},
Archiveprefix = {arXiv},
Author = {{Margutti}, R. and {Cowperthwaite}, P. and {Doctor}, Z. and {Mortensen}, K. and {Pankow}, C.~P. and {Salafia}, O. and {Villar}, V.~A. and {Alexander}, K. and {Annis}, J. and {Andreoni}, I. and {Baldeschi}, A. and {Balmaverde}, B. and {Berger}, E. and {Bernardini}, M.~G. and {Berry}, C.~P.~L. and {Bianco}, F. and {Blanchard}, P.~K. and {Brocato}, E. and {Carnerero}, M.~I. and {Cartier}, R. and {Cenko}, S.~B. and {Chornock}, R. and {Chomiuk}, L. and {Copperwheat}, C.~M. and {Coughlin}, M.~W. and {Coppejans}, D.~L. and {Corsi}, A. and {D'Ammando}, F. and {Datrier}, L. and {D'Avanzo}, P. and {Dimitriadis}, G. and {Drout}, M.~R. and {Foley}, R.~J. and {Fong}, W. and {Fox}, O. and {Ghirlanda}, G. and {Goldstein}, D. and {Grindlay}, J. and {Guidorzi}, C. and {Haiman}, Z. and {Hendry}, M. and {Holz}, D. and {Hung}, T. and {Inserra}, C. and {Jones}, D.~O. and {Kalogera}, V. and {Kilpatrick}, C.~D. and {Lamb}, G. and {Laskar}, T. and {Levan}, A. and {Mason}, E. and {Maguire}, K. and {Melandri}, A. and {Milisavljevic}, D. and {Miller}, A. and {Narayan}, G. and {Nielsen}, E. and {Nicholl}, M. and {Nissanke}, S. and {Nugent}, P. and {Pan}, Y. -C. and {Pasham}, D. and {Paterson}, K. and {Piranomonte}, S. and {Racusin}, J. and {Rest}, A. and {Righi}, C. and {Sand}, D. and {Seaman}, R. and {Scolnic}, D. and {Siellez}, K. and {Singer}, L. and {Szkody}, P. and {Smith}, M. and {Steeghs}, D. and {Sullivan}, M. and {Tanvir}, N. and {Terreran}, G. and {Trimble}, V. and {Valenti}, S. and {LSST Transient}, with the support of the and {Variable Stars Collaboration}},
Eid = {arXiv:1812.04051},
Eprint = {1812.04051},
Journal = {arXiv e-prints},
Keywords = {Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Instrumentation and Methods for Astrophysics},
Month = dec,
Pages = {arXiv:1812.04051},
Primaryclass = {astro-ph.HE},
Title = {{Target of Opportunity Observations of Gravitational Wave Events with LSST}},
Year = 2018}
@article{margutti2019,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...872...18M},
Archiveprefix = {arXiv},
Author = {{Margutti}, R. and {Metzger}, B.~D. and {Chornock}, R. and {Vurm}, I. and {Roth}, N. and {Grefenstette}, B.~W. and {Savchenko}, V. and {Cartier}, R. and {Steiner}, J.~F. and {Terreran}, G. and {Margalit}, B. and {Migliori}, G. and {Milisavljevic}, D. and {Alexand er}, K.~D. and {Bietenholz}, M. and {Blanchard}, P.~K. and {Bozzo}, E. and {Brethauer}, D. and {Chilingarian}, I.~V. and {Coppejans}, D.~L. and {Ducci}, L. and {Ferrigno}, C. and {Fong}, W. and {G{\"o}tz}, D. and {Guidorzi}, C. and {Hajela}, A. and {Hurley}, K. and {Kuulkers}, E. and {Laurent}, P. and {Mereghetti}, S. and {Nicholl}, M. and {Patnaude}, D. and {Ubertini}, P. and {Banovetz}, J. and {Bartel}, N. and {Berger}, E. and {Coughlin}, E.~R. and {Eftekhari}, T. and {Frederiks}, D.~D. and {Kozlova}, A.~V. and {Laskar}, T. and {Svinkin}, D.~S. and {Drout}, M.~R. and {MacFadyen}, A. and {Paterson}, K.},
Doi = {10.3847/1538-4357/aafa01},
Eid = {18},
Eprint = {1810.10720},
Journal = {\apj},
Keywords = {accretion, accretion disks, stars: black holes, supernovae: individual: AT 2018cow, X-rays: general, Astrophysics - High Energy Astrophysical Phenomena},
Month = feb,
Number = {1},
Pages = {18},
Primaryclass = {astro-ph.HE},
Title = {{An Embedded X-Ray Source Shines through the Aspherical AT 2018cow: Revealing the Inner Workings of the Most Luminous Fast-evolving Optical Transients}},
Volume = {872},
Year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/aafa01}}
@article{anderson2015,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2015PASA...32...19A},
Archiveprefix = {arXiv},
Author = {{Anderson}, Joseph P. and {James}, Phil A. and {Habergham}, Stacey M. and {Galbany}, Llu{\'\i}s and {Kuncarayakti}, Hanindyo},
Doi = {10.1017/pasa.2015.19},
Eid = {e019},
Eprint = {1504.04043},
Journal = {\pasa},
Keywords = {galaxies: star formation, galaxies: statistics, HII regions, supernovae: general, Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Cosmology and Nongalactic Astrophysics, Astrophysics - Solar and Stellar Astrophysics},
Month = may,
Pages = {e019},
Primaryclass = {astro-ph.HE},
Title = {{Statistical Studies of Supernova Environments}},
Volume = {32},
Year = 2015,
Bdsk-Url-1 = {https://doi.org/10.1017/pasa.2015.19}}
@article{villar2018,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2018ApJ...869..166V},
Archiveprefix = {arXiv},
Author = {{Villar}, V. Ashley and {Nicholl}, Matt and {Berger}, Edo},
Doi = {10.3847/1538-4357/aaee6a},
Eid = {166},
Eprint = {1809.07343},
Journal = {\apj},
Keywords = {supernovae: general, Astrophysics - High Energy Astrophysical Phenomena},
Month = dec,
Number = {2},
Pages = {166},
Primaryclass = {astro-ph.HE},
Title = {{Superluminous Supernovae in LSST: Rates, Detection Metrics, and Light-curve Modeling}},
Volume = {869},
Year = 2018,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/aaee6a}}
@article{bricman2020,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2020ApJ...890...73B},
Archiveprefix = {arXiv},
Author = {{Bricman}, Katja and {Gomboc}, Andreja},
Doi = {10.3847/1538-4357/ab6989},
Eid = {73},
Eprint = {1906.08235},
Journal = {\apj},
Keywords = {Astrophysics - High Energy Astrophysical Phenomena},
Month = feb,
Number = {1},
Pages = {73},
Primaryclass = {astro-ph.HE},
Title = {{The Prospects of Observing Tidal Disruption Events with the Large Synoptic Survey Telescope}},
Volume = {890},
Year = 2020,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/ab6989}}
@article{hosseinzadeh2019,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...880L...4H},
Archiveprefix = {arXiv},
Author = {{Hosseinzadeh}, G. and {Cowperthwaite}, P.~S. and {Gomez}, S. and {Villar}, V.~A. and {Nicholl}, M. and {Margutti}, R. and {Berger}, E. and {Chornock}, R. and {Paterson}, K. and {Fong}, W. and {Savchenko}, V. and {Short}, P. and {Alexander}, K.~D. and {Blanchard}, P.~K. and {Braga}, J. and {Calkins}, M.~L. and {Cartier}, R. and {Coppejans}, D.~L. and {Eftekhari}, T. and {Laskar}, T. and {Ly}, C. and {Patton}, L. and {Pelisoli}, I. and {Reichart}, D.~E. and {Terreran}, G. and {Williams}, P.~K.~G.},
Doi = {10.3847/2041-8213/ab271c},
Eid = {L4},
Eprint = {1905.02186},
Journal = {\apjl},
Keywords = {binaries: close, gravitational waves, methods: observational, stars: black holes, stars: neutron, Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Solar and Stellar Astrophysics},
Month = jul,
Number = {1},
Pages = {L4},
Primaryclass = {astro-ph.HE},
Title = {{Follow-up of the Neutron Star Bearing Gravitational-wave Candidate Events S190425z and S190426c with MMT and SOAR}},
Volume = {880},
Year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/2041-8213/ab271c}}
@article{goldstein2019,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...881L...7G},
Archiveprefix = {arXiv},
Author = {{Goldstein}, Daniel A. and {Andreoni}, Igor and {Nugent}, Peter E. and {Kasliwal}, Mansi M. and {Coughlin}, Michael W. and {Anand}, Shreya and {Bloom}, Joshua S. and {Mart{\'\i}nez-Palomera}, Jorge and {Zhang}, Keming and {Ahumada}, Tom{\'a}s and {Bagdasaryan}, Ashot and {Cooke}, Jeff and {De}, Kishalay and {Duev}, Dmitry A. and {Fremling}, U. Christoffer and {Gatkine}, Pradip and {Graham}, Matthew and {Ofek}, Eran O. and {Singer}, Leo P. and {Yan}, Lin},
Doi = {10.3847/2041-8213/ab3046},
Eid = {L7},
Eprint = {1905.06980},
Journal = {\apjl},
Keywords = {gravitational waves, stars: black holes, stars: neutron, surveys, Astrophysics - High Energy Astrophysical Phenomena, Astrophysics - Instrumentation and Methods for Astrophysics},
Month = aug,
Number = {1},
Pages = {L7},
Primaryclass = {astro-ph.HE},
Title = {{GROWTH on S190426c: Real-time Search for a Counterpart to the Probable Neutron Star-Black Hole Merger using an Automated Difference Imaging Pipeline for DECam}},
Volume = {881},
Year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/2041-8213/ab3046}}
@article{cowperthwaite2017,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2018ApJ...858...18C},
Archiveprefix = {arXiv},
Author = {{Cowperthwaite}, P.~S. and {Berger}, E. and {Rest}, A. and {Chornock}, R. and {Scolnic}, D.~M. and {Williams}, P.~K.~G. and {Fong}, W. and {Drout}, M.~R. and {Foley}, R.~J. and {Margutti}, R. and {Lunnan}, R. and {Metzger}, B.~D. and {Quataert}, E.},
Doi = {10.3847/1538-4357/aabad9},
Eid = {18},
Eprint = {1710.02144},
Journal = {\apj},
Keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys, Astrophysics - High Energy Astrophysical Phenomena},
Month = may,
Number = {1},
Pages = {18},
Primaryclass = {astro-ph.HE},
Title = {{An Empirical Study of Contamination in Deep, Rapid, and Wide-field Optical Follow-up of Gravitational Wave Events}},
Volume = {858},
Year = 2018,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/aabad9}}
@article{cowperthwaite2019,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019ApJ...874...88C},
Archiveprefix = {arXiv},
Author = {{Cowperthwaite}, P.~S. and {Villar}, V.~A. and {Scolnic}, D.~M. and {Berger}, E.},
Doi = {10.3847/1538-4357/ab07b6},
Eid = {88},
Eprint = {1811.03098},
Journal = {\apj},
Keywords = {binaries: close, catalogs, gravitational waves, stars: neutron, surveys, Astrophysics - High Energy Astrophysical Phenomena},
Month = mar,
Number = {1},
Pages = {88},
Primaryclass = {astro-ph.HE},
Title = {{LSST Target-of-opportunity Observations of Gravitational-wave Events: Essential and Efficient}},
Volume = {874},
Year = 2019,
Bdsk-Url-1 = {https://doi.org/10.3847/1538-4357/ab07b6}}
@article{abbott2018prospects,
Author = {Abbott, Benjamin P and Abbott, R and Abbott, TD and Abernathy, MR and Acernese, F and Ackley, K and Adams, C and Adams, T and Addesso, Paolo and Adhikari, RX and others},
Journal = {Living Reviews in Relativity},
Number = {1},
Pages = {3},
Publisher = {Springer},
Title = {Prospects for observing and localizing gravitational-wave transients with Advanced LIGO, Advanced Virgo and KAGRA},
Volume = {21},
Year = {2018}}
@article{kasen2017,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2017Natur.551...80K},
Archiveprefix = {arXiv},
Author = {{Kasen}, Daniel and {Metzger}, Brian and {Barnes}, Jennifer and {Quataert}, Eliot and {Ramirez-Ruiz}, Enrico},
Doi = {10.1038/nature24453},
Eprint = {1710.05463},
Journal = {\nat},
Keywords = {Astrophysics - High Energy Astrophysical Phenomena},
Month = nov,
Number = {7678},
Pages = {80-84},
Primaryclass = {astro-ph.HE},
Title = {{Origin of the heavy elements in binary neutron-star mergers from a gravitational-wave event}},
Volume = {551},
Year = 2017,
Bdsk-Url-1 = {https://doi.org/10.1038/nature24453}}
@article{huterer06,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2006MNRAS.366..101H},
Archiveprefix = {arXiv},
Author = {{Huterer}, Dragan and {Takada}, Masahiro and {Bernstein}, Gary and {Jain}, Bhuvnesh},
Doi = {10.1111/j.1365-2966.2005.09782.x},
Eprint = {astro-ph/0506030},
Journal = {\mnras},
Keywords = {cosmological parameters, large-scale structure of Universe, Astrophysics},
Month = {Feb},
Number = {1},
Pages = {101-114},
Primaryclass = {astro-ph},
Title = {{Systematic errors in future weak-lensing surveys: requirements and prospects for self-calibration}},
Volume = {366},
Year = {2006},
Bdsk-Url-1 = {https://doi.org/10.1111/j.1365-2966.2005.09782.x}}
@ARTICLE{hlovek19,
author = {{Hlo{\v{z}}ek}, Ren{\'e}e and {Collett}, T. and {Galbany}, L. and
{Goldstein}, D.~A. and {Jha}, S.~W. and {Kim}, A.~G. and
{Newman}, J.~A. and {Perlmutter}, S. and {Perrefort}, D.~J. and
{Sullivan}, M. and {Verma}, A. and
{LSST Dark Energy Science Collaboration}},
title = "{Single-object Imaging and Spectroscopy to Enhance Dark Energy Science from LSST}",
journal = {\baas},
keywords = {Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2019,
month = may,
volume = {51},
number = {3},
eid = {369},
pages = {369},
archivePrefix = {arXiv},
eprint = {1903.09324},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2019BAAS...51c.369H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@ARTICLE{hearin10,
author = {{Hearin}, Andrew P. and {Zentner}, Andrew R. and {Ma}, Zhaoming and
{Huterer}, Dragan},
title = "{A General Study of the Influence of Catastrophic Photometric Redshift Errors on Cosmology with Cosmic Shear Tomography}",
journal = {\apj},
keywords = {cosmology: theory, dark energy, galaxies: distances and redshifts, galaxies: photometry, gravitational lensing: weak, Astrophysics - Cosmology and Nongalactic Astrophysics},
year = 2010,
month = sep,
volume = {720},
number = {2},
pages = {1351-1369},
doi = {10.1088/0004-637X/720/2/1351},
archivePrefix = {arXiv},
eprint = {1002.3383},
primaryClass = {astro-ph.CO},
adsurl = {https://ui.adsabs.harvard.edu/abs/2010ApJ...720.1351H},
adsnote = {Provided by the SAO/NASA Astrophysics Data System}
}
@article{LSSTDESCSRD,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2018arXiv180901669T},
Archiveprefix = {arXiv},
Author = {{The LSST Dark Energy Science Collaboration} and {Mandelbaum}, Rachel and {Eifler}, Tim and {Hlo{\v{z}}ek}, Ren{\'e}e and {Collett}, Thomas and {Gawiser}, Eric and {Scolnic}, Daniel and {Alonso}, David and {Awan}, Humna and {Biswas}, Rahul and {Blazek}, Jonathan and {Burchat}, Patricia and {Chisari}, Nora Elisa and {Dell'Antonio}, Ian and {Digel}, Seth and {Frieman}, Josh and {Goldstein}, Daniel A. and {Hook}, Isobel and {Ivezi{\'c}}, {\v{Z}}eljko and {Kahn}, Steven M. and {Kamath}, Sowmya and {Kirkby}, David and {Kitching}, Thomas and {Krause}, Elisabeth and {Leget}, Pierre-Fran{\c{c}}ois and {Marshall}, Philip J. and {Meyers}, Joshua and {Miyatake}, Hironao and {Newman}, Jeffrey A. and {Nichol}, Robert and {Rykoff}, Eli and {Sanchez}, F. Javier and {Slosar}, An{\v{z}}e and {Sullivan}, Mark and {Troxel}, M.~A.},
Eid = {arXiv:1809.01669},
Eprint = {1809.01669},
Journal = {arXiv e-prints},
Keywords = {Astrophysics - Cosmology and Nongalactic Astrophysics},
Month = sep,
Pages = {arXiv:1809.01669},
Primaryclass = {astro-ph.CO},
Title = {{The LSST Dark Energy Science Collaboration (DESC) Science Requirements Document}},
Year = 2018}
@article{cherinka19,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019AJ....158...74C},
Archiveprefix = {arXiv},
Author = {{Cherinka}, Brian and {Andrews}, Brett H. and {S{\'a}nchez-Gallego}, Jos{\'e} and {Brownstein}, Joel and {Argudo-Fern{\'a}ndez}, Mar{\'\i}a and {Blanton}, Michael and {Bundy}, Kevin and {Jones}, Amy and {Masters}, Karen and {Law}, David R. and {Rowlands}, Kate and {Weijmans}, Anne-Marie and {Westfall}, Kyle and {Yan}, Renbin},
Date-Added = {2019-10-29 10:11:38 -0700},
Date-Modified = {2019-10-29 10:11:39 -0700},
Doi = {10.3847/1538-3881/ab2634},
Eid = {74},
Eprint = {1812.03833},
Journal = {\aj},
Keywords = {astronomical databases: miscellaneous, methods: data analysis, surveys, Astrophysics - Instrumentation and Methods for Astrophysics, Astrophysics - Astrophysics of Galaxies},
Month = {Aug},
Number = {2},
Pages = {74},
Primaryclass = {astro-ph.IM},
Title = {{Marvin: A Tool Kit for Streamlined Access and Visualization of the SDSS-IV MaNGA Data Set}},
Volume = {158},
Year = {2019},
Bdsk-Url-1 = {https://doi.org/10.3847/1538-3881/ab2634}}
@article{westfall19,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {https://ui.adsabs.harvard.edu/abs/2019arXiv190100856W},
Archiveprefix = {arXiv},
Author = {{Westfall}, Kyle B. and {Cappellari}, Michele and {Bershady}, Matthew A. and {Bundy}, Kevin and {Belfiore}, Francesco and {Ji}, Xihan and {Law}, David R. and {Schaefer}, Adam and {Shetty}, Shravan and {Tremonti}, Christy A. and {Yan}, Renbin and {Andrews}, Brett H. and {Brownstein}, Joel R. and {Cherinka}, Brian and {Coccato}, Lodovico and {Drory}, Niv and {Maraston}, Claudia and {Parikh}, Taniya and {S{\'a}nchez-Gallego}, Jos{\'e} R. and {Thomas}, Daniel and {Weijmans}, Anne-Marie and {Barrera-Ballesteros}, Jorge and {Du}, Cheng and {Goddard}, Daniel and {Li}, Niu and {Masters}, Karen and {Ibarra Medel}, H{\'e}ctor Javier and {S{\'a}nchez}, Sebasti{\'a}n F. and {Yang}, Meng and {Zheng}, Zheng and {Zhou}, Shuang},
Date-Added = {2019-10-29 10:10:39 -0700},
Date-Modified = {2019-10-29 10:10:40 -0700},
Eid = {arXiv:1901.00856},
Eprint = {1901.00856},
Journal = {arXiv e-prints},
Keywords = {Astrophysics - Astrophysics of Galaxies},
Month = {Jan},
Pages = {arXiv:1901.00856},
Primaryclass = {astro-ph.GA},
Title = {{The Data Analysis Pipeline for the SDSS-IV MaNGA IFU Galaxy Survey: Overview}},
Year = {2019}}
@article{ferreras2013,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/2013MNRAS.429L..15F},
Archiveprefix = {arXiv},
Author = {{Ferreras}, I. and {La Barbera}, F. and {de la Rosa}, I.~G. and {Vazdekis}, A. and {de Carvalho}, R.~R. and {Falc{\'o}n-Barroso}, J. and {Ricciardelli}, E.},
Date-Added = {2019-09-11 09:53:50 -0700},
Date-Modified = {2019-09-11 09:53:50 -0700},
Doi = {10.1093/mnrasl/sls014},
Eprint = {1206.1594},
Journal = {\mnras},
Keywords = {galaxies: elliptical and lenticular, cD, galaxies: evolution, galaxies: formation, galaxies: fundamental parameters, galaxies: stellar content},
Month = feb,
Pages = {L15-L19},
Primaryclass = {astro-ph.CO},
Title = {{Systematic variation of the stellar initial mass function with velocity dispersion in early-type galaxies}},
Volume = 429,
Year = 2013,
Bdsk-Url-1 = {http://dx.doi.org/10.1093/mnrasl/sls014}}
@article{conroy14,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/2014ApJ...780...33C},
Archiveprefix = {arXiv},
Author = {{Conroy}, C. and {Graves}, G.~J. and {van Dokkum}, P.~G.},
Date-Added = {2019-09-11 09:52:40 -0700},
Date-Modified = {2019-09-11 09:52:40 -0700},
Doi = {10.1088/0004-637X/780/1/33},
Eid = {33},
Eprint = {1303.6629},
Journal = {\apj},
Keywords = {galaxies: abundances, galaxies: stellar content},
Month = jan,
Pages = {33},
Primaryclass = {astro-ph.CO},
Title = {{Early-type Galaxy Archeology: Ages, Abundance Ratios, and Effective Temperatures from Full-spectrum Fitting}},
Volume = 780,
Year = 2014,
Bdsk-Url-1 = {http://dx.doi.org/10.1088/0004-637X/780/1/33}}
@article{johansson12,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/2012MNRAS.421.1908J},
Archiveprefix = {arXiv},
Author = {{Johansson}, J. and {Thomas}, D. and {Maraston}, C.},
Date-Added = {2019-09-11 09:52:24 -0700},
Date-Modified = {2019-09-11 09:52:24 -0700},
Doi = {10.1111/j.1365-2966.2011.20316.x},
Eprint = {1112.0322},
Journal = {\mnras},
Keywords = {galaxies: abundances, galaxies: elliptical and lenticular, cD, galaxies: evolution},
Month = apr,
Pages = {1908-1926},
Primaryclass = {astro-ph.CO},
Title = {{Chemical element ratios of Sloan Digital Sky Survey early-type galaxies}},
Volume = 421,
Year = 2012,
Bdsk-Url-1 = {http://dx.doi.org/10.1111/j.1365-2966.2011.20316.x}}
@article{kauffmann03a,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/2003MNRAS.341...33K},
Author = {{Kauffmann}, G. and others},
Date-Added = {2019-09-11 09:52:14 -0700},
Date-Modified = {2019-09-11 09:52:14 -0700},
Doi = {10.1046/j.1365-8711.2003.06291.x},
Eprint = {astro-ph/0204055},
Journal = {\mnras},
Keywords = {galaxies: evolution, galaxies: formation, galaxies: stellar content},
Month = may,
Pages = {33-53},
Title = {{Stellar masses and star formation histories for 10$^{5}$ galaxies from the Sloan Digital Sky Survey}},
Volume = 341,
Year = 2003,
Bdsk-Url-1 = {http://dx.doi.org/10.1046/j.1365-8711.2003.06291.x}}
@article{yan16,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/2016AJ....152..197Y},
Archiveprefix = {arXiv},
Author = {{Yan}, R. and {Bundy}, K. and {Law}, D.~R. and {Bershady}, M.~A. and {Andrews}, B. and {Cherinka}, B. and {Diamond-Stanic}, A.~M. and {Drory}, N. and {MacDonald}, N. and {S{\'a}nchez-Gallego}, J.~R. and {Thomas}, D. and {Wake}, D.~A. and {Weijmans}, A.-M. and {Westfall}, K.~B. and {Zhang}, K. and {Arag{\'o}n-Salamanca}, A. and {Belfiore}, F. and {Bizyaev}, D. and {Blanc}, G.~A. and {Blanton}, M.~R. and {Brownstein}, J. and {Cappellari}, M. and {D'Souza}, R. and {Emsellem}, E. and {Fu}, H. and {Gaulme}, P. and {Graham}, M.~T. and {Goddard}, D. and {Gunn}, J.~E. and {Harding}, P. and {Jones}, A. and {Kinemuchi}, K. and {Li}, C. and {Li}, H. and {Maiolino}, R. and {Mao}, S. and {Maraston}, C. and {Masters}, K. and {Merrifield}, M.~R. and {Oravetz}, D. and {Pan}, K. and {Parejko}, J.~K. and {Sanchez}, S.~F. and {Schlegel}, D. and {Simmons}, A. and {Thanjavur}, K. and {Tinker}, J. and {Tremonti}, C. and {van den Bosch}, R. and {Zheng}, Z.},
Date-Added = {2019-09-11 09:51:43 -0700},
Date-Modified = {2019-09-11 09:51:43 -0700},
Doi = {10.3847/0004-6256/152/6/197},
Eid = {197},
Eprint = {1607.08613},
Journal = {\aj},
Keywords = {galaxies: evolution, galaxies: general, surveys, techniques: imaging spectroscopy},
Month = dec,
Pages = {197},
Title = {{SDSS-IV MaNGA IFS Galaxy Survey---Survey Design, Execution, and Initial Data Quality}},
Volume = 152,
Year = 2016,
Bdsk-Url-1 = {http://dx.doi.org/10.3847/0004-6256/152/6/197}}
@article{kennicutt1998,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/1998ApJ...498..541K},
Author = {{Kennicutt}, Jr., R.~C.},
Date-Added = {2019-09-11 09:51:06 -0700},
Date-Modified = {2019-09-11 09:51:06 -0700},
Doi = {10.1086/305588},
Eprint = {astro-ph/9712213},
Journal = {\apj},
Keywords = {GALAXIES: EVOLUTION, GALAXIES: ISM, GALAXIES: SPIRAL, GALAXIES: STELLAR CONTENT, GALAXIES: STARBURST, STARS: FORMATION},
Month = may,
Pages = {541},
Title = {{The Global Schmidt Law in Star-forming Galaxies}},
Volume = 498,
Year = 1998,
Bdsk-Url-1 = {http://dx.doi.org/10.1086/305588}}
@article{calzetti01,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/2001PASP..113.1449C},
Author = {{Calzetti}, D.},
Date-Added = {2019-09-11 09:50:58 -0700},
Date-Modified = {2019-09-11 09:50:58 -0700},
Doi = {10.1086/324269},
Eprint = {astro-ph/0109035},
Journal = {\pasp},
Keywords = {ISM: Dust, Extinction, Galaxies: ISM, Galaxies: Starburst, infrared: galaxies, ultraviolet: galaxies},
Month = dec,
Pages = {1449-1485},
Title = {{The Dust Opacity of Star-forming Galaxies}},
Volume = 113,
Year = 2001,
Bdsk-Url-1 = {http://dx.doi.org/10.1086/324269}}
@article{vanzee1996,
Adsnote = {Provided by the SAO/NASA Astrophysics Data System},
Adsurl = {http://adsabs.harvard.edu/abs/1996AJ....112..129V},
Author = {{van Zee}, L. and {Haynes}, M.~P. and {Salzer}, J.~J. and {Broeils}, A.~H.},
Date-Added = {2019-09-11 09:50:49 -0700},
Date-Modified = {2019-09-11 09:50:49 -0700},
Doi = {10.1086/117994},