-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv_hector.tex
2256 lines (1823 loc) · 91.5 KB
/
cv_hector.tex
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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%% Simple LaTeX CV Template %%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% NOTE: If you find that it says %%
%% %%
%% 1 of ?? %%
%% %%
%% at the bottom of your first page, this means that the AUX file %%
%% was not available when you ran LaTeX on this source. Simply RERUN %%
%% LaTeX to get the ``??'' replaced with the number of the last page %%
%% of the document. The AUX file will be generated on the first run %%
%% of LaTeX and used on the second run to fill in all of the %%
%% references. %%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%% Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Don't like 10pt? Try 11pt or 12pt
\documentclass[10pt]{article}
\RequirePackage[T1]{fontenc}
\usepackage{amssymb}
\usepackage{microtype}
% LaTeX will typeset using Computer Modern Roman, which a lot of
% non-mathematicians and non-engineers won't like. Also, a few PDF
% viewers may not render CMR very well. Instead, Times New Roman can
% be used. That's what this package does.
\usepackage{times}
% The automated optical recognition software used to digitize resume
% information works best with fonts that do not have serifs. This
% command uses a sans serif font throughout. Uncomment both lines (or at
% least the second) to restore a Roman font (i.e., a font with serifs).
% (NOTE: This requires the times package above)
%\renewcommand{\familydefault}{\sfdefault}
% This is a helpful package that puts math inside length specifications
\usepackage{calc}
% This package helps LaTeX auto-hyphenate hyphenated words if you use
% special hyphens. For example, bio\-/mimicry will properly hyphenate
% ``mimicry'' if necessary.
\usepackage[shortcuts]{extdash}
% Layout: Puts the section titles on left side of page
\reversemarginpar
%
% PAPER SIZE, PAGE NUMBER, AND DOCUMENT LAYOUT NOTES:
%
% The next \usepackage line changes the layout for CV style section
% headings as marginal notes. It also sets up the paper size as either
% letter or A4. By default, letter was used. If A4 paper is desired,
% comment out the letterpaper lines and uncomment the a4paper lines.
%
% As you can see, the margin widths and section title widths can be
% easily adjusted.
%
% ALSO: Notice that the includefoot option can be commented OUT in order
% to put the PAGE NUMBER *IN* the bottom margin. This will make the
% effective text area larger.
%
% IF YOU WISH TO REMOVE THE ``of LASTPAGE'' next to each page number,
% see the note about the +LP and -LP lines below. Comment out the +LP
% and uncomment the -LP.
%
% IF YOU WISH TO REMOVE PAGE NUMBERS, be sure that the includefoot line
% is uncommented and ALSO uncomment the \pagestyle{empty} a few lines
% below.
%
%% Use these lines for letter-sized paper
\usepackage[paper=letterpaper,
%includefoot, % Uncomment to put page number above margin
marginparwidth=1.3in, % Length of section titles
marginparsep=.05in, % Space between titles and text
margin=0.8in, % 1 inch margins
includemp]{geometry}
% %% Use these lines for A4-sized paper
% \usepackage[paper=a4paper,
% %includefoot, % Uncomment to put page number above margin
% marginparwidth=28.5mm, % Length of section titles
% marginparsep=1.5mm, % Space between titles and text
% margin=25mm, % 25mm margins
% includemp]{geometry}
%% More layout: Get rid of indenting throughout entire document
\setlength{\parindent}{0in}
% Provides special list environments and macros to create new ones
\usepackage[shortlabels]{enumitem}
% Simpler bibsections for CV sections
% (thanks to natbib for inspiration)
%
% * For lists of references with hanging indents and no numbers:
%
% \begin{bibsection}
% \item ...
% \end{bibsection}
%
% * For numbered lists of references (with hanging indents):
%
% \begin{bibenum}
% \item ...
% \end{bibenum}
%
% Note that bibenum numbers continuously throughout. To reset the
% counter, use
%
% \restartlist{bibenum}
%
% at the place where you want the numbering to reset.
\makeatletter
\newlength{\bibhang}
\setlength{\bibhang}{1em}
\newlength{\bibsep}
{\@listi \global\bibsep\itemsep \global\advance\bibsep by\parsep}
\newlist{bibsection}{itemize}{3}
\setlist[bibsection]{label=,leftmargin=\bibhang,%
itemindent=-\bibhang,
itemsep=\bibsep,parsep=\z@,partopsep=0pt,
topsep=0pt}
\newlist{bibenum}{enumerate}{3}
\setlist[bibenum]{label=[\arabic*],resume,leftmargin={\bibhang+\widthof{[999]}},%
itemindent=-\bibhang,
itemsep=\bibsep,parsep=\z@,partopsep=0pt,
topsep=0pt,wide=0pt}
\let\oldendbibenum\endbibenum
\def\endbibenum{\oldendbibenum\vspace{-.6\baselineskip}}
\let\oldendbibsection\endbibsection
\def\endbibsection{\oldendbibsection\vspace{-.6\baselineskip}}
\makeatother
%% Reference the last page in the page number
%
% NOTE: comment the +LP line and uncomment the -LP line to have page
% numbers without the ``of ##'' last page reference)
%
% NOTE: uncomment the \pagestyle{empty} line to get rid of all page
% numbers (make sure includefoot is commented out above)
%
\usepackage{fancyhdr,lastpage}
\pagestyle{fancy}
%\pagestyle{empty} % Uncomment this to get rid of page numbers
\fancyhf{}\renewcommand{\headrulewidth}{0pt}
\fancyfootoffset{\marginparsep+\marginparwidth}
\newlength{\footpageshift}
\setlength{\footpageshift}
{0.5\textwidth+0.5\marginparsep+0.5\marginparwidth-2in}
\lfoot{\hspace{\footpageshift}%
\parbox{4in}{\, \hfill %
{\it \arabic{page} of \protect\pageref*{LastPage}} % +LP
% \arabic{page} % -LP
\hfill \,}}
% Finally, give us PDF bookmarks
\usepackage{color,hyperref}
\usepackage[usenames,dvipsnames]{xcolor}
\definecolor{venetianred}{rgb}{0.78, 0.03, 0.08}
\definecolor{aeired}{RGB}{173, 0, 0}
\definecolor{aeiblu}{RGB}{1, 67, 95}
\definecolor{aeilbl}{RGB}{0, 102, 153}
\hypersetup{colorlinks,breaklinks,
linkcolor=aeired,urlcolor=aeiblu,
anchorcolor=aeired,citecolor=aeired}
\newcommand{\invited}{{\color{aeilbl}{invited}}}
\usepackage[anythingbreaks]{breakurl}
%%%%%%%%%%%%%%%%%%%%%%%% End Document Setup %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%% Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%% HEADING AT TOP OF CURRICULUM VITAE
% The title (name) with a horizontal rule under it
% (optional argument typesets an object right-justified across from name
% as well)
%
% Usage: \makeheading{name}
% OR
% \makeheading[right_object]{name}
%
% Place at top of document. It should be the first thing.
% If ``right_object'' is provided in the square-braced optional
% argument, it will be right justified on the same line as ``name'' at
% the top of the CV. For example:
%
% \makeheading[\emph{Curriculum vitae}]{Your Name}
%
% will put an emphasized ``Curriculum vitae'' at the top of the document
% as a title. Likewise, a picture could be included:
%
% \makeheading[{\includegraphics[height=1.5in]{my_picture}}]{Your Name}
%
% the picture will be flush right across from the name. For this example
% to work, make sure the extra set of curly braces is included. Also
% makes ure that \usepackage{graphicx} is somewhere in the preamble.
\newcommand{\makeheading}[2][]%
{\hspace*{-\marginparsep minus \marginparwidth}%
\begin{minipage}[t]{\textwidth+\marginparwidth+\marginparsep}%
{\large \bfseries #2 \hfill #1}\\[-0.15\baselineskip]%
\rule{\columnwidth}{1pt}%
\end{minipage}}
%%% SECTION HEADINGS
% The section headings. Flush left in small caps down pseudo-margin.
%
% Usage: \section{section name}
\renewcommand{\section}[1]{\pagebreak[3]%
\vspace{1.3\baselineskip}%
\phantomsection\addcontentsline{toc}{section}{#1}%
\noindent\llap{\scshape\smash{\parbox[t]{\marginparwidth}{\hyphenpenalty=10000\raggedright #1}}}%
\vspace{-\baselineskip}\par}
%%% LISTS
% This macro alters a list by removing some of the space that follows the list
% (is used by lists below)
\newcommand*\fixendlist[1]{%
\expandafter\let\csname preFixEndListend#1\expandafter\endcsname\csname end#1\endcsname
\expandafter\def\csname end#1\endcsname{\csname preFixEndListend#1\endcsname\vspace{-0.6\baselineskip}}}
% These macros help ensure that items in outer-type lists do not get
% separated from the next line by a page break
% (they are used by lists below)
\let\originalItem\item
\newcommand*\fixouterlist[1]{%
\expandafter\let\csname preFixOuterList#1\expandafter\endcsname\csname #1\endcsname
\expandafter\def\csname #1\endcsname{\let\oldItem\item\def\item{\pagebreak[2]\oldItem}\csname preFixOuterList#1\endcsname}
\expandafter\let\csname preFixOuterListend#1\expandafter\endcsname\csname end#1\endcsname
\expandafter\def\csname end#1\endcsname{\let\item\oldItem\csname preFixOuterListend#1\endcsname}}
\newcommand*\fixinnerlist[1]{%
\expandafter\let\csname preFixInnerList#1\expandafter\endcsname\csname #1\endcsname
\expandafter\def\csname #1\endcsname{\let\oldItem\item\let\item\originalItem\csname preFixInnerList#1\endcsname}
\expandafter\let\csname preFixInnerListend#1\expandafter\endcsname\csname end#1\endcsname
\expandafter\def\csname end#1\endcsname{\csname preFixInnerListend#1\endcsname\let\item\oldItem}}
% An itemize-style list with lots of space between items
%
% Usage:
% \begin{outerlist}
% \item ... % (or \item[] for no bullet)
% \end{outerlist}
\newlist{outerlist}{itemize}{3}
\setlist[outerlist]{label=\enskip\textbullet,leftmargin=*}
\fixendlist{outerlist}
\fixouterlist{outerlist}
% An environment IDENTICAL to outerlist that has better pre-list spacing
% when used as the first thing in a \section
%
% Usage:
% \begin{lonelist}
% \item ... % (or \item[] for no bullet)
% \end{lonelist}
\newlist{lonelist}{itemize}{3}
\setlist[lonelist]{label=\enskip\textbullet,leftmargin=*,partopsep=0pt,topsep=0pt}
\fixendlist{lonelist}
\fixouterlist{lonelist}
% An itemize-style list with little space between items
%
% Usage:
% \begin{innerlist}
% \item ... % (or \item[] for no bullet)
% \end{innerlist}
\newlist{innerlist}{itemize}{3}
\setlist[innerlist]{label=\enskip\textbullet,leftmargin=*,parsep=0pt,itemsep=0pt,topsep=0pt,partopsep=0pt}
\fixinnerlist{innerlist}
% An environment IDENTICAL to innerlist that has better pre-list spacing
% when used as the first thing in a \section
%
% Usage:
% \begin{loneinnerlist}
% \item ... % (or \item[] for no bullet)
% \end{loneinnerlist}
\newlist{loneinnerlist}{itemize}{3}
\setlist[loneinnerlist]{label=\enskip\textbullet,leftmargin=*,parsep=0pt,itemsep=0pt,topsep=0pt,partopsep=0pt}
\fixendlist{loneinnerlist}
\fixinnerlist{loneinnerlist}
%%% EXTRA SPACE
% To add some paragraph space between lines.
% This also tells LaTeX to preferably break a page on one of these gaps
% if there is a needed pagebreak nearby.
\newcommand{\blankline}{\quad\pagebreak[3]}
\newcommand{\halfblankline}{\quad\vspace{-0.5\baselineskip}\pagebreak[3]}
%%% FORMATTING MACROS
% Provides a linked \doi{#1} that links doi:#1 to http://dx.doi.org/#1
\usepackage{doi}
% To change the text before the DOI, adjust this command
%\renewcommand\doitext{doi:}
% Provides a linked \url{#1} that doesn't require escape characters
\usepackage{url}
% You can adjust the style \url{} uses here:
% (options are: same, rm, sf, tt; defaults to tt)
\urlstyle{same}
% For \email{ADDRESS}, links ADDRESS to the url mailto:ADDRESS
% (uncomment to typeset the e\-/mail address in typewriter font;
% otherwise, will be typeset in the \urlstyle above)
%\DeclareUrlCommand\emaillink{\urlstyle{tt}}
\providecommand*\emaillink[1]{\nolinkurl{#1}}
\providecommand*\email[1]{\href{mailto:#1}{\emaillink{#1}}}
\providecommand\BibTeX{{B\kern-.05em{\sc i\kern-.025em b}\kern-.08em \TeX}}
\providecommand\Matlab{\textsc{Matlab}}
% Custom hyphenation rules for words that LaTeX has trouble with
% \hyphenation{bio-mim-ic-ry bio-in-spi-ra-tion re-us-a-ble pro-vid-er Media-Wiki}
\newcommand{\MYhref}[3][blue]{\href{#2}{\color{#1}{#3}}}
% To be published command
\newcommand{\tocome}[1]{{\textcolor{green}{{#1}} }}
%%%%%%%%%%%%%%%%%%%%%%%% End Helper Commands %%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%% Begin CV Document %%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\makeheading{\sc Hector Okada da Silva}
\section{Personal and Contact Information}
% NOTE: Mind where the & separators and \\ breaks are in the following
% table. Table is one row made up of three parboxes. The left
% parbox has address info, the middle parbox has a vertical bar,
% and the right parbox has phone and electronic contact
% information.
%
% MACROS: \rcollength is the width of the right column of the table
% (adjust it to your liking; default is 1.85in).
% \spacewidth is width of area between left and right boxes.
%
\newlength{\rcollength}\setlength{\rcollength}{1.85in}%
\newlength{\spacewidth}\setlength{\spacewidth}{20pt}
%
\begin{tabular}[t]{@{}p{\textwidth-\rcollength-\spacewidth}@{}p{\spacewidth}@{}p{\rcollength}}%
% Address box
\parbox{\textwidth-\rcollength-\spacewidth}{%
\vspace{0.2cm}
{Name}: Hector Okada da Silva\\
{Citizenship}: Brazilian\\ \\
%
% \href{https://aei.mpg.de}{Max Planck Institute for Gravitational Physics \\ (Albert Einstein Institute)}\\
% Potsdam, D-14476, Germany \\ \\
% Office: 1.33 \\
\href{https://illinois.edu}{University of Illinois Urbana-Champaign}\\
\href{https://physics.illinois.edu}{Department of Physics},
Loomis Laboratory, \\
1110 West Green Street, 61801 Urbana, Illinois, USA \\
Office: 237B \\
% Phone: {\sc +49 331 567-7253}
\\
{E-mail:} \email{[email protected]} | \email{[email protected]}\\
{ORCID:} \href{https://orcid.org/0000-0002-0066-9471}{0000-0002-0066-9471} \\
{Website:} \href{http://www.phy.olemiss.edu/~hosilva/}{www.phy.olemiss.edu/$\sim$hosilva} \\
}
&
% Uncomment to add a vertical bar in middle of contact information
% {\vrule width 0.5pt}
% \parbox[m][5\baselineskip]{\spacewidth}{} &
% % Non-snail-mail contact information
% \hspace{-2cm}\parbox{1.2\rcollength}{%
% % \textit{Work:} +1-480-965-2899 \\
% % \textit{Fax:} +1-480-965-2751 \\
% {E-mail:} \email{[email protected]}\\
% % {E-mail:} \email{[email protected]}\\
% {Website:} \href{http://www.phy.olemiss.edu/~hosilva/}{www.phy.olemiss.edu/~hosilva}} \\
\end{tabular}
\section{Research Interests}
Astrophysical aspects of relativistic gravity (general relativity and
modifications thereof).
%
Black-hole and stellar perturbation theory.
%
Strong-field tests of gravity, and gravitational waveform modeling.
%
Neutron star astrophysics and equation of state.
\section{Employment}
\href{http://www.illinois.edu}{\textbf{University of Illinois Urbana-Champaign}},
Urbana, IL, USA
\begin{outerlist}
\item[]
{Department of Physics} \\
December 2024
\begin{innerlist}
\item Position: Tenure-track Assistant Professor
\end{innerlist}
\end{outerlist}
\blankline
\href{https://aei.mpg.de}{\textbf{Max Planck Institute for Gravitational Physics (Albert Einstein Institute)}},
Potsdam, Germany
\begin{outerlist}
\item[]
{Department of Astrophysical and Cosmological Relativity} \\
November 2020 -- November 2024
\begin{innerlist}
\item Position: Junior (2020 -- 2023), then Senior (2023 -- 2024) Scientist / Leibniz fellow
\item Supervisor:
\href{https://www.aei.mpg.de/alessandra-buonanno}
{Alessandra Buonanno}
\end{innerlist}
\end{outerlist}
\blankline
\href{http://www.illinois.edu}{\textbf{University of Illinois Urbana-Champaign}},
Urbana, IL, USA
\begin{outerlist}
\item[]
{Department of Physics} \\
August 2019 -- October 2020
\begin{innerlist}
\item Position: Post-doctoral researcher
\item Supervisor:
\href{http://www.physics.montana.edu/people/faculty/yunes-nicolas.html}
{Nicol\'as Yunes}
\end{innerlist}
\end{outerlist}
\blankline
\href{http://www.montana.edu}{\textbf{Montana State University}},
Bozeman, MT, USA
\begin{outerlist}
\item[]
{Department of Physics} \\
August 2017 -- August 2019
\begin{innerlist}
\item Position: Post-doctoral researcher
\item Supervisor:
\href{http://www.physics.montana.edu/people/faculty/yunes-nicolas.html}
{Nicol\'as Yunes}
\end{innerlist}
\end{outerlist}
\section{Education}
\href{http://www.olemiss.edu/}{\textbf{University Mississippi}},
Oxford, MS, USA
\begin{outerlist}
\item[] PhD.,
\href{http://olemiss.edu/depts/physics_and_astronomy/}
{Department of Physics and Astronomy}, May 2017
\begin{innerlist}
\item Title: \emph{Compact objects in relativistic theories of gravity}
\item Supervisor:
\href{http://www.phy.olemiss.edu/~berti/}
{Emanuele Berti}
\end{innerlist}
\end{outerlist}
\halfblankline
\href{http://www.ufpa.br/}{\textbf{Federal University of Par\'a}},
Bel\'em, PA, Brazil
\begin{outerlist}
\item[] M.Sc.,
\href{http://www.ppgf.ufpa.br}
{Graduate Program in Physics}, February 2011
\begin{innerlist}
\item Title: \emph{Dynamical Casimir effect in 1+1 dimensions}
\item Supervisors:
\href{http://lattes.cnpq.br/6642002445572793}{Danilo T. Alves}
and
\href{http://www.if.ufrj.br/docentes/carlos-farina-de-souza/}{Carlos Farina}
\end{innerlist}
\item[] B.Sc.,
\href{http://www.facfis.ufpa.br}
{Department of Physics}, December 2008
\begin{innerlist}
\item Title: \emph{Exact solution for the energy density inside a non-stationary cavity with an arbitrary initial field state and applications}
\item Supervisor:
\href{http://lattes.cnpq.br/6642002445572793}{Danilo T. Alves}
\end{innerlist}
\end{outerlist}
% % Add a little space to nudge next ``Ref'd Journal Publications'' marginpar
% % down to make room for tall ``Submitted Journal Publications''
% % marginpar. If there are enough submitted journal publications, this
% % space will not be needed (and should be removed).
% \vspace{0.1in}
\section{Awards, Honors \& Scholarships}
\restartlist{bibenum}
\begin{bibenum}
\item \href{https://gwic.ligo.org/thesis-prize.html}{\emph{The 2017 GWIC-Braccini Thesis Prize}},
Gravitational Wave International Committee (2019).
\item {\emph{Dissertation Fellowship} -- Spring 2017},
University of Mississippi (2016).
\item \href{http://physics.olemiss.edu/hector-okada-da-silva-is-a-winner-of-the-2016-graduate-student-achievement-award/}{\emph{Graduate Achievement Award}},
University of Mississippi (2016).
\item \href{http://physics.olemiss.edu/sigma-pi-sigma/}{\emph
{Elected member of the Sigma Pi Sigma}}, the Physics Honor Society (2016).
\item \emph{The Blue Apple Award} [For best student talk at the \href{http://www.phys.ufl.edu/events/gcgm8/index.html}{8th Gulf Coast
Gravity Meeting}, University of Florida],
% , Feb. 27--28, 2015],
\href{https://www.aps.org/units/dgrav/}{American Physical Society Topical Group in Gravitation} (2015).
\item Summer Research Assistantship,
Graduate School, University of Mississippi (2015).
\item University of Mississippi, Department of Physics and Astronomy,
\emph{Zdravko Stipcevic Honors Fellowship}
(2012 -- 2015).
\item National Council for Scientific and Technological Development (CNPq) Scholarship, (2009 -- 2011).
\item Foundation for Research Support of the State of Par\'a (FAPESPA) Scholarship,
(2008 -- 2009).
\item National Council for Scientific and Technological Development (CNPq) Scholarship , (2006 -- 2008).
\end{bibenum}
\section{Research grants}
\restartlist{bibenum}
\begin{bibenum}
\item Fund from the
\href{https://sites.google.com/view/gravity-theory-trust?pli=1}{Gravity
Theory Trust}, to organize the workshop ``EFTs, Gravity, and Fluid
Dynamics: Progress, Challenges, and Emerging Opportunies'' between
December 16th to 18th, 2024. Total value of \$15,000~USD.
\item Fund from the
\href{https://sites.google.com/view/gravity-theory-trust?pli=1}{Gravity
Theory Trust}, to organize the workshop ``Connecting the dots: Toward
inspiral-merger-ringdown gravitational waveforms beyond general
relativity'' between June 14th to 16th, 2023. Total value of
\$15,000~USD.
\item co-PI of the \emph{2021 Illinois Blue Waters allocation} project entitled
\emph{``Strong field tests of gravity: numerical relativity in quadratic
gravity''}. Total of 689,000 node-hours (with an estimated value of
\$427,387~USD). (January 2021 to December 2021).
\item {\emph{NAOJ Visiting Joint Research}} travel grant, National Astronomical Observatory of Japan (September 21, 2018 to October, 21 2018).
\end{bibenum}
\section{Scientific Collaborations}
\begin{innerlist}
\item Member of the \href{https://www.ligo.org/}{LIGO Scientific Collaboration} from 09/2022 to 12/2024.
I contribute to the AEI LSC group's work in tests of general relativity with gravitational-wave observations,
in particular with the ``pSEOB'' pipeline.
\item Member of the \href{https://www.et-gw.eu/}{Einstein Telescope Observation Science Board} since 07/2022.
I contribute to the ET OBS Division 8 -- Waveforms. I am the coordinator of
the section ``Waveforms in alternative theories of gravity'' for the
Einstein Telescope's Blue Book, that will cover the observatory's science
case.
\end{innerlist}
\section{Refereed Journal Publications}
As of December 2024, \textbf{I have a total of 46 published short-author}
research papers, \textbf{1} topical review, \textbf{3} papers in conference
proceedings, \textbf{2} two book chapters, and \textbf{2} manuscripts currently under review.
%
This includes {\color{aeired}{\textbf{6}}} papers in the \textbf{\emph{Physical Review
Letters}}, {\color{aeired}{\textbf{1}}} in \textbf{\emph{The Astrophysical Journal
Letters}}, and {\color{aeired}{\textbf{1}}} invited article for the \textbf{\emph{Reviews
of Modern Physics}}.
%
In total, my work has gathered a total of 4,645 citations, and I have a
\emph{h}-index of 29 according to the INSPIRE database.
%
For the most up-to-date publication record see my profile in INSPIRE
[\href{https://inspirehep.net/authors/1064872}{https://inspirehep.net/authors/1064872}].
\blankline
\restartlist{bibenum}
\begin{bibenum}
\item D. T. Alves, E. R. Granhen, H. O. Silva, and M. G. Lima,
\emph{Quantum radiation force on the moving mirror of a cavity, with Dirichlet and Neumann boundary conditions for a vacuum, finite temperature, and a coherent state},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.81.025016}{Phys. Rev. D {\bf81} 025016 (2010)}.
\item D. T. Alves, E. R. Granhen, H. O. Silva, and M. G. Lima,
\emph{Exact behavior of the energy density inside an one-dimensional oscillating cavity with a thermal state},
\href{http://www.sciencedirect.com/science/article/pii/S0375960110009503}{Phys. Lett. A {\bf374} 3899-3907 (2010)}
[\href{http://arxiv.org/abs/1002.2238}{arXiv:1002.2238}].
\item H. O. Silva and C. Farina,
\emph{Simple model for the dynamical Casimir effect for a static mirror with time-dependent properties},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.84.045003}{Phys. Rev. D {\bf84} 045003 (2011)}
[\href{http://arxiv.org/abs/1102.2238}{arXiv:1102.2238}].
\label{itm:robintd}
\item A. L. C. Rego, H. O. Silva, D. T. Alves, and C. Farina,
\emph{New signatures of the dynamical Casimir effect in a superconducting circuit},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.90.025003}{Phys. Rev. D {\bf90} 025003 (2014)}
[\href{http://arxiv.org/abs/1410.2511}{arXiv:1405.3720}].
\item H. O. Silva, H. Sotani, E. Berti, and M. Horbatsch,
\emph{Torsional oscillations of neutron stars in scalar-tensor theory of gravity},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.90.124044}{Phys. Rev. D {\bf90} 124044 (2014)}
[\href{http://arxiv.org/abs/1410.2511}{arXiv:1410.2511}].
\item H. O. Silva, C. F. B. Macedo, E. Berti, and L. C. B. Crispino,
\emph{Slowly rotating anisotropic neutron stars in general relativity and scalar-tensor theory},
\href{http://iopscience.iop.org/article/10.1088/0264-9381/32/14/145008/meta}{Class. Quantum Grav. {\bf32} 145008 (2015)}
[\href{http://arxiv.org/abs/1411.6286}{arXiv:1411.6286}],
(Chosen as
\MYhref[venetianred]{http://iopscience.iop.org/collections}{\sc IOPSelect})
% (Chosen as \href{http://iopscience.iop.org/collections}{\sc IOPSelect}).
\label{itm:anisostar}
\item K. Glampedakis, G. Pappas, H. O. Silva, and E. Berti,
\emph{Post-Tolman-Oppenheimer-Volkoff formalism for relativistic stars},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.92.024056}{Phys. Rev. D {\bf92} 024056 (2015)}
[\href{http://arxiv.org/abs/1504.02455}{arXiv:1504.02455}].
\item M. Horbatsch, H. O. Silva, D. Gerosa, P. Pani, E. Berti, L. Gualtieri,
and U. Sperhake,
\emph{Tensor-multi-scalar theories: relativistic stars and 3+1 decomposition},
\href{http://iopscience.iop.org/article/10.1088/0264-9381/32/20/204001/meta;jsessionid=575DFA8E53663683D64E28DF82CE0294.c1}{Class. Quantum Grav.
{\bf32} 204001 (2015)}
[\href{http://arxiv.org/abs/1505.07462}{arXiv:1505.07462}],
(Chosen as
\MYhref[venetianred]{http://iopscience.iop.org/collections}{\sc IOPSelect})
\label{itm:multiscalar}
\item A. Maselli, H. O. Silva, M. Minamitsuji, and E. Berti,
\emph{Slowly rotating black hole solutions in Horndeski gravity},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.92.104049}{Phys. Rev. D {\bf92} 104049 (2015)}
[\href{http://arxiv.org/abs/1508.03044}{arXiv:1508.03044}].
\label{itm:horndeski}
\item H. O. Silva, H. Sotani, and E. Berti,
\emph{Low-mass neutron stars: universal relations, the nuclear symmetry energy and gravitational radiation},\\
\href{http://mnras.oxfordjournals.org/content/459/4/4378}{MNRAS {\bf459}
4378 (2016)}
[\href{http://arxiv.org/abs/1601.03407}{arXiv:1601.03407}]
\item A. Maselli, H. O. Silva, M. Minamitsuji, and E. Berti,
\emph{Neutron stars in Horndeski gravity},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.93.124056}{Phys. Rev. D {\bf93} 124056 (2016)}
[\href{https://arxiv.org/abs/1603.04876}{arXiv:1603.04876}]
\item M. Minamitsuji and H. O. Silva,
\emph{Relativistic stars in scalar-tensor theories with disformal coupling},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.93.124056}{Phys. Rev. D {\bf93} 124041 (2016)}
[\href{https://arxiv.org/abs/1604.07742}{arXiv:1604.07742}]
\label{itm:disformal}
\item K. Glampedakis, G. Pappas, H. O. Silva, and E. Berti,
\emph{Astrophysical application of the Post-Tolman-Oppenheimer-Volkoff formalism},
\href{http://journals.aps.org/prd/abstract/10.1103/PhysRevD.94.044030}{Phys. Rev. D {\bf94} 044030 (2016)}
[\href{https://arxiv.org/abs/1606.05106}{arXiv:1606.05106}]
(Featured as {\color{venetianred}\sc Editors's Suggestion}).
\label{itm:astroptov}
\item K. Glampedakis, G. Pappas, H. O. Silva, and E. Berti,
\emph{Post-Kerr black hole spectroscopy},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.96.064054}{Phys. Rev. D {\bf96} 064054 (2017)}
[\href{https://arxiv.org/abs/1706.07658}{arXiv:1706.07658}]
\label{itm:postkerr}
\item H. O. Silva and N. Yunes,
\emph{I-Love-Q to the extreme},
\href{http://iopscience.iop.org/article/10.1088/1361-6382/aa995a}{Class. Quantum Grav. {\bf35} 015005 (2017)}
[\href{https://arxiv.org/abs/1710.00919}{arXiv:1710.00919}]
\item J. Alsing, H. O. Silva, and E. Berti,
\emph{Evidence for a maximum mass cut-off in the neutron star mass distribution and constraints on the equation of state},
\href{https://academic.oup.com/mnras/article-abstract/478/1/1377/4987228?redirectedFrom=fulltext}{MNRAS {\bf478} 1377 (2018)}
[\href{https://arxiv.org/abs/1709.07889}{arXiv:1709.07889}]
\item H. O. Silva, J. Sakstein, L. Gualtieri, T.~P. Sotiriou, and E. Berti,
\emph{Spontaneous scalarization of black holes and compact stars from a Gauss-Bonnet coupling},
\href{https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.131104}{Phys. Rev. Lett. {\bf120} 131104 (2018)}
[\href{https://arxiv.org/abs/1711.02080}{arXiv:1711.02080}]
\label{itm:edgb_sca}
\item H. O. Silva and N. Yunes,
\emph{Neutron star pulse profiles in scalar-tensor theories of gravity},
\href{http://iopscience.iop.org/article/10.1088/1361-6382/aa995a}{Phys. Rev. D {\bf99} 044034 (2019)}
[\href{https://arxiv.org/abs/1808.04391}{arXiv:1808.04391}]
\item H. O. Silva, C. F. B. Macedo, T. P. Sotiriou, L. Gualtieri,
J. Sakstein, and E. Berti,
\emph{Stability of scalarized black hole solutions in scalar-Gauss-Bonnet gravity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.99.064011}{Phys. Rev. D {\bf99} 064011 (2019)}
[\href{https://arxiv.org/abs/1812.05590}{arXiv:1812.05590}]
\item C. F. B. Macedo, J. Sakstein, E. Berti, L. Gualtieri, H. O. Silva, and T. P. Sotiriou,
\emph{Self-interactions and Spontaneous Black Hole Scalarization},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.99.104041}{Phys. Rev. D {\bf 99}, 104041 (2019)}
[\href{https://arxiv.org/abs/1903.06784}{arXiv:1903.06784}]
\item H. O. Silva and N. Yunes,
\emph{Neutron star x-ray burst oscillations as extreme gravity probes},
\href{https://iopscience.iop.org/article/10.1088/1361-6382/ab3560}{Class. Quantum Grav. {\bf 36}, 17LT01 (2019)}
[\href{https://arxiv.org/abs/1902.10269}{arXiv:1902.10269}]
\item H. Sotani, H. O. Silva, and G. Pappas,
\emph{Finite size effects on the light curves of slowly-rotating neutron stars},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.100.043006}{Phys. Rev. D {\bf 100}, 043006 (2019)}
[\href{https://arxiv.org/abs/1905.07668}{arXiv:1905.07668}]
\label{itm:pp_fs}
\item A. Saffer, H. O. Silva, and N. Yunes,
\emph{The exterior spacetime of relativistic stars in scalar-Gauss-Bonnet gravity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.100.044030}{Phys. Rev. D {\bf 100}, 044030 (2019)}
[\href{https://arxiv.org/abs/1903.07779}{arXiv:1903.07779}]
\item K. Glampedakis and H. O. Silva,
\emph{Eikonal quasinormal modes of black holes beyond general relativity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.100.044040}{Phys. Rev. D {\bf 100}, 044040 (2019)}
[\href{https://arxiv.org/abs/1906.05455}{arXiv:1906.05455}]
\item H. O. Silva and N. Yunes,
\emph{More than the sum of its parts: combining parameterized tests of extreme gravity},
\href{https://link.aps.org/doi/10.1103/PhysRevD.100.084034}{Phys. Rev. D {\bf 100}, 084034 (2019)}
[\href{https://arxiv.org/abs/1906.00485}{arXiv:1906.00485}]
\item R. Nair, S. Perkins, H. O. Silva, and N. Yunes,
\emph{Fundamental physics implications on higher-curvature theories from
the binary black hole signals in the LIGO-Virgo Catalog GWTC-1},
\href{https://link.aps.org/doi/10.1103/PhysRevLett.123.191101}{Phys. Rev. Lett. {\bf 123}, 191101 (2019)},
\href{https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.124.169904}{\emph{ibid.} {\bf 124}, 169904(E) (2020)}
[\href{https://arxiv.org/abs/1905.00870}{arXiv:1905.00870}]
\label{pub:nairPRL2020}
\item H. O. Silva and M. Minamitsuji,
\emph{Cosmological attractors to general relativity and spontaneous scalarization with disformal coupling},
\href{https://link.aps.org/doi/10.1103/PhysRevD.100.104012}{Phys. Rev. D {\bf 100}, 104012 (2019)}
[\href{https://arxiv.org/abs/1909.11756}{arXiv:1909.11756}]
\item H. O. Silva and K. Glampedakis,
\emph{Eikonal quasinormal modes of black holes beyond general relativity II: generalized scalar-tensor perturbations},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.101.044051}{Phys. Rev. D {\bf 101}, 044051 (2020)}
[\href{https://arxiv.org/abs/1912.09286}{arXiv:1912.09286}]
\item C. A. R. Herdeiro, E. Radu, H. O. Silva, T. P. Sotiriou, and N. Yunes,
\emph{Spin-induced scalarized black holes},
\href{https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.126.011103}{Phys. Rev. Lett. {\bf 126}, 011103 (2021)}
[\href{https://arxiv.org/abs/2009.03904}{arXiv:2009.03904}]
\item H. O. Silva, G. Pappas, N. Yunes, and K. Yagi,
\emph{The surface of rapidly-rotating neutron stars: implications to neutron star parameter estimation},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.103.063038}{Phys. Rev. D {\bf 103}, 063038 (2021)}
\begin{sloppypar}[\href{https://arxiv.org/abs/2008.05565}{arXiv:2008.05565}]\end{sloppypar}
\item A. Miguel Holgado, H. O. Silva, P. M. Ricker, and N. Yunes,
\emph{The role of strong gravity and the nuclear equation of state on neutron-star common-envelope accretion},
\href{https://iopscience.iop.org/article/10.3847/2041-8213/abecdd}{Astrophys. J. Lett. {\bf 901}, L22 (2021)}
[\href{https://arxiv.org/abs/2102.08267}{arXiv:2101.08267}]
\item H. O. Silva, A. Miguel Holgado, A. C\'{a}rdenas-Avenda\~{n}o, and N. Yunes,
\emph{Astrophysical and theoretical physics implications from multimessenger neutron star observations},
\href{https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.126.181101}{Phys. Rev. Lett. {\bf 126}, 181101 (2021)}
[\href{https://arxiv.org/abs/2004.01253}{arXiv:2004.01253}]
(Featured as {\color{venetianred}\sc Editors's Suggestion} and on \href{https://physics.aps.org/articles/v14/66}{Physics}.).
\label{pub:SilvaPRL2021Nicer}
\item Y. Xie, J. Zhang, H. O. Silva, C. de Rham, H. Witek, and N. Yunes,
\emph{A square peg in a circular hole: choosing the right ansatz for isolated black holes in generic gravitational theories},
\href{https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.126.241104}{Phys. Rev. Lett. {\bf 126}, 241104 (2021)}
[\href{https://arxiv.org/abs/2103.03925}{arXiv:2103.03925}]
\item H. O. Silva, H. Witek, M. Elley, and N. Yunes,
\emph{Dynamical descalarization in binary black hole mergers},
\href{https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.127.031101}{Phys. Rev. Lett. {\bf 127}, 031101 (2021)}
[\href{https://arxiv.org/abs/2012.10436}{arXiv:2012.10436}]
\item S. E. Perkins, R. Nair, H. O. Silva, and N. Yunes,
\emph{Improved gravitational-wave constraints on higher-order curvature theories of gravity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.104.024060}{Phys. Rev. D {\bf 104}, 024060 (2021)}
[\href{https://arxiv.org/abs/2104.11189}{arXiv:2104.11189}]
\item A. Bryant, H. O. Silva, K. Yagi, and K. Glampedakis,
\emph{Eikonal quasinormal modes of black holes beyond general relativity III: scalar Gauss-Bonnet gravity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.104.044051}{Phys. Rev. D {\bf 104}, 044051 (2021)}
[\href{https://arxiv.org/abs/2106.09657}{arXiv:2106.09657}]
\item H.~O.~Silva, A.~Coates, F.~M.~Ramazano\u{g}lu, and T.~P.~Sotiriou
\emph{Ghost of vector fields in compact stars},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.105.024046}{Phys. Rev. D {\bf 105}, 024046 (2022)}
[\href{https://arxiv.org/abs/2110.04594}{arXiv:2110.04594}]
\item P. Wagle, N. Yunes, and H. O. Silva,
\emph{Quasinormal modes of slowly-rotating black holes in dynamical Chern-Simons gravity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.105.124003}{Phys. Rev. D {\bf 105}, 124003 (2022)}
[\href{https://arxiv.org/abs/2103.09913}{arXiv:2103.09913}]
\item F.-L. Juli\'e, H. O. Silva, E. Berti, and N. Yunes,
\emph{Black hole sensitivities in Einstein-scalar-Gauss-Bonnet gravity},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.105.124031}{Phys. Rev. D {\bf 105}, 124031 (2022)}
[\href{https://arxiv.org/abs/2202.01329}{arXiv:2202.01329}]
\item M. Elley, H. O. Silva, H. Witek, and N. Yunes,
\emph{Spin-induced dynamical scalarization, de-scalarization and stealthness in scalar-Gauss-Bonnet gravity during black hole coalescence},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.106.044018}{Phys. Rev. D {\bf 106}, 044018 (2022)}
[\href{https://arxiv.org/abs/2205.06240}{arXiv:2205.06240}]
\item H. O. Silva, A. Ghosh, and A. Buonanno,
\emph{Black-hole ringdown as a probe of higher-curvature gravity theories},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.107.044030}{Phys. Rev. D {\bf 107}, 044030 (2023)}
[\href{https://arxiv.org/abs/2212.09655}{arXiv:2205.05132}]
\item E. Maggio, H. O. Silva, A. Buonanno, and A. Ghosh,
\emph{Tests of general relativity in the nonlinear regime:~a~parametrized~plunge-merger-ringdown~gravitational~waveform~model},
\href{https://link.aps.org/doi/10.1103/PhysRevD.108.024043}{Phys. Rev. D {\bf 108}, 024043 (2023)}
[\href{https://arxiv.org/abs/2212.09655}{arXiv:2212.09655}]
\item M. K. Mandal, P. Mastrolia, H. O. Silva, R. Patil, and J. Steinhoff,
\emph{Gravitoelectric dynamical tides at second post-Newtonian order},
\href{https://link.springer.com/article/10.1007/JHEP11(2023)067}{J. High Energ. Phys. {\bf 2023}, 67 (2023)}
[\href{https://arxiv.org/abs/2304.02030}{arXiv:2304.02030}]
\item H. O. Silva, G. Tambalo, K. Glampedakis, and K. Yagi,
\emph{Gravitational radiation from a particle plunging into a Schwarzschild black hole: frequency-domain and semirelativistic analyses},
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.109.024036}{Phys. Rev. D {\bf 109}, 024036 (2024)}
[\href{https://arxiv.org/abs/2308.14823}{arXiv:2308.14823}]
\item M. K. Mandal, P. Mastrolia, H. O. Silva, R. Patil, and J. Steinhoff,
\emph{Renormalizing Love: tidal effects at the third post-Newtonian order},
\href{https://link.springer.com/article/10.1007/JHEP02(2024)188}{J. High Energ. Phys. {\bf 2024}, 188 (2024)}
[\href{https://arxiv.org/abs/2308.01865}{arXiv:2308.01865}]
\item H. O. Silva, G. Tambalo, K. Glampedakis, K. Yagi, and J. Steinhoff,
\emph{Quasinormal modes and their excitation beyond general relativity}
\href{https://journals.aps.org/prd/abstract/10.1103/PhysRevD.110.024042}{Phys. Rev. D {\bf 110}, 024042 (2024)}
[\href{https://arxiv.org/abs/2404.11110}{arXiv:2404.11110}]
\end{bibenum}
\blankline
\section{Review Papers}
\begin{bibenum}
\item E. Berti, [{\it 47 authors}], H. O. Silva, [{\it 5 authors}],
\emph{Testing general relativity with present and future astrophysical observations},
\href{http://iopscience.iop.org/article/10.1088/0264-9381/32/24/243001}{Class. Quantum Grav. {\bf32} 243001 (2015)}
[\href{http://arxiv.org/abs/1501.07274}{arXiv:1501.07274}].
\item D. D. Doneva, F. M. Ramazano\u{g}lu, H. O. Silva, T. P. Sotiriou, and S. S. Yazadjiev,
\emph{Spontaneous scalarization},
\href{https://journals.aps.org/rmp/abstract/10.1103/RevModPhys.96.015004}{Rev. Mod. Phys. {\bf 96}, 015004 (2024)}
[\href{https://arxiv.org/abs/2211.01766}{arXiv:2211.01766}]
\end{bibenum}
\blankline
\section{Publications Accepted or in Review}
\begin{bibenum}
\item A. Eichhorn, Pedro G. S. Fernandes, A. Held, and H. O. Silva,
\emph{Breaking black-hole uniqueness at supermassive scales}
[\href{https://arxiv.org/abs/2312.11430}{arXiv:2312.11430}]
\item J. Streibert, H. O. Silva, and M. Zumalac\'arregui,
\emph{Gravitational-wave lensing in Einstein-aether theory }
[\href{https://arxiv.org/abs/2404.07782}{arXiv:2404.07782}]
\end{bibenum}
\blankline
\section{Publications in Conference Proceedings}
\begin{bibenum}
\item D. T. Alves, E. R. Granhen, M. G. Lima, H. O. Silva and A. R. L. Rego,
\emph{Time evolution of the energy density inside a one-dimensional non-static cavity with a vacuum, thermal and a coherent state},
\href{http://iopscience.iop.org/article/10.1088/1742-6596/161/1/012032/meta}{J. Phys.: Conf. Ser. {\bf161} 012032 (2009)}
[\href{http://arxiv.org/abs/0903.1305}{arXiv:0903.1305}]
(Contribution to the proceedings of the
\emph{60 years of the Casimir effect}
conference).
\item C. Farina, H. O. Silva, A. L. C. Rego and D. T. Alves,
\emph{Time-dependent Robin boundary conditions in the dynamical Casimir effect},
\href{http://www.worldscientific.com/doi/abs/10.1142/S2010194512007428}{Int. J. Mod. Phys. Conf. Ser. {\bf14} 306 (2012)}
[\href{http://arxiv.org/abs/1201.3846}{arXiv:1201.3846}]
(Contribution to the proceedings of the
\emph{10th Quantum Field Theory Under the Influence of External Conditions}
conference).
\item H. O. Silva, A. Maselli, M. Minamitsuji and E. Berti,
\emph{Compact objects in Horndeski gravity},
\href{http://www.worldscientific.com/doi/abs/10.1142/S0218271816410066}{Int. J. Mod. Phys. D {\bf25} 1641006 (2016)}
[\href{http://arxiv.org/abs/1602.05997}{arXiv:1602.05997}]
(Contribution to the proceedings of the
\emph{3rd Amazonian Symposium on Physics and 5th NRHEP Network Meeting}).
\end{bibenum}
\blankline
\section{Book Chapters}
\restartlist{bibenum}
\begin{bibenum}
\item A. L. C. Rego, D. T. Alves, E. R. Granhen, H. O. Silva, M. G. Lima and W. P. Pires,
\emph{The Dynamical Casimir Effect}, in
\emph{Trends in Physics - Festschrift in homage to Prof. Jos\'e
Maria Filardo Bassalo}. Eds. M. S. D. Cattani, L. C. B. Crispino, M. O. C. Gomes and A. F. S. Santoro, (Editora Livraria da F\'isica, S\~ao Paulo, 2009).
\item H. O. Silva,
\emph{Neutron stars as extreme gravity probes}, in
\emph{Recent Progress on Gravity Tests}. Eds. C. Bambi and A. C\'ardenas-Avenda\~{n}o, (Springer, Singapore, 2024).
[\href{http://arxiv.org/abs/2407.17578}{arXiv:2407.17578}]
\end{bibenum}
\blankline
\section{Code contributions}
\restartlist{bibenum}
\begin{bibenum}
\item H.~Witek et al.,
\emph{Canuda: a public numerical relativity library to probe fundamental physics},
\href{https://zenodo.org/record/5520862}{10.5281/zenodo.5520862}
\halfblankline
I have contributed to the canuda\_edgb\_dec thorn used for numerical
relativity simulations beyond-general relativity with the Einstein Toolkit.
\end{bibenum}
\blankline
\section{Media \& Press}
\restartlist{bibenum}
Some of my work has been featured in media and press:
\\
\begin{bibenum}
\item Elke M\"uller, \href{https://www.aei.mpg.de/1038075/workshop-connecting-the-dots}{``'Exploring gravitational waveforms beyond general relativity'} \\
Story on the ``Connecting the dots'' workshop,
June 8, 2023.
\item Keith Cooper, \href{https://physicsworld.com/a/general-relativity-passes-crucial-neutron-star-test/}{``General relativity passes crucial neutron-star test''} \\
Story on the paper~\ref{pub:SilvaPRL2021Nicer},
May 12, 2021.
\item Monisha Ravisetti, \href{https://academictimes.com/general-relativity-passes-yet-another-test-this-time-facing-off-with-neutron-stars/}{``General relativity passes yet another test, this time facing off with neutron stars''} \\
Story in The Academic Times on the paper~\ref{pub:SilvaPRL2021Nicer},
May 6, 2021.
\item Eric Simon, episode 1173 of the podcast \href{https://www.ca-se-passe-la-haut.fr}{``\c{C}a Se Passe L\`a-Haut''}, \href{https://www.ca-se-passe-la-haut.fr/2021/05/la-relativite-generale-testee-en-champ.html}{``La Relativit\'e G\'en\'erale test\'ee en champ fort gr\^{a}ce \`a la relation I-Love-Q des \'etoiles \`a neutrons''} \\
Story on the paper~\ref{pub:SilvaPRL2021Nicer},
May 4, 2021.
\item Jessica Raley, \href{https://icasu.illinois.edu/news/new_test_of_GR}{``ICASU researchers test general relativity using NICER and LIGO/Virgo data''} \\
Story on the paper~\ref{pub:SilvaPRL2021Nicer},
May 3, 2021.
\item Daniela Doneva, \href{https://physics.aps.org/articles/v14/66}{``Compiling Messages from Neutron Stars''} \\
Story on American Physical Society's \href{https://physics.aps.org}{Physics} magazine on the paper~\ref{pub:SilvaPRL2021Nicer},
May 3, 2021.
\item Remya Nair, \href{https://physics.illinois.edu/research-highlights/article/36886}{``Testing Einstein when gravity waves''} \\
Story on the paper~\ref{pub:nairPRL2020},
July 2, 2020.
\item Edwin B. Smith, \href{https://news.olemiss.edu/physics-alumnus-wins-international-award-gravitational-wave-thesis/}{``Physics Alumnus Wins International Award for Gravitational Wave Thesis''} \\
Story on the 2017 GWIC-Braccini Thesis Award,
June 25, 2019.