-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2111 lines (2036 loc) · 305 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'')})(document.documentElement)</script>
<title>Publications – UW-CTRI – UW–Madison</title>
<meta name="robots" content="max-image-preview:large">
<link rel="dns-prefetch" href="https://code.jquery.com/">
<link rel="dns-prefetch" href="https://cdn.wisc.cloud/">
<link rel="dns-prefetch" href="https://s.w.org/">
<link rel="alternate" type="application/rss+xml" title="UW-CTRI » Feed" href="https://ctri.wisc.edu/feed/">
<link rel="alternate" type="application/rss+xml" title="UW-CTRI » Comments Feed" href="https://ctri.wisc.edu/comments/feed/">
<link rel="alternate" type="text/calendar" title="UW-CTRI » iCal Feed" href="https://ctri.wisc.edu/events/?ical=1">
<link rel="stylesheet" id="wp-block-library-css" href="style.css" media="all">
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<link rel="https://api.w.org/" href="https://ctri.wisc.edu/wp-json/">
<link rel="alternate" type="application/json" href="https://ctri.wisc.edu/wp-json/wp/v2/pages/2032">
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://ctri.wisc.edu/xmlrpc.php?rsd">
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://d3futrf33lk36a.cloudfront.net/wp-includes/wlwmanifest.xml">
<link rel="canonical" href="https://ctri.wisc.edu/researchers/publications/">
<link rel="shortlink" href="https://ctri.wisc.edu/?p=2032">
<link rel="alternate" type="application/json+oembed" href="https://ctri.wisc.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fctri.wisc.edu%2Fresearchers%2Fpublications%2F">
<link rel="alternate" type="text/xml+oembed" href="https://ctri.wisc.edu/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fctri.wisc.edu%2Fresearchers%2Fpublications%2F&format=xml">
<meta name="tec-api-version" content="v1">
<meta name="tec-api-origin" content="https://ctri.wisc.edu">
<link rel="https://theeventscalendar.com/" href="https://ctri.wisc.edu/wp-json/tribe/events/v1/">
<link rel="icon" href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/08/cropped-uw-crest-web-32x32.png" sizes="32x32">
<link rel="icon" href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/08/cropped-uw-crest-web-192x192.png" sizes="192x192">
<link rel="apple-touch-icon" href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/08/cropped-uw-crest-web-180x180.png">
<!-- New CDNs -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/browser/browser.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://cdn.datatables.net/1.11.3/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.11.3/js/dataTables.bootstrap5.min.js"></script>
<script src="site.js"></script>
<script src="pubList.js"></script>
<link rel="stylesheet" href="site.css" media="all">
<!-- End of New CDNs-->
<meta name="msapplication-TileImage" content="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/08/cropped-uw-crest-web-270x270.png">
<meta class="foundation-mq">
</head>
<body class="page-template-default page page-id-2032 page-parent page-child parent-pageid-5867 uw-body-font-serif tribe-js uw-white-bg singular" data-whatinput="mouse">
<a class="show-on-focus" href="#main" id="skip-link">Skip to main content</a>
<div class="uw-global-bar uw-global-bar-inverse" role="navigation">
<a class="uw-global-name-link" href="https://www.wisc.edu/" aria-label="University of Wisconsin Madison home page">U<span>niversity <span class="uw-of">of</span> </span>W<span>isconsin</span>–Madison</a>
</div>
<header class="uw-header uw-has-search">
<div class="uw-header-container">
<div class="uw-header-crest-title">
<div class="uw-header-crest">
<a href="https://ctri.wisc.edu/" aria-hidden="true" tabindex="-1">
<svg viewBox="0 0 55.5 87.28" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cbf3728.45931598">
<title id="dynid61ba400cbf3728.45931598">UW Crest</title>
<style>
.cls-1{fill:url(#Web_Shield_blend);}
.cls-2{fill:#282728;}
.cls-3{fill:#c5050c;}
.cls-4{fill:#fff;}
</style>
<g>
<radialGradient id="Web_Shield_blend" cx="46.25" cy="16.57" r="33.44" gradientTransform="translate(-22.22 26.01) scale(1.09 1.09)" gradientUnits="userSpaceOnUse">
<stop offset="0.17" stop-color="#fff"></stop>
<stop offset="0.3" stop-color="#f6ede4"></stop>
<stop offset="0.69" stop-color="#debe9b"></stop>
<stop offset="0.87" stop-color="#d4ac7f"></stop>
</radialGradient>
</g>
<path id="Gold_gradient" data-name="Gold gradient" class="cls-1" d="M28,87.36a3.78,3.78,0,0,1-1.05-1.16l-0.06-.09-0.11,0C8.65,81.86-1.45,54,.83,31.71a47.71,47.71,0,0,1,1.29-7.25,35.39,35.39,0,0,1,2.33-6.39,23.55,23.55,0,0,1,3.75-5.65A14.7,14.7,0,0,1,19,7.28,0.33,0.33,0,0,0,19.33,7,5.49,5.49,0,0,1,23.21,4.4l0.19,0,0-.19A4.69,4.69,0,0,1,28,.64a4.76,4.76,0,0,1,4.56,3.54l0,0.19,0.19,0A5.51,5.51,0,0,1,36.67,7a0.32,0.32,0,0,0,.37.26,14.7,14.7,0,0,1,10.77,5.13,24,24,0,0,1,4.24,6.71l0.23,0.55a42.56,42.56,0,0,1,2.89,12C57.45,54,47.35,81.86,29.23,86.08l-0.11,0-0.06.09A3.78,3.78,0,0,1,28,87.36Z" transform="translate(-0.25 -0.36)"></path>
<path id="Black" class="cls-2" d="M55.43,31.68a49.49,49.49,0,0,0-.86-5.5,39.81,39.81,0,0,0-1.39-4.93,31.29,31.29,0,0,0-2.23-4.93,22.63,22.63,0,0,0-3-4.1A14.94,14.94,0,0,0,37,7H36.94a5.77,5.77,0,0,0-4.16-2.91,4.93,4.93,0,0,0-9.56,0A5.77,5.77,0,0,0,19.06,7H19A14.94,14.94,0,0,0,8,12.23a22.63,22.63,0,0,0-3,4.1,31.29,31.29,0,0,0-2.23,4.93,39.81,39.81,0,0,0-1.39,4.93,49.49,49.49,0,0,0-.86,5.5C-1.73,54.3,8.44,82.1,26.73,86.36A3.17,3.17,0,0,0,28,87.64a3.17,3.17,0,0,0,1.27-1.28C47.56,82.1,57.73,54.3,55.43,31.68ZM28,1.23A3.9,3.9,0,0,1,31.93,4a4.86,4.86,0,0,0-3.86,2.47,0.17,0.17,0,0,1-.07.09,0.15,0.15,0,0,1-.07-0.09A4.86,4.86,0,0,0,24.07,4,3.9,3.9,0,0,1,28,1.23ZM26.14,5.52a3.51,3.51,0,0,1,1.59,2.11A0.46,0.46,0,0,0,28,8a0.46,0.46,0,0,0,.27-0.42,3.51,3.51,0,0,1,1.59-2.11,4.19,4.19,0,0,1,6,1.58,13.38,13.38,0,0,0-1.67.42,6.6,6.6,0,0,0-2.38,1.32,9.4,9.4,0,0,0-3,6.1c-0.67,7.31,7.72,6.16,8.14,6.13,1.08,0,1.9-1.71,1.9-4s-0.84-4-1.9-4c-0.65,0-1.77.52-1.88,2.55C35,17.1,35.7,19,36.6,19.11c0.47,0.06.89-.76,1-1.6s0.06-1.87-.59-2a0.38,0.38,0,0,0-.46.28A3.83,3.83,0,0,1,37,17.1c0,1.25-1.28.63-1.12-1.36C36,14,36.89,14.09,36.93,14.09c0.5,0,1.26,1,1.26,3,0,1.75-.84,3.63-2.46,2.65-1.36-1-1.89-3.28-1.52-5,0.17-.81.87-3,3.13-3,3.26,0,6.3,1.71,8.72,4.9-0.27.85-1.95,4.1-7.28,7.21l-0.29.15a11,11,0,0,0-4.93-1,27.07,27.07,0,0,0-4.64.74,4.09,4.09,0,0,1-.92.15h0a4.09,4.09,0,0,1-.92-0.15A27.07,27.07,0,0,0,22.44,23a11,11,0,0,0-4.93,1l-0.29-.15c-5.34-3.11-7-6.36-7.28-7.21,2.42-3.19,5.46-4.9,8.72-4.9,2.26,0,3,2.21,3.13,3,0.38,1.77-.16,4.05-1.52,5-1.61,1-2.46-.9-2.46-2.65,0-2,.76-3,1.26-3,0,0,.94-0.11,1.09,1.65,0.17,2-1.09,2.61-1.12,1.36a3.83,3.83,0,0,1,.39-1.34A0.38,0.38,0,0,0,19,15.48c-0.65.16-.71,1.3-0.59,2s0.56,1.66,1,1.6c0.9-.12,1.6-2,1.52-3.44-0.1-2-1.23-2.55-1.88-2.55-1.06,0-1.9,1.71-1.9,4s0.82,4,1.9,4c0.42,0,8.81,1.18,8.14-6.13a9.4,9.4,0,0,0-3-6.1,6.6,6.6,0,0,0-2.38-1.32A13.38,13.38,0,0,0,20.1,7.1,4.19,4.19,0,0,1,26.14,5.52ZM10.28,36.18A32.49,32.49,0,0,0,10,39.49a44.42,44.42,0,0,0,2,15.25,49.48,49.48,0,0,0,4.13,9.32A11.48,11.48,0,0,1,11,66.39,66.66,66.66,0,0,1,4.53,34.57,16.13,16.13,0,0,0,10.28,36.18ZM4.56,34c0.44-7.31,2.29-13.05,5-16.87,0.48,1.24,2.57,4.35,7.39,7.18-4.1,2.47-6,7.56-6.58,11.36A15.81,15.81,0,0,1,4.56,34ZM16.41,64.53c3.08,5.3,6.12,8.46,8.45,10.13A11.54,11.54,0,0,1,21.32,79c-4-2.7-7.4-7-10.07-12.13A11.81,11.81,0,0,0,16.41,64.53ZM25.33,75A12.2,12.2,0,0,0,28,76.46,12.2,12.2,0,0,0,30.67,75a12,12,0,0,0,3.53,4.34,18.69,18.69,0,0,1-3.58,1.78s0-.09,0-0.13c-0.26-1.32-2-1.59-2.61-1.59s-2.35.27-2.61,1.59c0,0,0,.09,0,0.13a18.69,18.69,0,0,1-3.58-1.78A12,12,0,0,0,25.33,75Zm5.81-.32c2.33-1.67,5.37-4.83,8.45-10.13a11.81,11.81,0,0,0,5.16,2.36C42.08,72,38.69,76.32,34.68,79A11.54,11.54,0,0,1,31.14,74.66Zm8.72-10.61A49.48,49.48,0,0,0,44,54.73a44.1,44.1,0,0,0,1.66-7.32A44.34,44.34,0,0,0,46,39.49a32.49,32.49,0,0,0-.32-3.31,16.13,16.13,0,0,0,5.75-1.61A66.66,66.66,0,0,1,45,66.39,11.48,11.48,0,0,1,39.86,64.05Zm5.78-28.4c-0.62-3.8-2.5-8.8-6.58-11.36,4.82-2.83,6.92-5.94,7.39-7.18,2.69,3.82,4.55,9.56,5,16.87A15.81,15.81,0,0,1,45.64,35.65ZM25,84.76a23.29,23.29,0,0,1-5.87-2.93,27.5,27.5,0,0,1-3.25-2.62,31.1,31.1,0,0,1-2.35-2.47q-0.76-.88-1.46-1.81a47.49,47.49,0,0,1-5.58-9.69A63.9,63.9,0,0,1,3.09,55,70.46,70.46,0,0,1,1.3,44.19a64.57,64.57,0,0,1-.07-10.84C1.4,31.43,1.63,29.5,2,27.59A39.32,39.32,0,0,1,3.4,22a31,31,0,0,1,2.1-4.86,20.93,20.93,0,0,1,3.15-4.44,16.19,16.19,0,0,1,4-3.1,13.93,13.93,0,0,1,1.93-.87q0.51-.18,1-0.32a8.82,8.82,0,0,1,1-.26,14,14,0,0,1,2.56-.21,7.58,7.58,0,0,1,3.88,1,8,8,0,0,1,3.34,6c0.39,4.52-4.21,5.23-5.11,5.22-0.14,0-.21-0.13.24-0.59a6.53,6.53,0,0,0,1-5.1c-0.44-2.07-1.9-3.69-4-3.69a11.16,11.16,0,0,0-8.12,3.89A22.78,22.78,0,0,0,6,22.61,42.69,42.69,0,0,0,3.76,34,62.43,62.43,0,0,0,4,44.63,68.71,68.71,0,0,0,5.94,55.22a60.82,60.82,0,0,0,3.53,9.85,43.36,43.36,0,0,0,5.48,9A25.89,25.89,0,0,0,23.08,81a18.15,18.15,0,0,0,2.21,1A6.71,6.71,0,0,0,26,85,6.63,6.63,0,0,1,25,84.76Zm3.29,1.55a0.6,0.6,0,0,1-.31.21,0.6,0.6,0,0,1-.31-0.21,6.49,6.49,0,0,1-1.51-5.17c0.12-.64,1.2-0.93,1.82-0.94s1.7,0.3,1.82.94A6.49,6.49,0,0,1,28.31,86.3ZM54.7,44.19A70.46,70.46,0,0,1,52.91,55a63.9,63.9,0,0,1-3.42,10.2,47.49,47.49,0,0,1-5.58,9.69q-0.7.93-1.46,1.81a31.1,31.1,0,0,1-2.35,2.47,27.5,27.5,0,0,1-3.25,2.62A23.29,23.29,0,0,1,31,84.76,6.63,6.63,0,0,1,30,85a6.71,6.71,0,0,0,.67-3.1,18.15,18.15,0,0,0,2.21-1,25.89,25.89,0,0,0,8.13-6.87,43.36,43.36,0,0,0,5.48-9,60.82,60.82,0,0,0,3.53-9.85A68.71,68.71,0,0,0,52,44.63,62.43,62.43,0,0,0,52.24,34,42.69,42.69,0,0,0,50,22.61a22.78,22.78,0,0,0-4.47-7.87,11.16,11.16,0,0,0-8.12-3.89c-2.12,0-3.58,1.62-4,3.69a6.53,6.53,0,0,0,1,5.1c0.45,0.46.38,0.59,0.24,0.59-0.9,0-5.51-.71-5.11-5.22a8,8,0,0,1,3.34-6,7.58,7.58,0,0,1,3.88-1,14,14,0,0,1,2.56.21,8.77,8.77,0,0,1,1,.26q0.52,0.14,1,.32a13.93,13.93,0,0,1,1.93.87,16.19,16.19,0,0,1,4,3.1,20.93,20.93,0,0,1,3.15,4.44A31,31,0,0,1,52.6,22,39.32,39.32,0,0,1,54,27.59c0.35,1.91.58,3.84,0.74,5.77A64.57,64.57,0,0,1,54.7,44.19Z" transform="translate(-0.25 -0.36)"></path>
<path id="Red" class="cls-3" d="M45,39.63c-0.11-2.69-.9-10.9-6.48-14.46A9.41,9.41,0,0,0,34.18,24c-2.74-.18-4.77.87-6.14,0.91H28c-1.37,0-3.42-1.09-6.16-.91a9.35,9.35,0,0,0-4.37,1.21C11.85,28.73,11.07,36.94,11,39.63a43.52,43.52,0,0,0,3.54,19C18.36,67.12,23,73.14,27.63,75.19L28,75.35l0.37-.16c4.61-2,9.27-8.06,13.14-16.57A43.53,43.53,0,0,0,45,39.63Z" transform="translate(-0.25 -0.36)"></path>
<path id="W" class="cls-4" d="M36.3,33.18V35L36.67,35h0.18a1.17,1.17,0,0,1,.82.28,1.27,1.27,0,0,1,.21,1.11s-3.74,16.19-4.45,19.27c-0.82-3.9-5.26-25.18-5.26-25.18l0-.09H27.27v0.1L23.4,55.32,19,36.37a2.7,2.7,0,0,1,0-.28,1.27,1.27,0,0,1,.31-1A1,1,0,0,1,20,34.92l0.37,0v-1.8H14.13v1.76l0.28,0a1.16,1.16,0,0,1,.95.83L23,68.48l0,0.09h1.1v-0.1l3.56-23.3,4.53,23.31,0,0.09h1l7.25-32.78a1,1,0,0,1,1-.75h0.07l0.36,0V33.18H36.3Z" transform="translate(-0.25 -0.36)"></path>
</svg>
</a>
</div>
<div class="uw-title-tagline">
<div id="site-title" class="uw-site-title uw-red-title ">
<a href="https://ctri.wisc.edu/" rel="home">UW-CTRI</a>
</div>
<div id="site-description" class="uw-site-tagline">UW Center for Tobacco Research and Intervention</div>
</div>
</div>
<div class="uw-header-search">
<form role="search" class="uw-search-form" method="get" id="searchform" action="https://ctri.wisc.edu/">
<label for="s" class="show-for-sr">Search</label>
<input type="text" class="field uw-search-input" name="s" id="s" placeholder="Search">
<input type="submit" class="submit uw-search-submit uw-button" name="submit" id="searchsubmit" value="Search">
</form>
</div>
</div>
</header>
<!-- #branding -->
<button class="uw-mobile-menu-button-bar " aria-label="Open menu" aria-expanded="false" aria-controls="uw-top-menus">
<span>Menu</span>
<svg viewBox="0 0 1024 1024" version="1.1" role="img" focusable="false" aria-labelledby="dynid61ba400cbf49f0.27530522">
<title id="dynid61ba400cbf49f0.27530522">open menu</title>
<path class="path1" d="M128 256h768v86h-768v-86zM128 554v-84h768v84h-768zM128 768v-86h768v86h-768z"></path>
</svg>
<svg viewBox="0 0 805 1024" version="1.1" role="img" focusable="false" aria-labelledby="dynid61ba400cbf4d50.77290496">
<title id="dynid61ba400cbf4d50.77290496">close</title>
<path class="path1" d="M741.714 755.429q0 22.857-16 38.857l-77.714 77.714q-16 16-38.857 16t-38.857-16l-168-168-168 168q-16 16-38.857 16t-38.857-16l-77.714-77.714q-16-16-16-38.857t16-38.857l168-168-168-168q-16-16-16-38.857t16-38.857l77.714-77.714q16-16 38.857-16t38.857 16l168 168 168-168q16-16 38.857-16t38.857 16l77.714 77.714q16 16 16 38.857t-16 38.857l-168 168 168 168q16 16 16 38.857z"></path>
</svg>
</button>
<div id="uw-top-menus" class="uw-is-visible uw-horizontal" aria-hidden="false">
<div class="uw-main-nav">
<nav class="uw-nav-menu" aria-label="Main Menu">
<ul id="uw-main-nav" class="">
<li id="menu-item-111" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-111"><a href="https://ctri.wisc.edu/">Home</a></li>
<li id="menu-item-164" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children uw-dropdown menu-item-164">
<a href="https://ctri.wisc.edu/about/" aria-haspopup="true" aria-expanded="false">
About
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc8d6c8.81834146">
<title id="dynid61ba400cc8d6c8.81834146">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc8da93.06916650">
<title id="dynid61ba400cc8da93.06916650">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="About submenu" class="sub-menu uw-child-menu">
<li id="menu-item-5100" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5100"><a href="https://ctri.wisc.edu/about/uw-ctri-overview/">UW-CTRI Overview</a></li>
<li id="menu-item-8938" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8938"><a href="https://ctri.wisc.edu/about/careers/">Careers</a></li>
<li id="menu-item-4950" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4950"><a href="https://ctri.wisc.edu/researchers-research-staff-uw-ctri-staff/">Staff</a></li>
<li id="menu-item-12729" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12729"><a href="https://ctri.wisc.edu/about/tobacco-disparities/">Tobacco Disparities</a></li>
<li id="menu-item-165" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-165"><a href="https://ctri.wisc.edu/about/news-articles/">News Articles</a></li>
<li id="menu-item-9008" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9008"><a href="https://ctri.wisc.edu/locations-2/">Hours</a></li>
<li id="menu-item-4945" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4945"><a href="https://ctri.wisc.edu/contact/">Contact</a></li>
<li id="menu-item-4951" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4951"><a href="https://ctri.wisc.edu/locations/">Locations</a></li>
<li id="menu-item-4941" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4941"><a href="https://ctri.wisc.edu/news-releases/">News Releases</a></li>
<li id="menu-item-7263" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7263"><a href="https://ctri.wisc.edu/policy/stats-on-smoking/">Stats on Smoking</a></li>
<li id="menu-item-4953" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4953"><a href="https://ctri.wisc.edu/uw-ctri-mission/">Mission</a></li>
<li id="menu-item-166" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-166"><a href="https://ctri.wisc.edu/about/donate/">Donate</a></li>
<li id="menu-item-4949" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4949"><a href="https://ctri.wisc.edu/uw-ctri-funding/">UW-CTRI Funding</a></li>
<li id="menu-item-4947" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4947"><a href="https://ctri.wisc.edu/sponsors/">Funders</a></li>
<li id="menu-item-4946" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4946"><a href="https://ctri.wisc.edu/researchers/research-staff/dr-michael-fiore/dr-michael-fiore-uw-ctri-director-personal-statement-regarding-potential-conflicts-of-interest/uw-ctri-public-disclosure-regarding-conflict-of-interest/">Conflict Statement</a></li>
<li id="menu-item-4952" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4952"><a href="https://ctri.wisc.edu/wisconsin-programs/">Wisconsin Programs</a></li>
<li id="menu-item-7731" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7731"><a href="https://ctri.wisc.edu/uw-ctri-webinars/">Webinars</a></li>
<li id="menu-item-4942" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4942"><a href="https://ctri.wisc.edu/fact-sheets/">Tobacco Fact Sheets</a></li>
</ul>
</li>
<li id="menu-item-11620" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11620"><a href="http://wiquitline.org/">Quit Line</a></li>
<li id="menu-item-113" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children uw-dropdown menu-item-113">
<a href="https://ctri.wisc.edu/smokers/" aria-haspopup="true" aria-expanded="false">
Smokers
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc8f654.78213931">
<title id="dynid61ba400cc8f654.78213931">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc8f9a0.03262397">
<title id="dynid61ba400cc8f9a0.03262397">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="Smokers submenu" class="sub-menu uw-child-menu">
<li id="menu-item-4765" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4765"><a href="https://ctri.wisc.edu/smokers/smokers-2/">Smokers Overview</a></li>
<li id="menu-item-11661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11661"><a href="http://wiquitline.org/">Quit Line</a></li>
<li id="menu-item-130" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-130"><a href="https://ctri.wisc.edu/smokers/medications/">Medications</a></li>
<li id="menu-item-8362" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8362"><a href="https://ctri.wisc.edu/providers/e-cigs-and-vaping/">E-cigs, JUUL, Vaping</a></li>
<li id="menu-item-11863" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11863"><a href="https://ctri.wisc.edu/youth/">for Teens</a></li>
<li id="menu-item-129" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-129"><a href="https://ctri.wisc.edu/smokers/video-tips/">Video Tips</a></li>
<li id="menu-item-5504" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5504"><a href="https://ctri.wisc.edu/providers/apps/">Quit Smoking Apps</a></li>
<li id="menu-item-6971" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6971"><a href="https://ctri.wisc.edu/smokers/clinic/">Clinic</a></li>
<li id="menu-item-9771" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9771"><a href="https://ctri.wisc.edu/researchers/studies/">Studies</a></li>
<li id="menu-item-131" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-131"><a href="https://ctri.wisc.edu/smokers/afford-to-quit/">Afford to Quit</a></li>
<li id="menu-item-8919" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8919"><a href="https://ctri.wisc.edu/fact-sheets/quit-tobacco-series-fact-sheet-3-medicaid-badgercare/">Medicaid / BadgerCare and Quitting Tobacco</a></li>
<li id="menu-item-132" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-132"><a href="https://ctri.wisc.edu/smokers/links/">Self-help Sites</a></li>
<li id="menu-item-133" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://ctri.wisc.edu/smokers/pregnancy/">Pregnancy</a></li>
<li id="menu-item-134" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://ctri.wisc.edu/smokers/smokeless/">Chew Tobacco</a></li>
<li id="menu-item-8923" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8923"><a href="https://ctri.wisc.edu/providers/treatment-by-specialty/military/">Military & Vets</a></li>
<li id="menu-item-136" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-136"><a href="https://ctri.wisc.edu/smokers/help-someone/">Help Someone</a></li>
<li id="menu-item-137" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-137"><a href="https://ctri.wisc.edu/smokers/success-stories/">Success Stories</a></li>
<li id="menu-item-4988" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4988"><a href="https://ctri.wisc.edu/fact-sheets/">Tobacco Fact Sheets</a></li>
</ul>
</li>
<li id="menu-item-12820" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-12820"><a href="https://ctri.wisc.edu/providers/e-cigs-and-vaping/">Vaping</a></li>
<li id="menu-item-5873" class="menu-item menu-item-type-post_type menu-item-object-page current-page-ancestor current-menu-ancestor current-menu-parent current-page-parent current_page_parent current_page_ancestor menu-item-has-children uw-dropdown menu-item-5873">
<a href="https://ctri.wisc.edu/researchers/" aria-haspopup="true" aria-expanded="false">
Researchers
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc91483.02526713">
<title id="dynid61ba400cc91483.02526713">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc91809.24418666">
<title id="dynid61ba400cc91809.24418666">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="Researchers submenu" class="sub-menu uw-child-menu">
<li id="menu-item-4752" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4752"><a href="https://ctri.wisc.edu/researchers/researchers-2/">Research Overview</a></li>
<li id="menu-item-124" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-124"><a href="https://ctri.wisc.edu/researchers/studies/">Studies</a></li>
<li id="menu-item-2035" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-2032 current_page_item menu-item-2035"><a href="https://ctri.wisc.edu/researchers/publications/" aria-current="page">Research Papers</a></li>
<li id="menu-item-6793" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6793"><a href="https://ctri.wisc.edu/researchers/publications/publications-by-author/">Papers by Author</a></li>
<li id="menu-item-2031" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2031"><a href="https://ctri.wisc.edu/researchers/published-research/">Research Reports</a></li>
<li id="menu-item-2083" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2083"><a href="https://ctri.wisc.edu/researchers/research-staff/">Research Staff</a></li>
<li id="menu-item-123" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-123"><a href="https://ctri.wisc.edu/researchers/measures-methods/">Measures & Methods</a></li>
<li id="menu-item-6769" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6769"><a href="https://ctri.wisc.edu/providers/guideline/">Guideline</a></li>
<li id="menu-item-12730" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12730"><a href="https://ctri.wisc.edu/about/tobacco-disparities/">Tobacco Disparities</a></li>
<li id="menu-item-6970" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-6970"><a href="https://ctri.wisc.edu/providers/behavioral-health/">Behavioral Health</a></li>
<li id="menu-item-8363" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8363"><a href="https://ctri.wisc.edu/providers/e-cigs-and-vaping/">E-cigs, JUUL, Vaping</a></li>
<li id="menu-item-8917" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8917"><a href="https://ctri.wisc.edu/marijuana/">Marijuana</a></li>
<li id="menu-item-7266" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7266"><a href="https://ctri.wisc.edu/policy/stats-on-smoking/">Stats on Smoking</a></li>
<li id="menu-item-12859" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12859"><a href="https://ctri.wisc.edu/youth/">Youth</a></li>
<li id="menu-item-4989" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4989"><a href="https://ctri.wisc.edu/fact-sheets/">Tobacco Fact Sheets</a></li>
</ul>
</li>
<li id="menu-item-138" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children uw-dropdown menu-item-138">
<a href="https://ctri.wisc.edu/providers/" aria-haspopup="true" aria-expanded="false">
Clinicians
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc931c5.21847707">
<title id="dynid61ba400cc931c5.21847707">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc93531.31429273">
<title id="dynid61ba400cc93531.31429273">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="Clinicians submenu" class="sub-menu uw-child-menu">
<li id="menu-item-5633" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-5633"><a href="https://ctri.wisc.edu/providers/providers-overview/">Clinicians Overview</a></li>
<li id="menu-item-11325" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11325"><a href="https://ctri.wisc.edu/smokers/medications-to-help-your-patients-smoking/">Medications</a></li>
<li id="menu-item-141" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-141"><a href="https://ctri.wisc.edu/providers/guideline/">Guideline</a></li>
<li id="menu-item-142" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-142"><a href="https://ctri.wisc.edu/providers/contact-specialist/">Clinician Training</a></li>
<li id="menu-item-143" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-143"><a href="https://ctri.wisc.edu/providers/education/">Education</a></li>
<li id="menu-item-4943" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4943"><a href="https://ctri.wisc.edu/uw-ctri-webinars/">Webinars</a></li>
<li id="menu-item-149" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-149"><a href="https://ctri.wisc.edu/providers/videos/">Videos for Clinicians</a></li>
<li id="menu-item-148" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-148"><a href="https://ctri.wisc.edu/providers/treatment-by-specialty/">Info by Specialty</a></li>
<li id="menu-item-12732" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12732"><a href="https://ctri.wisc.edu/about/tobacco-disparities/">Tobacco Disparities</a></li>
<li id="menu-item-139" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-139"><a href="https://ctri.wisc.edu/providers/behavioral-health/">Behavioral Health</a></li>
<li id="menu-item-144" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-144"><a href="https://ctri.wisc.edu/providers/e-cigs-and-vaping/">E-cigs, JUUL, Vaping</a></li>
<li id="menu-item-11862" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11862"><a href="https://ctri.wisc.edu/youth/">Youth</a></li>
<li id="menu-item-8918" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8918"><a href="https://ctri.wisc.edu/fact-sheets/quit-tobacco-series-fact-sheet-3-medicaid-badgercare/">Medicaid / BadgerCare and Quitting Tobacco</a></li>
<li id="menu-item-145" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-145"><a href="https://ctri.wisc.edu/providers/materials/">Materials</a></li>
<li id="menu-item-7225" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7225"><a href="https://ctri.wisc.edu/wisconsin-programs/">Wisconsin Programs</a></li>
<li id="menu-item-7320" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7320"><a href="https://ctri.wisc.edu/providers/how-to-treat-smokeless-tobacco-use/">Treat Smokeless Use</a></li>
<li id="menu-item-140" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-140"><a href="https://ctri.wisc.edu/providers/billing-codes/">Billing Codes</a></li>
<li id="menu-item-147" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-147"><a href="https://ctri.wisc.edu/providers/healthcare-reform/">Health Reform & EHR</a></li>
<li id="menu-item-146" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-146"><a href="https://ctri.wisc.edu/providers/apps/">Apps</a></li>
<li id="menu-item-4986" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4986"><a href="https://ctri.wisc.edu/fact-sheets/">Tobacco Fact Sheets</a></li>
</ul>
</li>
<li id="menu-item-117" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children uw-dropdown menu-item-117">
<a href="https://ctri.wisc.edu/employers/" aria-haspopup="true" aria-expanded="false">
Employers
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc95455.11768579">
<title id="dynid61ba400cc95455.11768579">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc95791.13173988">
<title id="dynid61ba400cc95791.13173988">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="Employers submenu" class="sub-menu uw-child-menu">
<li id="menu-item-2256" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-2256"><a href="https://ctri.wisc.edu/employers/">Overview</a></li>
<li id="menu-item-118" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-118"><a href="https://ctri.wisc.edu/employers/actuarial-insight/">Actuarial Insight</a></li>
<li id="menu-item-122" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-122"><a href="https://ctri.wisc.edu/employers/toolkits/">Toolkits</a></li>
<li id="menu-item-120" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-120"><a href="https://ctri.wisc.edu/employers/business-case/">Business Case</a></li>
<li id="menu-item-121" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-121"><a href="https://ctri.wisc.edu/employers/roi/">ROI</a></li>
<li id="menu-item-119" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-119"><a href="https://ctri.wisc.edu/employers/aca/">ACA & Tobacco</a></li>
<li id="menu-item-7265" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7265"><a href="https://ctri.wisc.edu/policy/stats-on-smoking/">Stats on Smoking</a></li>
<li id="menu-item-8365" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8365"><a href="https://ctri.wisc.edu/providers/e-cigs-and-vaping/">E-cigs, JUUL, Vaping</a></li>
<li id="menu-item-8924" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8924"><a href="https://ctri.wisc.edu/providers/treatment-by-specialty/military/">Military & Vets</a></li>
<li id="menu-item-4987" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4987"><a href="https://ctri.wisc.edu/fact-sheets/">Tobacco Fact Sheets</a></li>
</ul>
</li>
<li id="menu-item-150" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children uw-dropdown menu-item-150">
<a href="https://ctri.wisc.edu/policy/" aria-haspopup="true" aria-expanded="false">
Policy
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc96b24.27763402">
<title id="dynid61ba400cc96b24.27763402">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc96e53.85088349">
<title id="dynid61ba400cc96e53.85088349">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="Policy submenu" class="sub-menu uw-child-menu">
<li id="menu-item-8916" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8916"><a href="https://ctri.wisc.edu/marijuana/">Marijuana</a></li>
<li id="menu-item-8364" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8364"><a href="https://ctri.wisc.edu/providers/e-cigs-and-vaping/">E-cigs, JUUL, Vaping</a></li>
<li id="menu-item-7264" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7264"><a href="https://ctri.wisc.edu/policy/stats-on-smoking/">Stats on Smoking</a></li>
<li id="menu-item-153" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-153"><a href="https://ctri.wisc.edu/policy/national-policy-initiatives/">National Programs</a></li>
<li id="menu-item-152" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-152"><a href="https://ctri.wisc.edu/wisconsin-programs/state-programs/">State Programs</a></li>
<li id="menu-item-8925" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-8925"><a href="https://ctri.wisc.edu/providers/treatment-by-specialty/military/">Military & Vets</a></li>
<li id="menu-item-151" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-151"><a href="https://ctri.wisc.edu/policy/advocacy-organizations/">Tobacco Advocacy Organizations</a></li>
<li id="menu-item-4990" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-4990"><a href="https://ctri.wisc.edu/fact-sheets/">Tobacco Fact Sheets</a></li>
</ul>
</li>
<li id="menu-item-6529" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children uw-dropdown menu-item-6529">
<a href="https://ctri.wisc.edu/fact-sheets/fact-sheets-in-spanish/" aria-haspopup="true" aria-expanded="false">
Español
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc97ec9.57524510">
<title id="dynid61ba400cc97ec9.57524510">Expand</title>
<path d="M1395 736q0 13-10 23l-466 466q-10 10-23 10t-23-10l-466-466q-10-10-10-23t10-23l50-50q10-10 23-10t23 10l393 393 393-393q10-10 23-10t23 10l50 50q10 10 10 23z"></path>
</svg>
<svg class="uw-caret" viewBox="0 0 1792 1792" version="1.1" role="img" focusable="false" aria-hidden="true" aria-labelledby="dynid61ba400cc98276.50128064">
<title id="dynid61ba400cc98276.50128064">Collapse</title>
<path d="M1395 1184q0 13-10 23l-50 50q-10 10-23 10t-23-10l-393-393-393 393q-10 10-23 10t-23-10l-50-50q-10-10-10-23t10-23l466-466q10-10 23-10t23 10l466 466q10 10 10 23z"></path>
</svg>
</a>
<ul aria-hidden="true" aria-label="Policy submenu" class="sub-menu uw-child-menu">
<li id="menu-item-7581" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7581"><a href="https://ctri.wisc.edu/fact-sheets/fact-sheets-in-spanish/">Dejar de Fumar</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<div class="uw-secondary-nav">
<nav class="uw-nav-menu uw-nav-menu-secondary uw-nav-menu-secondary-reverse" aria-label="Secondary Menu">
<ul id="uw-secondary-nav" class="utility-menu">
<li id="menu-item-13208" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13208"><a href="https://ctri.wisc.edu/locations/">Locations</a></li>
<li id="menu-item-210" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-210"><a href="tel:+18007848669">Quit Line: 800-784-8669</a></li>
<li id="menu-item-212" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-212"><a href="https://quitline.wisc.edu/">Quit Line: Register Online</a></li>
<li id="menu-item-12947" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12947"><a href="https://ctri.wisc.edu/researchers/studies/">UW-CTRI Research Studies</a></li>
<li id="menu-item-211" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-211"><a href="https://ctri.wisc.edu/smokers/medications/">Medications</a></li>
</ul>
</nav>
</div>
</div>
<nav class="breadcrumb-nav" aria-label="Breadcrumb">
<ol itemscope="" itemtype="http://schema.org/BreadcrumbList" id="breadcrumbs" class="breadcrumb-nav__list breadcrumbs">
<li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem" class="breadcrumb-nav__item item-home">
<a itemprop="item" href="https://ctri.wisc.edu/" class="breadcrumb-nav__link bread-link bread-home" title="Home">
<span itemprop="name">Home</span>
<meta itemprop="position" content="1">
</a>
</li>
<li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem" class="breadcrumb-nav__item item-parent item-parent-5867">
<a itemprop="item" href="https://ctri.wisc.edu/researchers/" class="breadcrumb-nav__link bread-parent bread-parent-5867" title="Researchers">
<span itemprop="name">Researchers</span>
<meta itemprop="position" content="2">
</a>
</li>
<li itemprop="itemListElement" itemscope="" itemtype="http://schema.org/ListItem" class="breadcrumb-nav__item item-current item-2032">
<a itemprop="item" href="https://ctri.wisc.edu/researchers/publications/" class="breadcrumb-nav__link bread-current bread-2032" title="Publications" aria-current="page">
<span itemprop="name">Publications</span>
<meta itemprop="position" content="3">
</a>
</li>
</ol>
</nav>
<div id="page" class="content page-builder">
<main id="main" class="site-main">
<article id="post-2032" class="post-2032 page type-page status-publish hentry">
<header class="entry-header">
<h1 class="page-title uw-mini-bar">Publications</h1>
</header>
<div class="entry-content">
<div class="uw-outer-row row-1 has_text_block has_accordion_panel default-background">
<div class="uw-inner-row">
<div class="uw-column">
<div class="uw-pe uw-pe-text_block">
<h3><strong>UW-CTRI Published Research (1992 to the present)</strong></h3>
<p>This list includes select preprints. Older publication reports can be found <a href="https://ctri.wisc.edu/researchers/publications/publications-by-author/">here</a> and <a href="https://ctri.wisc.edu/researchers/publications/">here</a>.</p>
</div>
<div class="uw-pe uw-pe-accordion_panel">
<!-- New Stuff -->
<table id="mainDataTable"></table>
<!-- End of New Stuff -->
<!-- Temp Table -->
<div class="uw-pe uw-pe-accordion_panel" style="display:none">
<div class="uw-accordion uw-accordion--initialized">
<p class="show-for-sr">This is an accordion element with a series of buttons that open and close related content panels.</p>
<div class="uw-accordion-controls">
<button class="uw-button-unstyle uw-accordion-expand-all" aria-label="Expand all panels" aria-pressed="false">Expand all</button><button class="uw-button-unstyle uw-accordion-collapse-all" aria-label="Collapse all panels" aria-pressed="true" disabled="">Collapse all</button>
</div>
<h2 class=""><button class="uw-accordion-header" type="button" aria-expanded="false" id="uw-accordion-header-218621" aria-controls="uw-accordion-panel-218621"><svg viewBox="0 0 10 10" focusable="false" aria-hidden="true"><rect class="vert" width="2" height="8" y="1" x="4"></rect><rect width="8" height="2" y="4" x="1"></rect></svg>
Behavioral Health & Community-Based Research </button></h2>
<div class="uw-accordion-panel -uw-accordion-is-hidden" role="region" aria-hidden="true" id="uw-accordion-panel-218621" aria-labelledby="uw-accordion-header-218621">
<div class="uw-accordion-panel-inner uw-clearfix">
<ul>
<li>Cofresí RU, Hajcak G, Piasecki TM, Bartholow BD. <a href="https://onlinelibrary.wiley.com/doi/10.1111/psyp.13967">Internal Consistency and Test-Retest Reliability of the P3 Event-Related Potential (ERP) Elicited by Alcoholic and Non-Alcoholic Beverage Pictures</a>. <em>Psychophysiology</em>. Online November 15, 2021.</li>
<li>Wycoff AM, Motschman CA, Griffin SA, Helle AC, Piasecki TM, Trull TJ. (2021) <a href="https://psycnet.apa.org/doiLanding?doi=10.1037%2Fadb0000790">Simultaneous Use of Alcohol and Cigarettes in a Mixed Psychiatric Sample: Daily-life Associations with Smoking Motives, Craving, Stimulation, Sedation, and Affect</a>. <em>Psychology of Addictive Behaviors.</em></li>
<li>Minami H, Nahvi S, Arnsten J, Brinkman HR, Rivera-Mindt M, Wetter DW, Bloom EL, Price LH, Richman EK, Betzler TF, Stockmal C, Donnelly R, McClain LM, Kennedy KA, Vieira C, Fine M, McCarthy DE, Thomas JG, Hecht J, Brown RA. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/34291992/">A Pilot Randomized Controlled Trial of Smartphone-assisted Mindfulness-based Intervention with Contingency Management for Smokers with Mood Disorders</a>. <em>Experimental and Clinical Psychopharmacology</em>.</li>
<li>Salloum RG, Rojewski AM, Piper ME, Blalock, JA, Borrelli B, Boyce LM, Minnix JA, Dogar O, Tomko RL, Jorenby DE, Kotsen C, Ostroff JS. (2021) <a href="https://academic.oup.com/ntr/advance-article/doi/10.1093/ntr/ntab140/6312680?searchresult=1">Reporting Treatment Fidelity in Behavioral Tobacco Treatment Clinical Trials; Scoping Review and Measurement Recommendations</a>. <em>Nicotine and Tobacco Research</em>.</li>
<li>Christiansen B, Smith S, Fiore MC. (2021) <a href="https://www.hindawi.com/journals/josc/2021/6671899/">Measuring Therapeutic Alliance for Tobacco Cessation Counseling for Behavioral Health Clinicians</a>. <em>Journal of Smoking Cessation</em>. Vol. 2021, Article ID 6671899.</li>
<li>Kaye JT, Johnson AL, Baker TB, Piper ME, Cook JW. <a href="https://www.jsad.com/doi/full/10.15288/jsad.2020.81.426">Searching for Personalized Medicine for Binge Drinking Smokers: Smoking Cessation Using Varenicline, Nicotine Patch, Or Combination Nicotine Replacement Therapy</a>. <em>Journal of Studies on Alcohol and Drugs</em>. 2020;81(4):426-435.</li>
<li>Fiore MC, Adsit R, Baker TB. (2020) <a href="https://www.ncbi.nlm.nih.gov/books/NBK555600/">Clinical-, System-, and Population-level Strategies that Promote Smoking Cessation. In: </a><em><a href="https://www.ncbi.nlm.nih.gov/books/NBK555600/">Smoking cessation – A Report of the Surgeon General</a>.</em> Atlanta, GA: US Department of Health and Human Services, Centers for Disease Control and Prevention, National Center for Chronic Disease Prevention, Office on Smoking and Health; 2020:577-640.</li>
<li>Akhtar WZ, Mundt MP, Koepke R, Krechel S, Fiore MC, Seal DW, Westergaard R. <a href="https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2762499">Prevalence of Tobacco Use Among People Who Inject Drugs in Rural Communities</a>. <em>JAMA Network Open</em>. Online March 10, 2020. 3(3):e200493.</li>
<li>Fronk GE, Sant’Ana SJ, Kaye JT, & Curtin JJ. (2020) <a href="https://www.annualreviews.org/doi/abs/10.1146/annurev-clinpsy-102419-125016">Stress Allostasis in Substance Use Disorders: Promise, Progress, and Emerging Priorities in Clinical Research</a>. <em>Annual Review of Clinical Psychology</em>. Online February 10, 2020. Print volume 16, 2020.</li>
<li>Alaniz K, Christiansen B, Sullivan TT, Khalil L, Fiore MC. (2019) Addressing Postpartum Smoking Relapse Among Low-Income Women: A Randomized Control Trial. <em>Journal of Patient-Centered Research and Reviews</em>. 2019;6:233-42. [<a href="https://digitalrepository.aurorahealthcare.org/jpcrr/vol6/iss4/2/">Full text</a>]</li>
<li>Fletcher TL, Johnson AL, Kim B, Yusuf Z, Benzer J, Smith T. (2019) <a href="https://pubmed.ncbi.nlm.nih.gov/31793641/">Provider Perspectives on a Clinical Demonstration Project to Transition Patients with Stable Mental Health Conditions to Primary Care</a>. <em>Translational Behavioral Medicine</em>. 2021;11(1):161-171. Epub 2019 ahead of print.</li>
<li>Chen L-S, Baker T, Korpecki J, Johnson K, Hook J, Brownson RC, Bierut L. Low-Burden Strategies to Promote Smoking Cessation Treatment Among Patients with Serious Mental Illness. <em>Psychiatric Services</em>. 2018;69:849-851. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/29852824">Abstract</a>]</li>
<li>Skora A. Tobacco-Related Disparities Among Individuals Affected by Mental Illness. <em>The Journal of the Pharmacy Society of Wisconsin</em>. 2018;21(3):50-56. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2018/06/Smoking-Cess-Skora-article-Journ-of-Pharm-oc-of-WI-May-June-2018.pdf">Full text</a>]</li>
<li>Shirley D, Thibodeau L, Catz SL, McCoy K, Jorenby DE, Safdar N, Sosman JM. Cessation-Related Information, Motivation, and Behavioral Skills in Smokers Living with HIV. AIDS Care. 2018;30(2):131-139. [<a href="http://www.tandfonline.com/doi/full/10.1080/09540121.2017.1367088">Abstract</a>]</li>
<li>Christiansen BA, Carbin J, TerBeek E, Fiore MC. Helping Smokers With Severe Mental Illness Who Do Not Want To Quit. <em>Substance Use and Misuse</em>. Published online: 21 Nov 2017. [<a href="http://www.tandfonline.com/doi/full/10.1080/10826084.2017.1385635">Abstract</a>]</li>
<li>Piper ME, Schlam TR, Cook JW, Smith SS, Bolt DM, Loh W-Y, Mermelstein RJ, Collins LM, Fiore MC, Baker TB. Toward Precision Smoking Cessation Treatment I: Moderator Results From a Factorial Experiment. <em>Drug and Alcohol Dependence</em>. 2017;171:59-65. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/28013098">Abstract</a>]</li>
<li>Petersen A, Mermelstein R, Berg KM, Baker TB, Smith SS, Jorenby D, Piper ME, Schlam TR, Cook JW. Offering Smoking Treatment to Primary Care Patients in Two Wisconsin Healthcare Systems: Who Chooses Smoking Reduction Versus Cessation? <em>Preventive Medicine</em>. 2017 Dec;105:332-336. Epub October 2017. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=Offering+Smoking+Treatment+to+Primary+Care+Patients+in+Two+Wisconsin+Healthcare+Systems">Abstract</a>]</li>
<li>Christiansen B, McMaster DR, Heiligenstein EL, Glysch RL, Reimer DM, Adsit RT, Hayden KA, Hollenback C, Fiore MC. Measuring the Integration of Tobacco Policy and Treatment into the Behavioral Health Care Delivery System: How are we Doing? <em>Journal of Health Care for the Poor and Underserved. </em>2016;27(2):510-26. [Full text]</li>
<li>Christiansen B, Reeder K, TerBeek E, Fiore MC, Baker TB. Motivating Low Socioeconomic Status Smokers to Accept Evidence-Based Smoking Cessation Treatment: A Brief Intervention for the Community Agency Setting. Nicotine and Tobacco Research. 2015 July;17(8):1002-1011. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Christiansen-NTR-Motivating-low-socioeconomic-status-smokers-to-accept-evidence-based-smoking-cessation-treatment-15.pdf">Full text</a>]</li>
<li>Smith SS, Rouse LM, Caskey M, Fossum J, Strickland R, Culhane JK, Waukau J. Culturally-Tailored Smoking Cessation for Adult Indian Smokers: A Clinical Trial. <em>The Counseling Psychologist. </em>2014;42(6):852-86. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Smith-Couns-Psychol-Culturally-tailored-smoking-cessation-for-American-Indian-smokers-14.pdf">Full text</a>]</li>
<li>Lebrun-Harris LA, Fiore MC, Tomoyasu N, Ngo-Metzger Q. Cigarette Smoking, Desire to Quit, and Tobacco-Related Counseling Among Adult Health Center Patients. <em>American Journal of Public Health.</em> 2014 Mar 13. Epub ahead of print. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/LeBrun-Harris-Fiore-AJPH-Cigarette-smoking-and-desire-to-quit-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Christiansen BA, Reeder K, Fiore MC, Baker TB<em>. </em>Changing Low Income Smokers’ Beliefs about Tobacco Dependence Treatment. <em>Substance Use and Misuse. </em>Epub 2014 Feb 6. [<a href="http://informahealthcare.com/doi/abs/10.3109/10826084.2014.880724">Full text</a>]</li>
</ul>
<ul>
<li>Rouse Arndt, LM, Caskey M, Fossum J, Schmitt N, Davis AR, Smith SS, Kenote B, Strickland R, & Waukau J. Menominee Perspectives on Commercial and Sacred Tobacco Use. <em>American Indian and Alaska Native Mental Health Research</em>. 2013. Volume 20 (3), pages 1-22. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Rouse...Smith-Am-Indian-Alsk-Native-Ment-Health-Res-Menominee-perspectives-on-tobacco-13.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Christiansen BA, Reeder K, Hill M, Baker TB, Fiore MC. Barriers to Effective Tobacco Dependence Treatment for the Very Poor. <em>The Journal of Studies on Alcohol and Drugs. </em>2012; 73(6):874-84. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Christiansen...Baker-Fiore-J-Studies-Alcohol-Drugs-Barriers-to-effective-tobacco-dependence-treatment-12.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Piper ME, Cohen J, Consgrove K. 2012 SRNT Annual Meeting Summary. <em>Nicotine and Tobacco Research</em>. 2012;14(9):1003-5. [<a href="http://ntr.oxfordjournals.org/content/14/9/1006.full">Full text]</a></li>
</ul>
<ul>
<li>Christiansen BA. What Does It Cost To Change Behavior? Editorial. <em>Annals of Family Medicine</em> 10(3):197-198. [<a href="http://annfammed.org/content/10/3/197">Full text</a>]</li>
</ul>
<ul>
<li>Christiansen BA, Brooks M, Keller PA, Theobald WE, Fiore MC. Closing Tobacco-related Disparities: Using Community Organizations to Increase Consumer Demand. <em>American Journal of Preventative Medicine</em>. 2010 Mar;38(3 Suppl):S397-402. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Christiansen-Keller...Fiore-AJPM-Closing-tobacco-related-disparities-10.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Thibodeau L, Jorenby DE, Seal DW, Kim S-Y, Sosman JM. (2010) Prerelease Intent Predicts Smoking Behaivor Posterelease Following a Prison Smoking Ban. <em>Nicotine and Tobacco Resarch</em>, Vol. 12, No. 2, February 2010. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/09/Thibodeau-Jorenby-NTR-Prerelease-intent-predicts-smoking-behavior-10.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Peterson NA, Speer PW, Hughey J, Armstead TL, Schneider JE, Sheffer MA. (2008) Community Organizations and Sense of Community: Further Development in Theory and Measurement. <em>Journal of Community Psychology</em>. 36(6):798-813. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Peterson...Sheffer-J-Community-Psychol-Community-organizations-08.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Brown BB, Theobald WE. How Peers Matter: A Research Synthesis Of Peer Influences On Adolescent Pregnancy. <em>Peer Potential: Making The Most Of How Teens Influence Each Other</em>. Washington, D.C: National Campaign to Prevent Teen Pregnancy; 1999.</li>
<li>Freytag J, Dindo L, Catic A, Johnson AL, Bush Amspoker A, Gravier A, Dawson DB, Tinetti ME, Naik AD. <a href="https://agsjournals.onlinelibrary.wiley.com/doi/abs/10.1111/jgs.16662">Feasibility of Clinicians Aligning Health Care with Patient Priorities in Geriatrics Ambulatory Care.</a> <em>Journal of American Geriatric Science</em>. 2020 Sep;68(9):2112-2116. Online July 20, 2020.</li>
</ul>
</div>
</div>
<h2 class=""><button class="uw-accordion-header" type="button" aria-expanded="false" id="uw-accordion-header-748239" aria-controls="uw-accordion-panel-748239"><svg viewBox="0 0 10 10" focusable="false" aria-hidden="true"><rect class="vert" width="2" height="8" y="1" x="4"></rect><rect width="8" height="2" y="4" x="1"></rect></svg>
Cancer & Tobacco Use </button></h2>
<div class="uw-accordion-panel -uw-accordion-is-hidden" role="region" aria-hidden="true" id="uw-accordion-panel-748239" aria-labelledby="uw-accordion-header-748239">
<div class="uw-accordion-panel-inner uw-clearfix">
<ul>
<li>Schnoll R, Chen LS, Ramsey AT, Presant CA, Jose T, Ashing KT, Shelley D, Bernstein SL, Fleisher L, Salloum RG, Warren GW, Wiseman KP, Blalock JA, Dahl NA, Farka EB, Manders D, Ostroff JS, Park ER, Adsit R, Hohl SD, Minion M, Pauk D, Rolland B. (2021) <a href="https://jnccn.org/view/journals/jnccn/19/Suppl_1/article-pS12.xml?ArticleBodyColorStyles=full%20html">Implementation Science to Improve Tobacco Cessation Services in Oncology Care</a>. <em>Journal of the National Cancer Center Network</em>. Volume 19: Issue Suppl 1. Online November 2021.</li>
<li>Salloum RG, Rojewski AM, Piper ME, Blalock, JA, Borrelli B, Boyce LM, Minnix JA, Dogar O, Tomko RL, Jorenby DE, Kotsen C, Ostroff JS. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/34197617/">Reporting Treatment Fidelity in Behavioral Tobacco Treatment Clinical Trials; Scoping Review and Measurement Recommendations</a>. <em>Nicotine and Tobacco Research</em>. Jul 1;ntab140.</li>
<li>Salloum RG, Fleisher L, Hohl SD, Clark SV, Klass E, Dahl NA, Pike B, Lenhoff KL, Presant CA, Shoenbill KA, Ramsey AT, Jose T, Day AT, Dark M, Yeung S, Tong EK, Prochaska JJ, Ostroff JS, Shelley D, Warren GW, Adsit R, Minion M, Pauk D, Rolland B. (2021) <a href="https://jnccn.org/view/journals/jnccn/19/Suppl_1/article-pS16.xml">Sustainability of Tobacco Treatment Programs in the Cancer Center Cessation Initiative</a>. <em>Journal of the National Cancer Center Network</em>. Volume 19: Issue Suppl 1. Online November 2021.</li>
<li>Fiore MC, Baker TB, Nolan M, Emamekhoo. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/34875104/">Providing Cessation Treatment to Every Oncology Patient who Smokes: An Essential Component of Cancer Care</a>. <em>Cancer</em>. 2021 December 7.</li>
<li>Rolland B, Hohl SD, Minion M, Adsit R, Nolan MB, Pauk D, Bernstein SL, Burris JL, Cinciripini PM, Joseph A, Ostroff J, Warren GW, Fiore MC. (2021) <a href="https://jnccn.org/view/journals/jnccn/19/Suppl_1/article-pS1.xml?ArticleBodyColorStyles=full%20html">Introduction to the Cancer Center Cessation Initiative Working Groups: Improving Oncology Care and Outcomes by Including Tobacco Treatment</a>. <em>Journal of the National Cancer Center Network</em>. Volume 19: Issue Suppl 1. Online November 2021.</li>
<li>Hayes RB, Burris JL, Tong EK, Khanna N, Tsosie U, Hohl SD, Ashing K, Bates-Pappas GE, Cox LS, Bunch SC, Gaynor A, Laurino M, Lenhoff KL, Sheffer CE, Triplette M, Yeung S, Adsit R, Minion M, Pauk D, Rolland B. (2021) <a href="https://jnccn.org/view/journals/jnccn/19/Suppl_1/article-pS4.xml">Integrating Diversity, Equity, and Inclusion Approaches Into Treatment of Commercial Tobacco Use for Optimal Cancer Care Delivery</a>. <em>Journal of the National Cancer Center Network</em>. Volume 19: Issue Suppl 1. Online November 2021.</li>
<li>Crane TE, Tsoh JY, Hohl SD, Goldstein AO, Lenhoff KL, Ostroff J, Shoenbill K, Fugate-Laus K, Park ER, Peregoy J, Warren GW, Adsit R, Minion M, Pauk D, Rolland B. (2021) <a href="https://jnccn.org/view/journals/jnccn/19/Suppl_1/article-pS8.xml?ArticleBodyColorStyles=contributor%20notes">Involving Family and Social Support Systems in Tobacco Cessation Treatment for Patients With Cancer</a>. <em>Journal of the National Cancer Center Network</em>. Volume 19: Issue Suppl 1. Online November 2021.</li>
<li>Craig EJ, Ramsey AT, Baker TB, James AS, Luke DA, Malone S, Chen J, Pham G, Smock N, Goldberg P, Govindan R, Bierut LJ, Chen L-S. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/34446379/">Point of Care Tobacco Treatment Sustains During Covid-19, a Global Pandemic</a>. <em>Cancer Epidemiology</em>. Online first 2021 Aug 18;102005.</li>
<li>D’Angelo H, Webb Hooper M, Burris JL, Rolland B, Adsit R, Pauk D, Rosenblum M, Fiore MC, Baker TB. (2021) <a href="https://www.liebertpub.com/doi/pdfplus/10.1089/heq.2020.0157">Achieving Equity in the Reach of Smoking Cessation Services Within the NCI Cancer Moonshot-funded Cancer Center Cessation Initiative</a>. <em>Health Equity.</em></li>
<li>Salloum RG, D’Angelo H, Theis RP, Rolland B, Hohl S, Pauk D, LeLaurin JH, Asvat Y, Chen LS, Day AT, Goldstein AO, Hitsman B, Hudson D, King AC, Lam CY, Lenhoff K, Levinson AH, Prochaska J, Smieliauskas F, Taylor K, Thomas J, Tindle H, Tong E, White JS, Vogel WB, Warren GW and Fiore MC. (2021) <a href="https://implementationsciencecomms.biomedcentral.com/articles/10.1186/s43058-021-00144-7">Mixed-Methods Economic Evaluation of the Implementation of Tobacco Treatment Programs in National Cancer Institute-Designated Cancer Centers</a>. <em>Implementation Science Communications</em>. 2, 41.</li>
<li>Kim SC, Hawkins RP, Shah DV, Gustafson DH, Baker TB.<a href="https://pubmed.ncbi.nlm.nih.gov/32779223/"> Understanding How E-Health Intervention Meets Psychosocial Needs of Breast Cancer Patients: The Pathways of Influence on Quality of Life and Cancer Concerns</a>. <em>Psycho-oncology</em>. Epub ahead of print. 2020.</li>
<li>Vuong I, Wright J, Nolan MB, Eggen A, Bailey E, Strickland R, Traynor A, Downs T. (2020) <a href="https://pubmed.ncbi.nlm.nih.gov/31713103/">Overcoming Barriers; Evidence-based Strategies to Increase Enrollment of Underrepresented Populations in Cncer Therapeutic Clinical Trials—a Narrative Review</a>. <em>Journal of Cancer Education</em>. 2020;35(5):841-849.</li>
<li>Ramsey AT, Baker TB, Pham G, Stoneking F, Smock N, Colditz GA, James AS, Liu J, Bierut LJ, Chen LS. (2020) <a href="https://www.mdpi.com/1660-4601/17/5/1728">Low Burden Strategies Are Needed to Reduce Smoking in Rural Healthcare Settings: A Lesson from Cancer Clinics.</a> <em>International Journal of Environmental Research and Public Health. </em>17(5): 1-11.</li>
<li>Barrett JR, Cherney-Stafford L, Alagoz E, Piper ME, Cook JW, Campbell-Flohr S, Weber SM, Winslow ER, Ronnkleiv-Kelly SM, Abbott DE. (2019) <a href="https://onlinelibrary.wiley.com/doi/full/10.1002/jso.25749">Smoking and Gastrointestinal Cancer Patients—Is Smoking Cessation an Attainable Goal?</a> <em>Journal of Surgical Oncology</em>. 120(8): 1335-1340.</li>
<li>Fiore MC, D’Angelo H, Baker TB. (2019) <a href="https://jamanetwork.com/journals/jamanetworkopen/fullarticle/2752095?guestAccessKey=55ba6b47-f48e-48fb-bfd0-d924053cc549&utm_source=jps&utm_medium=email&utm_campaign=author_alert-jamanetwork&utm_content=author-author_engagement&utm_term=1m">Effective Cessation Treatment for Patients With Cancer Who Smoke – The Fourth Pillar of Cancer Care.</a> <em>JAMA Network Open</em>. 2(9):e1912264.</li>
<li>Ramsey AT, Chiu A, Baker T, Smock N, Chen U, Lester T, Jorenby D, Bierut LJ, Chen L-S. (2019) <a href="https://academic.oup.com/tbm/advance-article/doi/10.1093/tbm/ibz107/5528343?searchresult=1">Care-Paradigm Shift Promoting Smoking Cessation Treatment Among Cancer Patients Via a Low-Burden Strategy, Electronic Health Record-Enabled Evidence-Based Smoking Cessation Treatment</a>. <em>Translational Behavioral Medicine.</em></li>
<li>Han JY, Hawkins R, Baker T, Shah DV, Pingree S, Gustafson D. (2017) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6010201/">How Cancer Patients Use and Benefit from an Interactive Cancer Communication System.</a> <em>Journal of Health Communication. </em>22(10): 792–799.</li>
<li>Croyle RT, Morgan GD, Fiore MC. (2019) <a href="https://www.nejm.org/doi/full/10.1056/NEJMp1813913">Addressing a Core Gap in Cancer Care – the NCI Moonshot Program to Help Oncology Patients Stop Smoking.</a> <em>New England Journal of Medicine</em>. 380(6):512-515.</li>
<li>Land S, Toll BA, Moinpour CM, Mitchell SA, Ostroff JS, Hatsukami DK, Duffy SA, Gritz ER, Rigotti NA, Brandon TH, Prindiville SA, Sarna LP, Schnoll RA, Herbst RS, Cinciripini PM, Leischow SJ, Dresler CM, Fiore MC, Warren GW.<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Land-16-Research-priorities-measures-and-recommendations-for-assessment-of-tobacco-use-in-clinical-cancer-research.pdf"> Research Priorities, Measures, and Recommendations for Assessment of Tobacco Use in Clinical Cancer Research</a><em>. Clinical Cancer Research</em>. Online February 2016.</li>
<li>Jorenby DE. Smoking Cessation. In: Harari PM, Connor NP, Grau C, eds. (2009) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Niederdeppe-Fiore...Smith-AJPH-Smoking-cessation-media-campaigns-08.pdf">Medical Radiology – Radiation Oncology: Functional Preservation and Quality of Life in Head and Neck Radiotherapy.</a> Heidelberg: Springer; 277-285.</li>
<li>Toni Roucka, Rob Adsit, Denis Lynch. Oral Cancer in Wisconsin: The Good the Bad and the Ugly, <em>Wisconsin Dental Association Journal </em>July 2006: Volume 82, Number 7.</li>
<li>Gritz ER, Fiore MC, Henningfield JE. (1995) Smoking and Cancer. In: Murphy GP, Lawrence W, Lenhard RE, eds. <em>American Cancer Society Textbook of Clinical Oncology</em>. 2nd ed. Atlanta: American Cancer Society; 146-163.</li>
<li>Harari PM, O’Connor NJ, Fiore MC, Kinsella TJ. (1995) Radiation Oncologists Can Assist Head and Neck Cancer Patients With Smoking Cessation. <em>International Journal of Radiation Oncology, Biology, Physics. </em>31(3):645-649.</li>
<li>Fiore MC, Lewis S. (1994) Smoking cessation. In: Love RR, ed. <em>Manual of Clinical Oncology</em>. 6th ed. Berlin: Springer-Verlag; 101-113.</li>
</ul>
</div>
</div>
<h2 class=""><button class="uw-accordion-header" type="button" aria-expanded="false" id="uw-accordion-header-963975" aria-controls="uw-accordion-panel-963975"><svg viewBox="0 0 10 10" focusable="false" aria-hidden="true"><rect class="vert" width="2" height="8" y="1" x="4"></rect><rect width="8" height="2" y="4" x="1"></rect></svg>
Cardiology & Tobacco Use </button></h2>
<div class="uw-accordion-panel -uw-accordion-is-hidden" role="region" aria-hidden="true" id="uw-accordion-panel-963975" aria-labelledby="uw-accordion-header-963975">
<div class="uw-accordion-panel-inner uw-clearfix">
<ul>
<li>Luepker RV, Nolan MB. (2021) <a href="https://accessmedicine.mhmedical.com/content.aspx?bookid=3078&sectionid=256745677">Chapter 52: Cardivascular Disease</a> in Boulton ML, Wallace RB, eds Boulton/Maxcy-Rosenau-Last. <span style="text-decoration: underline">Public Health & Preventive Medicine</span>. 16th ed. New York, NY: McGraw-Hill.</li>
<li>Kaye JT<span class="NLM_contrib-group">, Johnson AL, Baker TB, Piper ME, Cook JW. </span><a href="https://www.jsad.com/doi/full/10.15288/jsad.2020.81.426">Searching for Personalized Medicine for Binge Drinking Smokers: Smoking Cessation Using Varenicline, Nicotene Patch, or Combination Nicotine Replacement Therapy.</a>Journal of Studies on Alcohol and Drugs. 2020.</li>
<li>Schmidt KM, Hansen KM, Johnson AL, Gepner AD, Korcarz CE, Fiore MC, Baker TB, Piper ME, Stein JH. <a href="https://www.ncbi.nlm.nih.gov/pubmed/31795823">Longitudinal Effects of Cigarette Smoking and Smoking Cessation on Aortic Wave Reflections, Pulse Wave Velocity, and Carotid Artery Distensibility</a>. <em>Journal of the American Heart Association. </em>2019;8(24):e013939.</li>
<li>Mitchell C, Piper ME, Smith SS, Korcarz CE, Fiore MC, Baker TB, Stein JH. (2019) <a href="https://journals.sagepub.com/doi/full/10.1177/1358863X19867762?url_ver=Z39.88-2003&rfr_id=ori:rid:crossref.org&rfr_dat=cr_pub%3dpubmed">Changes In Carotid Artery Structure With Smoking Cessation.</a> <em>Vascular Medicine</em>. 24(6):493–500.</li>
<li>Gorilla A. (2018) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2018/01/PharmacySocietyWI2018.pdf">The Importance of Smoking Cessation to Reducing Cardiovascular Disease Risk.</a> <em>Pharmacy Society of Wisconsin</em>. 32-38.</li>
<li>Mitchell CC, Piper ME, Korcarz CE, Hanson K, Weber J, Fiore MC, Baker TB, Stein JH. (2018) <a href="http://journals.sagepub.com/doi/pdf/10.1177/8756479317747226">Echogenicity of the Carotid Arterial Wall in Active Smokers.</a> <em>Journal of Diagnostic Medical Sonography.</em> 34(3): 161–168.</li>
<li>King CC, Piper ME, Gepner AD, Fiore MC, Baker TB, Stein JH. (2016) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/King-Arterioscler-Thromb-Vasc-Biol-Longitudinal-impact-of-smoking-and-smoking-cessation-on-infammatory-markers-17.pdf">The Longitudinal Impact of Smoking and Smoking Cessation on Inflammatory Markers of Cardiovascular Disease Risk.</a> <em>Arteriosclerosis, Thrombosis, and Vascular Biology</em>. 37: 374-379.</li>
<li>Kolehmainen C, Stahr A, Kaatz A, Brennan M, Vogelman B, Cook J, Carnes M. (2015) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4597965/">Post-code PTSD Symptoms in Internal Medicine Residents Who Participate in Cardiopulmonary Resuscitation Events: A Mixed Methods Study.</a> <em>Journal of Graduate Medical Education. </em>7(3):475-479.</li>
<li>Gennuso KP, Thraen-Borowski KM, Schlam TR, LaRowe TJ, Fiore MC, Baker TB, Colbert LH. (2014). <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Gennuso...Schlam...Colbert-Prev-Med-Smokers-physical-activity-weight-gain-14.pdf">Smokers’ Physical Activity and Weight Gain One Year After a Successful Versus Unsuccessful Quit Attempt.</a> <em>Preventive Medicine</em>. (67):189-192.</li>
</ul>
<ul>
<li>Gepner AD, Piper ME, Leal MA, Asthana A, Fiore MC, Baker TB, Stein JH. (2013) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Gepner-Piper...Stein-PLoS-ONE-Electrocardiographic-changes-associated-with-smoking-cessation-13.pdf">Electrocardiographic Changes Associated with Smoking and Smoking Cessation: Outcomes from a Randomized Controlled Trial.</a> <em>PLOS ONE</em>. (8)4; 1-7</li>
<li>Johnson HM, Piper ME, Baker TB, Fiore MC, Stein JH (2012) <a href="https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0035332&type=printable">Effects of Smoking and Cessation on Subclinical Arterial Disease: A Substudy of a</a><br>
<a href="https://journals.plos.org/plosone/article/file?id=10.1371/journal.pone.0035332&type=printable">Randomized Controlled Trial.</a> <em>PLoS ONE</em> 7(4)</li>
<li>Asthana A, Piper ME, McBride PE, Ward A, Fiore MC, Baker TB, Stein JH. (2012) <a href="https://www.sciencedirect.com/science/article/pii/S0002870311004935?via%3Dihub">Long-term Effects of Smoking And Smoking Cessation on Exercise Stress Testing: Three-Year Outcomes From a Randomized Clinical Trial.</a> <em>American Heart Journal</em>. 163(1):81-87.</li>
</ul>
<ul>
<li>Julius BR, Ward BA, Stein JH, McBride PE, Fiore MC, Baker TB, Nieto J, Colbert LH. (2011). <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Julius...Fiore_...Colbert-J-Phys-Activity-Health-Ambulatory-activity-associations-with-cardiovascular-risk-factors-11.pdf">Ambulatory Activity Associations with Cardiovascular and Metabolic Risk Factors In Smokers.</a> <em>Journal of Physical Activity and Health</em>. 8(7): 994-1003.</li>
</ul>
<ul>
<li>Johnson HM, Piper ME, Jorenby DE, Fiore MC, Baker TB, Stein JH. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Johnson-Piper...Stein-Prev-Cardiol-Risk-factors-for-subclinical-atherosclerosis-10.pdf">Risk Factors for Subclinical Carotid Atherosclerosis Among Current Smokers.</a> <em>Preventive Cardiology. </em>13(4):166.</li>
</ul>
<ul>
<li>Gossett LK, Johnson HM, Piper ME, Fiore MC, Baker TB, Stein JH. (2009) <a href="http://www.lipidjournal.com/article/S1933-2874%2809%2900381-X/abstract">Smoking Intensity and Lipoprotein Abnormalities in Active Smokers.</a> <em>Journal of Clinical Lipidology, </em>3(6): 372-378.</li>
</ul>
<ul>
<li>Fiore MC, Piasecki TM, Baker LJ, Deeren SM. (1997) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Fiore-Piasecki-chapt-Cigarette-smoking-Leading-preventable-cause-97.pdf">Cigarette Smoking: The Leading Preventable Cause of Pulmonary Disease.</a> In: Bone RC, Ed. <em>Pulmonary and Critical Care Medicine, Update IV</em>. St. Louis: Mosby. 1-22.</li>
<li>Stein JH, Smith SS, Hanson KM, Korcarz CE, Piper ME, Fiore MC, Baker TB. (2020) <a href="https://pubmed.ncbi.nlm.nih.gov/33227549/">Longitudinal Effects of Smoking Cessation on Carotid Artery Atherosclerosis in Contemporary Smokers: the Wisconsin Smoker’s Health Study.</a> <em>Atherosclerosis</em>. 2020.</li>
</ul>
</div>
</div>
<h2 class=""><button class="uw-accordion-header" type="button" aria-expanded="false" id="uw-accordion-header-279220" aria-controls="uw-accordion-panel-279220"><svg viewBox="0 0 10 10" focusable="false" aria-hidden="true"><rect class="vert" width="2" height="8" y="1" x="4"></rect><rect width="8" height="2" y="4" x="1"></rect></svg>
Cessation </button></h2>
<div class="uw-accordion-panel -uw-accordion-is-hidden" role="region" aria-hidden="true" id="uw-accordion-panel-279220" aria-labelledby="uw-accordion-header-279220">
<div class="uw-accordion-panel-inner uw-clearfix">
<ul>
<li>Baker TB, Piper ME, Smith SS, Bolt DM, Stein JH, Fiore MC. (2021) <a href="https://jamanetwork.com/journals/jama/fullarticle/2785264?guestAccessKey=bd882483-2d40-4d2d-9592-6f0fd80004f0&utm_source=For_The_Media&utm_medium=referral&utm_campaign=ftm_links&utm_content=tfl&utm_term=101921">Effects of Combined Varenicline With Nicotine Patch and of Extended Treatment Duration on Smoking Cessation: A Randomized Clinical Trial</a>. <em>JAMA</em>. 326(15):1485-1493.</li>
<li>Baker TB, Bolt DM, Smith SS. (2021) <a href="https://journals.sagepub.com/doi/full/10.1177/2167702621994551">Barriers to Building More Effective Treatments: Negative Interactions Among Smoking-Intervention Components</a>. <em>Clinical Psychological Science. </em></li>
<li>Baker TB, McCarthy DE. (2021) <a href="https://www.annualreviews.org/doi/abs/10.1146/annurev-clinpsy-081219-090343">Smoking Treatment; A Report Card on Progress and Challenges</a>. <em>Annual Review of Clinical Psychology</em>. Vol. 17:1-309.</li>
<li>Cook JW, Baker TB, Fiore MC, Collins LM, Piper ME, Schlam TR, Bolt DM, Smith SS, Zwaga D, Jorenby DE, Mermelstein R. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/33908665/">Evaluating Four Motivation-Phase Intervention Components for Use with Primary Care Patients Unwilling to Quit Smoking: A Randomized Factorial Experiment</a>. <em>Addiction</em>. Online April 28, 2021.</li>
<li>Fiore MC, Baker TB. (2021) <a href="https://www.ajpmonline.org/article/S0749-3797(20)30545-6/fulltext">Quitline Commentary: 10 Million Calls and Counting: Progress and Promise of Tobacco Quitlines in the United States</a>. <em>American Journal of Preventive Medicine</em>. Volume 60, Issue 3, Supplement 2, S99-S102, March 01, 2021.</li>
<li>Nolan, M., Zwaga, D, McCarthy D, Kastman C, Baker TB, Zehner M, Smith SS, Fiore M. (2020) <a href="https://www.cambridge.org/core/journals/journal-of-smoking-cessation/article/who-are-we-missing-with-ehrbased-smoking-cessation-treatments-a-descriptive-study-of-patients-who-smoke-and-do-not-regularly-visit-primary-care-clinics/9A478704954D2AD2F3BA1E0C849931F5">Who Are We Missing with EHR-based Smoking Cessation Treatments? A Descriptive Study of Patients Who Smoke and Do Not Regularly Visit Primary Care Clinics.</a> <i>Journal of Smoking Cessation,</i> 1-6. doi:10.1017/jsc.2020.21</li>
<li>Kim N, McCarthy DE, Piper ME, Baker TB. (2020) <a href="https://onlinelibrary.wiley.com/doi/full/10.1111/add.15248?af=R">Comparative Effects of Varenicline or Combination Nicotine Replacement Therapy versus Patch Monotherapy on Candidate Mediators of Early Abstinence in a Smoking Cessation Attempt.</a> <em>Addiction. </em>September 4, 2020.</li>
<li><span class="author">Kim N</span>, <span class="author">McCarthy DE</span>, <span class="author">Cook JW</span>, <span class="author">Piper ME, </span><span class="author">Schlam TR</span> and <span class="author">Baker TB.</span> (<span class="pubYear">2020</span>) <a href="https://doi.org/10.1111/add.15232"><span class="articleTitle">Time‐Varying Effects of ‘Optimized Smoking Treatment’ On Craving, Negative Affect and Anhedonia</span>.</a> <i>Addiction</i>.</li>
<li>D’Angelo H, Ramsey AT, Rolland B, Chen LS, Bernstein SL, Fucito LM, Webb HM, Adsit R, Pauk D, Rosenblum MS, Cinciripini PM, Joseph A, Ostroff JS, Warren GW, Fiore MC, Baker TB. (2020)<a href="https://pubmed.ncbi.nlm.nih.gov/22476113/">Pragmatic Application of the RE-AIM Framework to Evaluate the Implementation of Tobacco Cessation Programs Within NCI-Designated Cancer Centers</a>. <em>Frontiers in Public Health. </em> 8;221.</li>
<li>Klemperer EM, Mermelstein R, Baker TB, Hughes JR, Fiore MC, Piper, ME, Schlam TR, Jorenby DE, Collins LM, Cook J. (2020) <a href="https://www.ncbi.nlm.nih.gov/pubmed/32236417">Predictors of Smoking Cessation Attempts and Success Following Motivation-Phase Interventions Among People Initially Unwilling to Quit Smoking</a>. <em>Nicotine & Tobacco Research</em>. Online April 1, 2020.</li>
<li>Benowitz N, Bernert J, Foulds J, Hecht S, Jacob P, Jarvis M Joseph A, Oncken C, Piper M. (2019) <a href="https://watermark.silverchair.com/ntz132.pdf?token=AQECAHi208BE49Ooan9kkhW_Ercy7Dm3ZL_9Cf3qfKAc485ysgAAApQwggKQBgkqhkiG9w0BBwagggKBMIICfQIBADCCAnYGCSqGSIb3DQEHATAeBglghkgBZQMEAS4wEQQMfjMAG2UnM-sdfKC9AgEQgIICR8qMS8BvUXzb1ds31ZvgynP1ziZDYIhTzJTFaFWDAclo0q1SmBzCVs5P2a4qH-2yz13-Gmdn4XUaEYzkgUdxori4eMBaFsKI1DOpyFTTVyz2JMUxCGYwq1NEsQX0EmLZanQ0Yu6BzYErGGl7K03G3ghxyR1_z-GHOolyvo5fvsWFAA4v1vXcLQU6kfSy_W5LrD6gu3SnFhLNDlNi401D-VgvN0uAWz3T0at-1h4GvYC1Mg-TMez9ED1waB3PcQ7YvTjZlJLO_1SBig1-tYYGBlYdgn40ghGGxIOsbJT7XCEyZqHWpfHSOyuZ8P2q_AtrXTarRcUoilrPp6K2aJ5nKUpb5JZd-3p_XQajoco91Zo7rDUx3-nTC-JYjSDqHic9-tsOTvZmBIWyO_qIIGT5KmHHMNR0WjY5chhhR_Z_ZGaU32pNy2XwJuAuRC-RfkHEe05UCqg5yqxONyt4ZqBac2SzElJYOEATJNnIjOO3L686RkvmwIXNs5CDOxxjj9_dsSJqAtrqcG6oJSRvv4iYAFZ-J_eEMNhHiafjd1V7lIQyN1LssDORZnhkMMSC5283K28Vxgxkx7KPX4czZr1-H_wpoGsKe40O70tShSnKTJiEPMFwg2T_tl42yn0W91WpBqQ6xWBh-wchIH_jfaMZJBBgO1Bo9JkHnQQ4mV65um_UA9xuMDMZzDZO0MIytdHRbxde45mEG5T8B49ytGkXtn6ISI7J8-UaH5yrys3RXxzJcdIv0CrzNF-Lb7bth_ivG3oR9IkkdfE">Biochemical Verification of Tobacco Use and Abstinence;</a> <em>Nicotine & Tobacco Research. </em>1-12.</li>
<li>Piper ME, Mermelstein R, Baker TB. (2019) <a href="https://jamanetwork.com/journals/jamapediatrics/fullarticle/2753030">Progress in Treating Youth Smoking: Imperative, Difficult, Slow.</a> <em>JAMA Pediatrics</em>. 173(12):1131-1132.</li>
<li>Schlam TR, Baker TB. (2019) <a href="https://pubmed.ncbi.nlm.nih.gov/31536384-playing-around-with-quitting-smoking-a-randomized-pilot-trial-of-mobile-games-as-a-craving-response-strategy/">Playing Around with Quitting Smoking: A Randomized Pilot Trial of Mobile Games as a Craving Response Strategy.</a> <em>Games Health Journal</em>. 9(1): 64-70.</li>
<li>Wattiaux A, Bettendorf M, Block L, Gilmore-Bykovskyi A, Ramley E, Piper ME, Rosenthal A, Sadusky J, Cox E, Chewning B, Bartels CM. (2019) <a href="https://onlinelibrary.wiley.com/doi/epdf/10.1002/acr.23858">Patient Perspective on Smoking Cessation and Interventions in Rheumatology Clinics.</a> <i>Arthritis Care & Research. </i>72(3):369-377.</li>
<li>Piper ME, Bullen C, Krishnan-Sarin S, Ossip DJ, Rigotti NL. Steinberg ML, Streck JM, Jospeh AM. (2019) <a href="https://academic.oup.com/ntr/advance-article/doi/10.1093/ntr/ntz110/5528135">Defining and Measuring Abstinence in Clinical Trials of Smoking Cessation Interventions: An Updated Review.</a> <i>Nicotine & Tobacco Research</i>. 1-9.</li>
<li>Mundt MP, Baker TB, Fraser DL, Smith SS, Piper ME, Fiore MC. (2019)<a href="https://www.sciencedirect.com/science/article/pii/S1098301518332637#s0005"> Paying Low-Income Smokers to Quit? The Cost-Effectiveness of Incentivizing Tobacco Quit Line Engagement for Medicaid Recipients who Smoke.</a> <em>Value in Health. </em>22(2):177-184.</li>
<li>Piper ME, Schlam TR, Fraser D, Oguss M, Cook JW. (2018)<a href="https://link.springer.com/chapter/10.1007/978-3-319-91776-4_2#enumeration"> Implementing Factorial Experiments in Real-World Settings: Lessons Learned While Engineering an Optimized Smoking Cessation Treatment</a> (Chapter). <em>Optimization of Behavioral, Biobehavioral, and Biomedical Interventions: Advanced Topics (Book) </em>pp. 23-45.</li>
<li>Keller P, Boyle RG, Lien RK, Christiansen B, Kobinsky K. (2018) <a href="https://www.researchgate.net/publication/325666761_Engaging_Smokeless_Tobacco_Users_in_Population-Based_Cessation_Services_Findings_From_an_Observational_Study">Engaging Smokeless Tobacco Users in Population-Based Cessation Services: Findings from an Observational Study.</a> <em>Journal of Public Health Management and Practice.</em> pp. 1-4.</li>
<li>McCarthy DE, Versella, MV. (2018) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6821172/">Quitting Failure and Success With and Without Using Medication: Latent Classes of Abstinence and Adherence to Nicotine Monotherapy, Combination Therapy, and Varenicline.</a> <em>Nicotine & Tobacco Research</em>. 21(11): 1488–1495.</li>
<li>Chen L-S, Zawertaillo L, Piasecki TM, Kapiro J, Foreman M, Elliott HR, David SP, Bergen AW, Baurley JW,Tyndale RF, Baker TB, Bierut LJ, Saccone NL. (2018) <a href="https://academic.oup.com/ntr/article/20/4/414/3819371">Leveraging Genomic Data In Smoking Cessation Trials In the Era of Precision Medicine: Why and How.</a> <em>Nicotine and Tobacco Research. </em>20(4):414-424.</li>
<li>Baker TB, Fraser DL, Kobinsky K, Adsit R, Smith SS, Khalil L, Alaniz KM, Sullivan TE, Johnson ML, Fiore MC. (2018). <a href="https://pubmed.ncbi.nlm.nih.gov/29389142-a-randomized-controlled-trial-of-financial-incentives-to-low-income-pregnant-women-to-engage-in-smoking-cessation-treatment-effects-on-post-birth-abstinence/?from_single_result=Financial+Incentives+to+Low+Income+Pregnant+Women+to+Engage+in+Smoking+Cessation+Treatment">A Randomized Controlled Trial of Financial Incentives to Low Income Pregnant Women to Engage in Smoking Cessation Treatment: Effects on Post-Birth Abstinence.</a> <em>Journal of Consulting and Clinical Psychology</em>. <em>86</em>(5): 464–473.</li>
<li>Allen AM, Carlson S, Eberly LE, Hatsukami D, Piper ME. (2018) <a href="https://www.sciencedirect.com/science/article/pii/S0306460317303829?via%3Dihub">Use of Hormonal Contraceptives and Smoking Cessation: A Preliminary Report.</a> <em>Addictive Behaviors.</em> 76:187-192.</li>
<li>Vreede AP, Johnson HM, Piper ME, Panyard DJ, Wong JC, Bartels C. (2017) <a href="https://www.ncbi.nlm.nih.gov/pubmed/28700529">Rheumatologists Modestly More Likely to Counsel Smokers in Visits without Rheumatoid Arthritis Control: An Observational Study.</a> <em>Journal of Clinical Rheumatology.</em><span class="comma"> </span><span class="volume-issue-pages">23(5): 273-277.</span></li>
<li>Petersen A, Mermelstein R, Berg KM, Baker TB, Smith SS, Jorenby D, Piper ME, Schlam TR, Cook JW. (2017). <a href="https://www.sciencedirect.com/science/article/pii/S0091743517303651?via%3Dihub">Offering Smoking Treatment to Primary Care Patients in Two Wisconsin Healthcare Systems: Who Chooses Smoking Reduction Versus Cessation?</a> <em>Preventive Medicine</em>. 105:332-336.</li>
<li>Piper ME, Cook JW, Schlam TR, Smith SS, Bolt DM, Collins LM, Mermelstein RJ, Fiore MC, Baker TB. (2017) <a href="https://www.sciencedirect.com/science/article/pii/S0376871616310390?via%3Dihub">Toward the Development of Precision Smoking Cessation Treatment II: Proximal Effects of Smoking Cessation Intervention Components on Putative Mechanisms of Action.</a> <em>Drug and Alcohol Dependence</em>. 171:50-58.</li>
<li>Fraser DL, Fiore MC, Kobinsky K, Adsit R, Smith SS, Johnson ML, Baker TB. (2017). <a href="https://www.sciencedirect.com/science/article/pii/S0749379717304828?via%3Dihub">A Randomized Trial of Incentives for Smoking Treatment in Medicaid Members.</a> <em>American Journal of Preventive Medicine</em>. 53(6):754-763.</li>
<li>Bekiroglu K, Russell MA, Lagoa CM, Lanza ST, Piper ME. (2017) <a href="https://www.sciencedirect.com/science/article/pii/S0376871617304234?via%3Dihub">Evaluating the Effect of Smoking Cessation Treatment on a Complex Dynamical System.</a> <em>Drug and Alcohol Dependence</em>. 180:215-222.</li>
<li>Baker TB. (2017). <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5896548/">The 2016 Ferno Award Address: Three Things.</a> <em>Nicotine and Tobacco Research.</em> 19 (8): 891-900.</li>
<li>Piper ME, Vasilenko SA, Cook JW, Lanza ST. (2016) <a href="https://onlinelibrary.wiley.com/doi/full/10.1111/add.13613">What a Difference a Day Makes: Differences in Initial Abstinence Response During a Smoking Cessation Attempt.</a> <em>Addiction</em>. 112(2):330-339.</li>
<li>Bray BC, Smith RA, Piper ME, Roberts LJ, Baker TB. (2016) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5103938/">Transitions in Smokers’ Social Networks After Quit Attempts: a Latent Transition Analysis.</a> <em>Nicotine and Tobacco Research</em>. 18(12):2243-2251.</li>
<li>Baker TB, Piper ME, Stein JH, Smith SS, Bolt DM, Fraser DL, Fiore MC. (2016). <a href="https://jamanetwork.com/journals/jama/fullarticle/2484340">The Effects of the Nicotine Patch vs. Varenicline vs Combination Nicotine Replacement Therapy on Smoking Cessation as 26 Weeks: a Randomized Controlled Trial.</a> <em>JAMA</em>. 315 (4):371-379.</li>
<li>Kruger J, O’Halloran A, Rosenthal AC, Babb SD, Fiore MC. (2016) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4751655/">Receipt of Evidence-Based Brief Cessation Interventions by Health Professionals and Use of Cessation Assisted Treatments Among Current Adult Cigarette-Only Smokers: National Adult Tobacco Survey, 2009–2010.</a> <em>BMC Public Health</em>. 11;16(1):141.</li>
</ul>
<ul>
<li>Baker TB, Collins LM, Mermelstein R, Piper ME, Schlam TR, Cook JW, Bolt DM, Smith SS, Jorenby DE, Fraser D, Loh W-Y, Theobald WE, Fiore MC. (2016) <a href="https://onlinelibrary.wiley.com/doi/full/10.1111/add.13154">Enhancing the Effectiveness of Smoking Treatment Research: Conceptual Bases and Progress.</a> <em>Addiction</em>.<span class="cit"> 111(1): 107–116.</span></li>
</ul>
<ul>
<li>Cook JW, Baker TB, Fiore MC, Smith SS, Fraser D, Bolt DM, Collins LM, Piper ME, Schlam TR, Jorenby DE, Loh W-Y, Mermelstein R. (2016).<a href="https://www.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&retmode=ref&cmd=prlinks&id=26582140"> The Comparative Effectiveness of Multiple Interventions to Motivate Successful Smoking Cessation: A Factorial Screening Experiment.</a> <em>Addiction</em>. <span class="cit"> 111(1): 117–128.</span></li>
</ul>
<ul>
<li>Cook JW, Baker TB, Fiore MC, Smith SS, Fraser D, Bolt DM, Collins LM, Piper ME, Schlam TR, Jorenby DE, Loh W-Y, Mermelstein R. (2016).<a href="https://www.ncbi.nlm.nih.gov/entrez/eutils/elink.fcgi?dbfrom=pubmed&retmode=ref&cmd=prlinks&id=26582140"> The Comparative Effectiveness of Multiple Interventions to Motivate Successful Smoking Cessation: A Factorial Screening Experiment.</a> <em>Addiction</em>. <span class="cit">111(1): 117–128.</span></li>
</ul>
<ul>
<li>Smith BK, Adsit RT, Jorenby DE, Matsumura JS, Fiore MC. (2015) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4638324/">Utilization of the Electronic Health Record (EHR) to Improve Provision of Smoking Cessation Resources for Vascular Surgery Inpatients.</a> <em>International Journal of Cardiovascular Research</em>. 4(5)</li>
</ul>
<ul>
<li>Minami H, Tran LT, McCarthy DE. (2015) (This paper uses data from a UW-CTRI study, and McCarthy is a former UW-CTRI graduate student.) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4618395/">Using Ecological Measures of Smoking Trigger Exposure to Predict Smoking Cessation Milestones.</a> <em>Psychology of Addictive Behaviors</em>. 29(1):122-8.</li>
</ul>
<ul>
<li>Davis JM, Manley AR, Goldberg SB, Stankevitz KA, Smith SS. (2015) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4382847/">Mindfulness Training for Smokers Via Web-Based Video Instruction with Phone Support: A Prospective Observational Study.</a> <em>BMC Complementary Alternative Medicine</em>. 15:95.</li>
</ul>
<ul>
<li>Baker TB, Fiore MC. (2015).<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Baker-Fiore-Addiction-Treating-more-smokers-more-of-the-time-15.pdf"> Invited Commentary on Richter-Ellerbeck: Treating More Smokers, More of the Time, More Successfully.</a> <em>Addiction</em>. 110(3):388-389.</li>
</ul>
<ul>
<li>Theobald WE, Fiore MC. (2014).<a href="http://www.tabaccologia.it/filedirectory/Tabaccologia_1-2_2014.pdf"> Elogio di Tabaccologia</a> (Tribute to Tabaccologia) Editorial. <em>Tabaccologia</em>. 1-2:1-46.</li>
</ul>
<ul>
<li>Fraser D, Kobinsky K, Smith SS, Kramer J, Theobald WE, Baker TB. (2014). <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4286555/">Five Population-Based Interventions for Smoking Cessation: A MOST Trial.</a> <em>Translational Behavioral Medicine</em>. 4(4): 382-390.</li>
</ul>
<ul>
<li>Davis JM, Manley AR, Goldberg SB, Smith SS, Jorenby DE. (2014). <a href="https://www.sciencedirect.com/science/article/pii/S0740547214000804?via%3Dihub">Randomized Trial Comparing Mindfulness Training for Smokers to a Matched Control</a>. <em>Journal of Substance Abuse Treatment</em>. 47(3):213-21.</li>
</ul>
<ul>
<li>Fiore MC, Golden RN. (2014).<a href="https://www.wisconsinmedicalsociety.org/_WMS/publications/wmj/pdf/113/2/81.pdf"> The 50th Anniversary of the Surgeon General’s Report on Smoking and Health: Reflections and Lessons to be Learned for Other Public Health Challenges.</a> <em>Wisconsin Medical Journal</em>. 113(2): 81-83.</li>
</ul>
<ul>
<li>Davis JM, Goldberg SB, Anderson MC, Manley AR, Smith SS, Baker TB. (2014) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Davis...Smith-Baker-Subst-Use-Misuse-Randomized-trial-on-mindfulness-training-for-smokers-14.pdf">Randomized Trial on Mindfulness Training for Smokers Targeting a Disadvantaged Population.</a> <em>Journal of Substance Use and Misuse.</em> 49(5):571-85.</li>
</ul>
<ul>
<li>Davis JM, Mills DM, Stankevitz KA, Manley AR, Majeskie MR, Smith SS. (2013) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Davis...Smith-BMC-Comp-Alter-Med-Pilot-RCT-Mindfulness-training-with-binge-drinkers-13.pdf">Pilot Randomized Trial On Mindfulness Training for Smokers In Young Adult Binge Drinkers</a>. <em>BMC</em> <em>Complementary and</em> <em>Alternative Medicine. </em>13:215-225.</li>
</ul>
<ul>
<li>Goldberg S, Davis JM, Hoyt WT. <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Goldberg-Davis-J-Clin-Psychol-Role-of-therapeutic-alliance-in-mindfulness-interventions-13.pdf">The Role of Therapeutic Alliance In Mindfulness Interventions.</a> (2013) <em>Journal of Clinical Psychology</em>. 69(9): 936–950.</li>
</ul>
<ul>
<li>Liu X, Li R, Lanza ST, Vasilenko S, Piper ME. (2013) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Liu...Piper-Drug-Alcohol-Depend-Understanding-the-role-of-cessation-fatigue-13.pdf">Understanding the Role of Cessation Fatigue in the Smoking Cessation Process.</a> <em>Drug and Alcohol Dependence</em>. 133: 548–555.</li>
</ul>
<ul>
<li>Schlam TR, Baker TB. (2013) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Schlam-_-Baker-_Annu-Rev-Clin-Psychol_-Interventions-for-tobacco-smoking-_-13.pdf">Interventions for Tobacco Smoking.</a> <em>2013 Annual Review of Clinical Psychology.</em> 9: 675-702.</li>
</ul>
<ul>
<li>Fiore MC, Baker TB. (2013) <a href="https://jamanetwork.com/journals/jama/fullarticle/1667068">Should Clinicians Encourage Smoking Cessation for Every Patient Who Smokes?</a> <em>JAMA</em>. 309(10): 1032-1033.</li>
</ul>
<ul>
<li>Smith SS, Keller PA, Kobinsky KH, Baker TB, Fraser DL, Bush T, Magnusson B, Zbikowski SM, McAfee TA, Fiore MC. (2013) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Smith-Keller...Fiore-NTR-Enhancing-quitline-effectiveness-13.pdf">Enhancing Tobacco Quitline Effectiveness: Identifying a Superior Pharmacotherapy Adjuvant.</a> <em>Nicotine & Tobacco Research.</em> 15(3): 713-728.</li>
</ul>
<ul>
<li>Schlam TR, Piper ME, Cook JW, Fiore MC, Baker TB. (2012) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Schlam-Piper...Baker-Ann-Behav-Med-1-year-after-a-quit-attempt-12.pdf">Life One Year After a Quit Attempt: Real-Time Reports of Quitters and Continuing Smokers.</a> <em>Annals of Behavioral Medicine.</em> 44:309–319.</li>
</ul>
<ul>
<li>Kahn R, Gorgon L, Jones K, McSherry F, Glover ED, Anthenelli RM, Jackson T, Williams J, Murtaugh C, Montoya I, Yu E, Elkashef A. (2012) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3281235/pdf/ntr143.pdf">Selegiline Transdermal System (STS) as an Aid for Smoking Cessation.</a><em> Nicotine & Tobacco Research. </em>14(3): 377–382.</li>
</ul>
<ul>
<li>Piper, ME, Kenford S, Fiore MC, Baker TB. (2012) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper_Fiore_-Baker-Ann-Behav-Med-Smoking-cessation-_-quality-of-life-12.pdf">Smoking Cessation and Quality of Life: Changes in Life Satisfaction Over Three Years Following a Quit Attempt.</a> <em>Annals of Behavorial Medicine</em>. 43: 262–270.</li>
<li>Loh W-Y, Piper ME, Schlam TR, Fiore MC, Smith SS, Jorenby DE, Cook JW, Bolt DM, Baker TB. (2012)<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Loh-Piper...Baker-NTR-Should-all-smokers-use-combo-therapy-12.pdf"> Should All Smokers Use Combination Smoking Cessation Pharmacotherapy? Using Novel Analytic Methods to Detect Differential Treatment Effects Over 8 Weeks of Pharmacotherapy.</a> <em>Nicotine and Tobacco Research</em>. 14(2):131-141.</li>
<li>Timms KP, Rivera DE, Collins LM, Piper ME. (2012) <a href="https://www.sciencedirect.com/science/article/pii/S1474667015380496">System Identification Modeling of a Smoking Cessation Intervention.</a> <em>IFAC Proceedings Volumes. </em>45(16):786-791.</li>
</ul>
<ul>
<li>Fiore MC, Baker TB. (2011) <a href="https://www.nejm.org/doi/full/10.1056/NEJMcp1101512"> Treating Smokers in the Health Care Setting.</a> <em>New England Journal of Medicine.</em> 365(13): 1222-1231.</li>
</ul>
<ul>
<li>Japuntich SJ, Leventhal AM, Piper ME, Bolt DM, Roberts LJ, Fiore MC, Baker TB. (2011) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Japuntich...Piper_...Baker-AJPM-Smoker-characteristics-11.pdf">Relations Between Smoker Characteristics and Smoking-Cessation Milestones.</a> <em>American Journal of Preventive Medicine</em>. March 40(3):286-294.</li>
</ul>
<ul>
<li>Hatsukami DK, Jorenby DE, Gonzales D, Rigotti NA, Glover ED, Oncken CA, Tashkin DP, Reus VI, Akhavain RC, Fahim REF, Kessler PD, Niknian M, Kalnik MK, Rennard SI. (2011) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Hatsukami...Jorenby-Clin-Pharm-Ther-Immunogenicity-_-smoking-cessation-11.pdf">Immunogenicity and Smoking Cessation Outcomes for a Novel Nicotine Immunotherapeutic.</a> <em>Journal of Clinical Pharmacy and Therapeutics</em>. 89(3): 392-399.</li>
</ul>
<ul>
<li>Japuntich SJ, Piper ME, Leventhal AM, Bolt DM, Baker TB. (2011) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Japuntich-Piper...Baker-JCCP-Effect-of-five-smoking-cessation-therapies-11.pdf">The Effect of Five Smoking Cessation Pharmacotherapies on Smoking Cessation Milestones. <em>Journal of Consulting and Clinical Psychology</em>.</a> 79(1):34-4.</li>
<li>Minami HM, McCarthy DE, Jorenby DE, Baker TB. (2011) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3059763/pdf/nihms246793.pdf">An Ecological Momentary Assessment Analysis of Relations Among Coping, Affect, and Smoking Lapses.</a> <em>Addiction</em>. 106(3):641-650.</li>
</ul>
<ul>
<li>Gepner AD, Piper ME, Johnson HM, Fiore MC, Baker TB, Stein JH. (2011) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Gepner-Piper...Stein-Am-Heart-J-Effects-of-cessation-on-lipids-11.pdf">Effects of Smoking and Smoking Cessation on Lipids and Lipoproteins: Outcomes from a Randomized Clinical Trial.</a> <em>American Heart Journal</em>. 161(1): 145-151.</li>
<li>Schlam TR, Japuntich SJ, Piper ME, Gloria R, Baker TB, Curtin JJ. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Schlam-Japuntich...Curtin-Psychopharmacol-Cognitive-conflict-11.pdf">Cognitive Conflict Following Appetitive Versus Negative Cues and Smoking Cessation Failure.</a> <em>Psychopharmacology</em>. 214(3): 603-616.</li>
<li>Asthana A, Johnson HM, Piper ME, Fiore MC, Baker TB, Stein JH. (2010) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2937015/pdf/nihms215339.pdf">Effects of Smoking Intensity and Cessation on Inflammatory Markers in a Large Cohort of Active Smokers.</a> <em>American Heart Journal.</em> 160(3): 458-463.</li>
</ul>
<ul>
<li>Piper ME, Cook JW, Schlam TR, Jorenby DE, Baker TB. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper-Cook...Baker-Addiction-Anxiety-diagnosis-in-smokers-seeking-cessation-treatment-10.pdf">Anxiety Diagnoses In Smokers Seeking Cessation Treatment: Relations With Tobacco Dependence, Withdrawal, Outcome and Response to Treatment.</a> <em>Addiction. </em>106: 418–427.</li>
</ul>
<ul>
<li>Schneider KL, Hedeker D, Bailey KC, Cook JW, Spring B. (2010) <a href="https://academic.oup.com/ntr/article/12/4/445/1321358">A Comment on Analyzing Addictive Behaviors Over Time.</a> <em>Nicotine Tob Res. </em>12(4): 445-448.</li>
</ul>
<ul>
<li>Johnson HM, Gossett LK, Piper ME, Aeschlimann SE, Korcarz CE, Baker TB, Fiore MC, Stein JH. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Johnson...Piper_...Stein-J-Am-Coll-Cardiol-Effects-of-smoking-and-cessation-on-endothelial-function-10.pdf">Effects of Smoking and Smoking Cessation on Endothelial Function: 1-Year Outcomes From a Randomized Clinical Trial.</a> <em>Journal of American Cardiology.</em> 55(10): 1988-1995.</li>
</ul>
<ul>
<li>Kobinksy KH, Redmond LA, Smith SS, Yepassis-Zembrou PL, Fiore, MC. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/09/Kobinsky...Smith-Fiore-WMJ-WI-tobacco-quit-line-10-1.pdf">The Wisconsin Tobacco Quit Line’s Fax to Quit Program: Participant Satisfaction and Effectiveness.</a> <em>Wisconsin Medical Journal.</em> 109(2): 79-84.</li>
</ul>
<ul>
<li>Redmond LA, Adsit R, Kobinsky KH, Theobald W, Fiore MC. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/09/Kobinsky...Smith-Fiore-WMJ-WI-tobacco-quit-line-10-1.pdf">Decade of Experience Promoting the Clinical Treatment of Tobacco Dependence in Wisconsin.</a> <em>Wisconsin Medical Journal. </em>109(2):71-78.</li>
</ul>
<ul>
<li>Keller PA, Feltracco A, Bailey LA, Li Z, Niederdeppe J, Baker TB, et al. (2010) <a href="https://www.cdc.gov/pcd/issues/2010/mar/09_0095.htm">Changes in Tobacco Quitlines in the United States, 2005-2006.</a> <em>Preventing Chronical Disease.</em> 7(2): 1-6.</li>
</ul>
<ul>
<li>Halperin AC, Smith SS, Heiligenstein E, Brown D, Fleming MF. (2010) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Halperin-Smith-NTR-Cigarette-smoking-and-associated-health-risk-10.pdf">Cigarette Smoking and Associated Health Risks Among Students at Five Universities.</a> <em>Nicotine and Tobacco Research.</em> 12(2): 96-104.</li>
</ul>
<ul>
<li>Japuntich SJ, Piper M, Schlam TR, Bolt DM, Baker TB. (2009) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Japuntich...Piper_...Baker-Psychol-Assess-Do-smokers-know-what-were-talking-about-09.pdf">Do Smokers Know What We’re Talking About? The Construct Validity of Nicotine Dependence Questionnaire Measures.</a> <em>Psychological Assessment. </em>21(4): 595–607.</li>
<li>LaRowe TL, Piper ME, Schlam TR, Fiore MC, Baker TB. (2009) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/LaRowe-Piper...Baker-Obesity-Obesity-and-smoking-09.pdf">Obesity and Smoking: Comparing Cessation Treatment Seekers with the General Smoking Population.</a> <em>Brief Reports Epidemiology.</em> 17(6): 1301-1306.</li>
<li>Niederdeppe J, Fiore MC, Baker TB, Smith SS. (2008) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Niederdeppe-Fiore...Smith-AJPH-Smoking-cessation-media-campaigns-08.pdf">Smoking Cessation Media Campaigns and Their Effectiveness Among Socioeconomically Advantaged and Disadvantaged Populations.</a> <em>American Journal of Public Health.</em> 98(5): 916-924.</li>
</ul>
<ul>
<li>Fiore MC, Jaén CR, Baker TB, et al. (2008) <a href="https://www.ncbi.nlm.nih.gov/books/NBK63952/"><em>Treating Tobacco Use and Dependence: 2008 Update. Clinical Practice Guideline.</em></a> Rockville, MD: U.S. Department of Health and Human Services. Public Health Service.</li>
</ul>
<ul>
<li>Fiore MC, Baker TB, Bailey WC, et al. (2008) <a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4465757/">A Clinical Practice Guideline for Treating Tobacco Use and Dependence: 2008 Update</a>. <em>American Journal of Preventive Medicine. </em>35(2): 158-176.</li>
</ul>
<ul>
<li>Fiore MC, Jaen CR. (2008) <a href="http://jama.ama-assn.org/cgi/content/full/299/17/2083">A Clinical Blueprint to Accelerate the Elimination of Tobacco Use</a>. <em>JAMA. </em>299(17): 2083-2085.</li>
</ul>
<ul>
<li>Keller PA, Bailey LA, Koss KJ, Baker TB, Fiore MC. (2006) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Keller...Baker-Fiore-AJPM-Organization-financing...Quitlines-07.pdf">Organizations, Financing, Promotion and Cost of U.S. Quitlines, 2004.</a><em> American Journal of Preventive Medicine.</em> 32(1): 32-37.</li>
</ul>
<ul>
<li>Fiore MC, Sims T, Theobald WE. (2006)<a href="https://www.merckmanuals.com/professional/special-subjects/tobacco-use/smoking-cessation"> Smoking cessation. In: <em>Merck Manual</em>,</a> Whitehouse Station, NJ: Merck Research Laboratories. 18: 2733-2736.</li>
</ul>
<ul>
<li>Japuntich SJ, Zehner ME, Smith SS, Jorenby DE, Valdez JA, Fiore MC, Baker TB, Custafson DH. (2006) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Japuntich...Smith_...Baker-NTR-Smoking-cessation-via-the-Internet-06.pdf">Smoking Cessation Via the Internet: A Randomized Clinical Trial of an Internet Intervention as Adjuvant Treatment in a Smoking Cessation Intervention.</a> <em>Nicotine and Tobacco Research. </em>8(1): 59-67.</li>
</ul>
<ul>
<li>McCarthy DE, Piasecki TM, Fiore MC, Baker TB.(2006)<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/McCarthy...Fiore-Baker-JAP-Life-before-and-after-quitting-smoking-06.pdf"> Life Before and After Quitting Smoking: An Electronic Diary Study.</a> <em>Journal of Abnormal Psychology, </em>115(3): 454-466.</li>
<li>Fiore MC, Westman EC. (2004) Update on Smoking Cessation. <em>Patient Care</em>, Oct. : 34-42.</li>
</ul>
<ul>
<li>Kenford SL, Fiore MC. (2004) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Kenford-_-Fiore-Med-Clin-North-Am-Promoting-tobacco-cessation-04.pdf">Promoting Tobacco Cessation and Relapse Prevention.</a> <em>The Medical Clinics of North America.</em> 88: 1553-1574.</li>
</ul>
<ul>
<li>Adsit R, Fraser D, Redmond L, Smith SS, Fiore MC. (2005) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Adsit...Fiore-WMJ-Changing-clinical-practice-05.pdf">Changing Clinical Practice, Helping People Quit: The Wisconsin Cessation Outreach Model.</a> <em>Wisconsin Medical Journal.</em> 104(4): 32-36.</li>
</ul>
<ul>
<li>Perry RJ, Keller PA, Fraser D, Fiore, MC. (2005) <a href="https://pubmed.ncbi.nlm.nih.gov/16117232-fax-to-quit-a-model-for-delivery-of-tobacco-cessation-services-to-wisconsin-residents/">Fax to Quit: A Model for Delivery of Tobacco Cessation Services to Wisconsin Residents.</a> <em>Wisconsin Medical Journal.</em> 104(4): 37-44.</li>
</ul>
<ul>
<li>Sims T, Felz MW. (2004) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Sims-_-Felz-Primary-Care-Using-pharmacotherapy-04.pdf">Using Pharmacotherapy to Treat Tobacco Dependence in Primary Care Settings.</a> <em>Primary Care Report.</em> 10(7): 75 – 86.</li>
</ul>
<ul>
<li>Fiore MC, McCarthy DE, Jackson TC, Zehner ME, Jorenby DE, Mielke M, Smith SS, Guiliani TA, Baker TB. (2004) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Fiore-McCarthy...Baker-Prev-Med-Integrating-smoking-cessation-treatment-04-1.pdf">Integrating Smoking Cessation Treatment into Primary Care: An Effectiveness Study.</a> <em>Preventative Medicine</em>. 38: 412-42.</li>
<li>Piper ME, Fiore MC, Smith SS, Jorenby DE, Wilson JR, Zehner ME, Baker TB. (2003) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper-Fiore...Baker-Mayo-Clin-Proc-Use-of-the-Vital-Sign-Stamp-03.pdf">Use of the Vital Sign Stamp as a System to Promote Smoking Cessation</a>. <em>Mayo Clin Proc. </em>78: 716-722.</li>
<li>Fiore MC, Hatsukami DK, Baker TB. (2002) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Fiore-Hatsukami-Baker-JAMA-Effective-tobacco-dependence-treatment-02.pdf">Effective Tobacco Dependence Treatment.</a> <em>JAMA</em>. 288(14):1768-1771.</li>
<li>Piasecki TM, Fiore MC, McCarthy DE, Baker TB. (2002) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piasecki-Fiore...Baker-Addiction-Have-we-lost-our-way-02.pdf">Have We Lost Our Way? The Need for Dynamic Formulations of Relapse Proneness.</a> <em>Addiction</em>. 97(9):1093-1108.</li>
</ul>
<ul>
<li>Durcan MJ, White J, Jorenby DE, Fiore MC, Rennard SI, Leischow SJ, Nides MA, Ascher JA, Johnston JA. (2002) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Durcan...Jorenby-Fiore-Am-J-Health-Behav-Impact-of-prior-nicotine-replacement-02.pdf">Impact of Prior Nicotine Replacement Therapy on Smoking Cessation Efficacy.</a> <em>American Journal of Health Behavior</em>. 26(3): 213-20.</li>
</ul>
<ul>
<li>Anderson JE, Jorenby DE, Scott WJ, Fiore MC. (2002) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Anderson-Jorenby...Fiore-Chest-Treating-tobacco-use-and-dependence-02.pdf">Treating Tobacco Use and Dependence: An Evidence-based Clinical Practice Guideline for Tobacco Cessation.</a><em> Chest.</em> 121(3):932-41.</li>
</ul>
<ul>
<li>Jorenby DE. (2002) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Jorenby-Drugs-Clinical-efficacy-of-bupropion-02.pdf">Clinical Efficacy of Bupropion in the Management of Smoking Cessation.</a> <em>Drugs</em>. 62(2): 25-35.</li>
</ul>
<ul>
<li>Stein JH, Bushara M, Bushara K, McBride PE, Jorenby DE, Fiore MC. (2002) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Stein...Jorenby-Fiore-Clin-Cardiol-Smoking-cessation-but-not-smoking-reduction-02.pdf">Smoking Cessation, but not Smoking Reduction, Reduces Plasma Homocysteine Levels.</a> <em>Clinical Cardiology</em>. 25(1): 23-6.</li>
</ul>
<ul>
<li>Jamerson BD, Nides M, Jorenby DE, Donahue R, Garrett P, Johnston JA, Fiore MC, Rennard SI, Leischow SJ. (2001) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Jamerson...Jorenby...Fiore-Clin-Ther-Late-term-smoking-cessation-01.pdf">Late-term Smoking Cessation Despite Initial Failure: An Evaluation of Bupropion Sustained Release, Nicotine Patch, Combination Therapy, and Placebo.</a> <em>Clinical Therapy</em>. 23(5):744-52.</li>
</ul>
<ul>
<li>Jorenby DE. (2001) <a href="http://circ.ahajournals.org/content/104/11/e51">Smoking Cessation Strategies for the 21st Century.</a> <em>Circulation</em>. 104(11):51-2.</li>
</ul>
<ul>
<li>Piasecki TM, Baker TB. (2001) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piasecki-and-Baker-NTR-Any-further-progress-in-cessation-01.pdf">Any Further Progress in Smoking Cessation Treatment?</a> <em>Nicotine and Tobacco Research</em>. 3(4):311-23.</li>
</ul>
<ul>
<li>Piper ME, Fox BJ, Fiore MC. (2001) Strategies for Smoking Cessation.<em> Pulmonary and Clinical Care</em> Update Online (CME Program). Lesson 13, Volume 15.</li>
</ul>
<ul>
<li>Fiore MC, Thompson SA, Lawrence DL, Welsch S, Andrews K, Ziarnik M, Korberly B, Englund E, Schensky AE, & Baker TB. (2000) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Fiore...Baker-WMJ-Helping-Wisconsin-women-quit-00.pdf">Helping Wisconsin Women Quit Smoking a Successful Collaboration.</a> <em>Wisconsin Medical Journal</em>. 99(2): 68-72.</li>
</ul>
<ul>
<li>Nielsen K, Fiore MC. (2000) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Fiore-McCarthy...Baker-Prev-Med-Integrating-smoking-cessation-treatment-04-1.pdf">Cost Benefit Analysis of Sustained Release Bupropion Nicotine Patch for Smoking Cessation.</a> <em>Preventive Medicine</em>. 30(3): 209-16.</li>
</ul>
<ul>
<li>Wetter DW, Fiore MC, Young TB, Mcclure JB, De Moor CA, Baker TB. (1999) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/09/Wetter-Fiore...Baker-Exp-Clin-Psychpharm-Gender-differences-in-response-to-nicotine-replacement-therapy-99.pdf">Gender Differences in Response to Nicotine Replacement Therapy: Objective and Subjective Indexes of Tobacco Withdrawal.</a> <em>Experimental and Clinical Psychopharmacology. </em>7(2): 135-144.</li>
</ul>
<ul>
<li>Jorenby DE, Fiore MC, Baker TB. (1999) <a href="https://www.nejm.org/doi/full/10.1056/NEJM199908193410813">Smoking Cessation – Reply.</a> <em>New England Journal of Medicine. </em>341:610-611.</li>
</ul>
<ul>
<li>Aakko E, Piasecki TM, Remington P, Fiore MC. (1999) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Aakko...-Fiore-WMJ-Smoking-cessation-services-99.pdf">Smoking Cessation Services Offered By Health Insurance Plans For Wisconsin State Employees.</a> <em>Wisconsin Medical Journal. </em>98(1): 14-18.</li>
</ul>
<ul>
<li>Majeskie MR, Fiore MC, Baker TB. (1998) Quality In Quantity: In Support Of Consistent, Physician-Delivered Smoking Intervention. <em>Tobacco Control. </em>7(4): 422-423.</li>
</ul>
<ul>
<li>Jorenby DE. (1998) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Jorenby-Curr-Opin-Pulm-Med-New-developments-in-approaches-to-smoking-cessation-98.pdf">New Developments In Approaches to Smoking Cessation</a>. <em>Current Opinions in Pulmonary Medicine. </em>4(2): 103-106.</li>
</ul>
<ul>
<li>Mielke MM, Jorenby DE, Fiore MC. (1997) Achieving Smoking Cessation In Nicotine-Dependent Individuals: Practical Guidelines. <em>CNS Drugs. </em>8(1): 12-20.</li>
</ul>
<ul>
<li>Shi F-Y, Jorenby DE, Fiore MC. (1996) Recent Advances In Smoking and Smoking Cessation. In: Bone RC, Petty TL, eds. <em>Year Book of Pulmonary Disease</em>. St. Louis, MO: Mosby; 67-73.</li>
</ul>
<ul>
<li>Fiore MC, Shi F, Jorenby DE. (1996) Smoking and Smoking Cessation. In: Bone RC, Petty TL, Eds. <em>Yearbook of Pulmonary Disease</em>. St. Louis: Mosby. 67-73.</li>
</ul>
<ul>
<li>Jorenby DE, Fiore MC. (1995) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Jorenby-_-Fiore-Curr-Opin-Pulm-Med-Tobacco-smoking-_-new-developments-95.pdf">Tobacco Smoking and New Developments In Public Health and Clinical Interventions. </a><em>Current Opinion in Pulmonary Medicine. </em>1(2):150-154.</li>
</ul>
<ul>
<li>Lewis SF, Fiore MC. (1995) Smoking Cessation: What Works? What Doesn’t? <em>J Respir Dis. </em>16(5):497-510.</li>
</ul>
<ul>
<li>Woller SC, Smith SS, Piasecki TM, Jorenby DE, Helberg CP, Love RR, Fiore MC. (1995) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Woller-Smith...Fiore-WMJ-Are-clinicians-intervening-95.pdf">Are Clinicians Intervening With Their Patients Who Smoke? A “Real-World” Assessment of 45 Clinics In the Upper Midwest.</a> <em>Wisconsin Medical Journal. </em>94(5): 266-272.</li>
<li>Piasecki TM, Fiore MC. (1995) Smoking and Smoking Cessation. In: Bone RC, Petty TL, Eds. <em>Yearbook of Pulmonary Disease</em>. St. Louis: Mosby; 105-110.</li>
</ul>
<ul>
<li>Fiore MC, Baker TB. (1995) <a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1615314/">Smoking Cessation Treatment and the Good Doctor Club (editorial).</a> <em>Am J Pub Health. </em>85(2):161-163.</li>
</ul>
<ul>
<li>Fiore MC, Piasecki TM, Baker TB. (1995)<a href="http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1759424/pdf/v004p00114.pdf"> Signal and Noise In Minimal Interventions for Smoking Cessation (editorial).</a> <em>Tob Control. </em>4(2):114-116.</li>
</ul>
<ul>
<li>Lewis SF, Fiore MC. (1994) Smoking and Smoking Cessation: Recent Advances In Tobacco Control Research and Smoking Cessation. In: Bone RC, Petty TL, eds. <em>Yearbook of Pulmonary Disease</em>. St. Louis: Mosby; 93-97.</li>
</ul>
<ul>
<li>Fiore MC. <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/09/Fiore-J-Clin-Pharmacol-Treatment-options-for-smoking-in-the-90s-94.pdf">Treatment Options for Smoking In the ’90s.</a> (1994) <em>J Clin Pharmacol. </em>34(3): 195-199.</li>
</ul>
<ul>
<li>Fiore MC. (1994) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Fiore-Monaldi-Arch-Chest-Dis-How-to-prevent-progression-of-chronic-bronchitis-94.pdf">How To Prevent The Progression of Chronic Bronchitis: The Role of Smoking Cessation and Prevention.</a> <em>Monaldi Arch Chest Dis. </em>49 (3 (Suppl. 1)):13-16.</li>
</ul>
<ul>
<li>Lewis SF, Fiore MC. (1994) Recent Advances In Smoking and Smoking Cessation: In: Bone RC, Petty TL, eds. <em>Yearbook of Pulmonary Disease</em>. St. Louis: Mosby.</li>
</ul>
<ul>
<li>Fiore MC, Jorenby DE. (1992) Optimizing Nicotine-Dependence Treatment: A Role for Inpatient Programs. <em>Mayo Clin Proc. </em>67(9): 901-902.</li>
</ul>
<ul>
<li>Fiore MC, Jorenby DE, Baker TB, Kenford SL. (1992) Tobacco Dependence and the Nicotine Patch. Clinical Guidelines for Effective Use. <em>JAMA. </em>268(19): 2687-2694.</li>
</ul>
<ul>
<li>Fiore MC. (1992) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Fiore-Med-Clin-North-Am-Trends-in-cigarette-smoking-92.pdf">Trends In Cigarette Smoking In the United States. The Epidemiology of Tobacco Use.</a> <em>Med Clin North Am. </em>76(2): 289-303.</li>
</ul>
<ul>
<li>Baker TB, Fiore MC. (1992) Elvis is Alive, the Mafia Killed JFK, and Smoking is Good for You. <em>PsycCRITIQUES. </em>37(10):1014-1016.</li>
</ul>
<ul>
<li>Lawrence WF, Smith SS, Baker TB, Fiore MC. (1998) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Lawrence-Smith...Fiore-Tob-Control-Does-over-the-counter-nicotine-replacement-therapy-98.pdf">Does Over-The-Counter Nicotine Replacement Therapy Improve Smokers’ Life Expectancy?</a> <em>Tob Control. </em>7(4):364-368.</li>
</ul>
<ul>
<li>Lewis SF, Piasecki TM, Fiore MC, Anderson JE, Baker TB. (1998) <a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Lewis...Fiore_...Baker-Prev-Med-Transdermal-nicotine-replacement-98.pdf">Transdermal Nicotine Replacement For Hospitalized Patients: A Randomized Clinical Trial.</a> <em>Prev Med. </em>27(2):296-303.</li>
</ul>
</div>
</div>
<h2 class=""><button class="uw-accordion-header" type="button" aria-expanded="false" id="uw-accordion-header-110252" aria-controls="uw-accordion-panel-110252"><svg viewBox="0 0 10 10" focusable="false" aria-hidden="true"><rect class="vert" width="2" height="8" y="1" x="4"></rect><rect width="8" height="2" y="4" x="1"></rect></svg>
Dementia & Tobacco Use </button></h2>
<div class="uw-accordion-panel -uw-accordion-is-hidden" role="region" aria-hidden="true" id="uw-accordion-panel-110252" aria-labelledby="uw-accordion-header-110252">
<div class="uw-accordion-panel-inner uw-clearfix">
<ul>
<li>Gleason CE, Zuelsdorff M, Gooding DC, Kind AJH, Johnson AL, James TT, Lambrou NH, Wyman MF, Ketchum FB, Gee A, Johnson SC, Bendlin BB, Zetterberg H. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/34870885/">Alzheimer’s Disease Biomarkers in Black and Non-Hispanic White Cohorts: A Contextualized Review of the Evidence</a>. Alzheimer’s & Dementia: <em>The Journal of the Alzheimer’s Association</em>. Online Dec. 6, 2021.</li>
<li>Johnson AL, Nystrom NC, Piper ME, Cook J, Norton DL, Zuelsdorff M, Wyman MF, Benton SF, Lambrou NH, O’Hara J, Chin NA, Asthana S, Carlsson C, Gleason CE. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/33646160/">Cigarette Smoking Status, Cigarette Exposure, and Duration of Abstinence Predicting Incident Dementia and Death</a>: A Multistate Model Approach. <em>Journal of Alzheimer’s Disease</em>. Online February 19, 2021.</li>
<li>Wyman MF, Voils CI, Gleason CE, Trivedi R, Umucu E, Johnson AL, Zuelsdorff M. (2020) <a href="https://www.tandfonline.com/doi/abs/10.1080/02701960.2020.1764356">Perspectives of Veterans Affairs Mental Health Providers on Working with Older Adults with Dementia and Their Caregivers.</a> <em>Gerontology & Geriatrics Research</em>. Online May 18, 2020.</li>
</ul>
</div>
</div>
<h2 class=""><button class="uw-accordion-header" type="button" aria-expanded="false" id="uw-accordion-header-885714" aria-controls="uw-accordion-panel-885714"><svg viewBox="0 0 10 10" focusable="false" aria-hidden="true"><rect class="vert" width="2" height="8" y="1" x="4"></rect><rect width="8" height="2" y="4" x="1"></rect></svg>
Dependence/ Withdrawal/ Relapse/ Biology </button></h2>
<div class="uw-accordion-panel -uw-accordion-is-hidden" role="region" aria-hidden="true" id="uw-accordion-panel-885714" aria-labelledby="uw-accordion-header-885714">
<div class="uw-accordion-panel-inner uw-clearfix">
<ul>
<li>Morriss J, Bradford DE, Wake S, Biagi N, Kaye JT, Joormann J (2021). <a href="https://www.sciencedirect.com/science/article/pii/S0301051121002167?via%3Dihub">Intolerance of Uncertainty and Physiological Responses During Instructed Uncertain Threat: A Multi-Lab Investigation</a>. <em>Biological Psychology</em>. 2021 Nov 14;108223.</li>
<li>Cofresí RU, Kohen C, Motschman C, Wiers RW, Piasecki TM, Bartholow BD. (2021) <a href="https://onlinelibrary.wiley.com/doi/10.1111/add.15728">Approach Bias to Alcohol Cues in Lower-Sensitivity Drinkers: Event-Related Potentials Implicate Response Conflict and Stimulus Significance</a>. <em>Addiction</em>.</li>
<li>Hua JPY, de Lange SC, van den Heuvel MP, Boness CL, Trela CJ, McDowell YE, Merrill AM, Piasecki TM, Sher KJ, Kerns JG. <a href="https://pubmed.ncbi.nlm.nih.gov/34861495/">Alcohol Use in Emerging Adults Associated with Lower Rich-Club Connectivity and Connectome Network Disorganization</a><em>. Drug and Alcohol Dependence</em>. 230, 109198.</li>
<li>Dash GF, Martin NG, Slutske WS. (2021) <a href="https://psycnet.apa.org/doiLanding?doi=10.1037%2Fadb0000793">Big Five Personality Traits and Illicit Drug Use: Specificity In Trait–Drug Associations</a>. <em>Psychology of Addictive Behaviors</em>. November 11, 2021.</li>
<li>Smith SS, Piper ME, Bolt DM, Kaye JT, Fiore ME, Baker TB. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/33779203/">Revision of the Wisconsin Smoking Withdrawal Scale: Development of Brief and Long Forms</a>. Vol. 33, No. 3, 255–266.</li>
<li>Hammond D, Reid JL, Rynard VL, O’Connor R, Goniewicz ML, McNeill A, Piper ME, Bansal-Travers. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/33526441/">Indicators of Dependence and Efforts to Quit Vaping and Smoking Among Youth in Canada, England, and the United States</a>. <em>Tobacco Control</em>.</li>
<li>Lydon-Staley DM, Leventhal AM, Piper ME, Schnoll RA, Bassett DS. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/33252918/">Temporal Networks of Tobacco Withdrawal Symptoms During Smoking Cessation Treatment</a>. <em>Journal of Abnormal Psychology</em>. 2021 Jan;130(1):89-101.</li>
<li>Buu A, Cai Z, Li R, Wong S-W, Lin H-C, Su W-C, Jorenby DE, Piper ME. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/33758949/">Validating E-cigarette Dependence Scales Based on Dynamic Patterns of Vaping Behaviors</a>. <em>Nicotine and Tobacco Research</em>.</li>
<li>Piirtola M, Kaprio J, Baker TB, Piasecki TM, Piper ME, Korhonen T. (2021) <a href="https://onlinelibrary.wiley.com/doi/full/10.1111/add.15390">The Associations of Smoking Dependence Motives with Depression Among Daily Smokers</a>. <em>Addiction</em>. Online 24 February 2021.</li>
<li>Klemperer EM, Hughes JR, Peasley-Miklus CE, Callas PW, Cook JW, Streck JM, Morley NE. (2021) <a href="https://pubmed.ncbi.nlm.nih.gov/32188995/">Possible New Symptoms of Tobacco Withdrawal III: Positive Affect- A Meta-Analysis</a>. <em>Nicotine and Tobacco Research</em>. 2021 Jan 22;23(2):259-266.</li>
<li>Schlam TR, Baker TB, Smith SS, Bolt DM, McCarthy DE, Cook JW, Hayes-Birchler T, Fiore MC, Piper ME. <a href="https://academic.oup.com/ntr/article/22/11/2051/5864802">Electronically Monitored Nicotine Gum Use Before and After Smoking Lapses: Relations with Lapse and Relapse</a>. <em>Nicotine and Tobacco Research</em>. Online June 2020.</li>
<li>Buu A, Cai Z, Li R, Wong SW, Lin HC, Su WC, Jorenby DE, Piper ME. (2020) <a href="https://www.sciencedirect.com/science/article/pii/S0376871620305068#:~:text=This%20implies%20that%20the%20association,differ%20across%20the%20two%20groups.&text=Such%20findings%20would%20suggest%20that,of%20longer%2Dterm%20cigarette%20dependence.">The Association Between Short-Term Emotion Dynamics and Cigarette Dependence: A Comprehensive Examination of Dynamic Measures</a>. <em>Drug and Alcohol Dependence. </em></li>
<li>
<div class="citation-text" data-citation-style="nlm">Piper ME, Baker TB, Mermelstein R, Benowitz N, Jorenby DE. (2020) <a href="https://pubmed.ncbi.nlm.nih.gov/32955271/">Relations Among Cigarette Dependence, E-cigarette Dependence, and Key Dependence Criteria Among Dual Users of Combustible and E-cigarettes.</a> <em>Psychology of Addictive Behaviors. </em></div>
</li>
<li>Piper ME, Brown DC, Hendershot TP, Swan GE. PhenX Host: Social/Cognitive Measures for Tobacco Regulatory Research. <em>Tobacco Control</em>. 2020;29<strong>:</strong>s5-s12. [<a href="https://tobaccocontrol.bmj.com/content/29/Suppl_1/s5">Full text</a>]</li>
<li>Lydon-Staley DM, Leventhal AM, Piper ME, Schnoll RA, & Bassett DS. (2019) <a href="https://psyarxiv.com/t2a9q/">More Than the Sum of Its Parts: A Network Perspective on Tobacco Withdrawal</a>. <em>Journal of Abnormal Psychology</em>. November 5, 2019.</li>
<li>Johnson AL, Kaye J, Baker TB, Fiore MC, Cook JW, Piper ME. Psychiatric Comorbidities In a Comparative Effectiveness Smoking Cessation Trial: Relations with Cessation Success, Treatment Response, and Relapse Risk Factors. <em>Drug and Alcohol Dependence</em>. 2019. [<a href="https://www.sciencedirect.com/science/article/pii/S0376871619305733">Full text</a>]</li>
<li>Garey L, Manning K, McCarthy DE, Gallagher MW, Shepherd JM, Orr MF, Schmidt NB, Rodic B, Zvolensky MJ. Understanding Quit Patterns from a Randomized Clinical Trial: Latent Classes, Predictors, and Long-Term Abstinence. <em>Addictive Behaviors</em>. 2019. [<a href="https://www.sciencedirect.com/science/article/pii/S030646031831181X?via%3Dihub">Full text</a>]</li>
<li>Engle J, Jorenby D, Collins L, Baker, T, Schlam T, Cook J, Piper M, Mermelstein R, Smith S. Effects of Motivation Phase Intervention Components on Quit Attempts in Smokers Unwilling to Quit; A Factorial Experiment. <em>Drug and Alcohol Dependence</em>. 2019;197:149-157. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/30825795">Abstract</a>]</li>
<li>Schlam TR, Baker TB, Smith SS, Cook JW, Piper ME. Anxiety Sensitivity and Distress Tolerance in Smokers: Relations with Tobacco Dependence, Withdrawal, and Quitting Success. <em>Nicotine and Tobacco Research</em>. 2019. [<a href="https://academic.oup.com/ntr/advance-article/doi/10.1093/ntr/ntz070/5485919?guestAccessKey=a2ad1179-6014-4a0a-ab41-0f4a9f2c39ee">Full text</a>]</li>
<li>McCarthy DE, Minami H, Bold K, Yeh V, Chapman G. Momentary Assessment of Impulsive Choice and Impulsive Action: Reliability, Stability, and Correlates. <em>Addictive Behaviors</em>. 2018 Aug;83:130-135. Epub 2017 Nov 22. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=Momentary+Assessment+of+Impulsive+Choice+and+Impulsive+Action%3A+Reliability%2C+Stability%2C+and+Correlates">Abstract</a>]</li>
<li>McCarthy DE, Cook JW, Leyro TM, Minami H, Bold KW. (2018). Affective Determinants of Smoking. Invited chapter in D. M. Williams, R. E. Rhodes, & M. T. Conner (Eds.) <u>Affective Determinants of Health-Related Behavior</u><em>. </em>New York: Oxford University Press. pp. 286-310. [<a href="https://global.oup.com/academic/product/affective-determinants-of-health-behavior-9780190499037?cc=us&lang=en&">Abstract]</a></li>
<li>Glasheen, C, Johnson EO, Saccone NL, Lutz SM, Baker TB, McNeil DW, Marazita ML, Hokanson JE, Bierut LJ, Hancock DB. Is the Fagerström Test for Nicotine Dependence Invariant Across Secular Trends in Smoking? A Question for Cross-Birth Cohort Analysis of Nicotine Dependence. Drug and Alcohol Dependence. 2018 Feb 6;185:127-132. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=Is+the+Fagerstr%C3%B6m+Test+for+Nicotine+Dependence+Invariant+Across+Secular+Trends+in+Smoking%3F+A+Question+for+Cross-Birth+Cohort+Analysis+of+Nicotine+Dependence">Abstract</a>]</li>
<li>Burgess-Hull A, Roberts L, Piper M, Baker T. The Social Networks of Smokers Attempting to Quit: An Empirically Derived and Validated Classification. Psychology of Addictive Behaviors. 2018 Feb;32(1):64-75. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=The+Social+Networks+of+Smokers+Attempting+to+Quit%3A+An+Empirically+Derived+and+Validated+Classification">Abstract</a>]</li>
<li>Chen L-S, Zawertaillo L, Piasecki TM, Kapiro J, Foreman M, Elliott HR, David SP, Bergen AW, Baurley JW, Tyndale RF, Baker TB, Bierut LJ, Saccone NL. Leveraging Genomic Data In Smoking Cessation Trials In the Era of Precision Medicine: Why and How. <em>Nicotine and Tobacco Research</em>. 2018;20(4):414-424. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=Leveraging+Genomic+Data+In+Smoking+Cessation+Trials+In+the+Era+of+Precision+Medicine%3A+Why+and+How">Abstract</a>]</li>
<li>Cook JW, Lanza ST, Wanghuan C, Baker TB, Piper ME. Anhedonia: Its Dynamic Relations with Craving, Negative Affect, and Treatment During a Quit Smoking Attempt. <em>Nicotine and Tobacco Research</em>. 2017 June 1;19(6):703-709. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=Anhedonia%3A+Its+Dynamic+Relations+with+Craving%2C+Negative+Affect%2C+and+Treatment+During+a+Quit+Smoking+Attempt">Abstract</a>]</li>
<li>Baker TB, Smith SS, Bolt DM, Loh W-Y, Mermelstein R, Fiore MC, Piper ME, Collins LM. Implementing Clinical Research Using Factorial Designs: A Primer. Behavioral Therapy. 2017 Jul;48(4):567-580. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/28577591">Abstract</a>]</li>
<li>Mathew AR, Hogarth L, Leventhal AM, Cook JW, & Hitsman, B. Cigarette Smoking and Depression Comorbidity: Systematic Review and Proposed Theoretical Model. <em>Addiction</em>. 2017;112(3):401-412. [<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC5296249/pdf/nihms816386.pdf">Full text</a>]</li>
<li>Mathew AR, Hogarth L, Leventhal AM, Cook JW, & Hitsman B. Cigarette Smoking and Depression Comorbidity: Targeted Review & Conceptual Model. <em>Addiction</em>. 2017. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Mathew...Cook-Addiction-Cigarette-smoking-and-depression-comorbidity-16.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Bold KW, Witkiewitz K, McCarthy DE. Multilevel Factor Analysis of Smokers’ Real-Time Negative Affect Ratings While Quitting. <em>Psychological Assessment</em>, Vol 28(9), Sep 2016, 1033-1042. [<a href="http://dx.doi.org/10.1037/pas0000305">Abstract</a>]</li>
</ul>
<ul>
<li>McCarthy DE, Ebssa L, Witkiewitz K, Shiffman S. Repeated Measures Latent Class Analysis of Daily Smoking in Three Smoking Cessation Studies. Drug and Alcohol Dependence. Online June 6, 2016. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/?term=Repeated+Measures+Latent+Class+Analysis+of+Daily+Smoking+in+Three+Smoking+Cessation+Studies">Full text</a>]</li>
</ul>
<ul>
<li>Hendricks PS, Hall SM, Tyus LR, Thorne CB, Lappan SN, McMurray MV, Bailey WC, Cropsey KL, Baker TB. Withdrawal Exposure and Withdrawal Regulation Training for Smoking Cessation: A Randomized Controlled Pilot Trial. Drug and Alcohol Dependence. 2016;164:28-37. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Hendricks...Baker-Drug-Alcohol-Depend-Withdrawal-exposure-16.pdf">Full text</a>]</li>
<li>Rojewski AM, Baldassarri S, Cooperman NA, Gritz ER, Leone FT, Piper ME, Toll BA, & Warren GW on behalf of the Comorbidities Workgroup of the Society for Research on Nicotine and Tobacco (SRNT) Treatment Network. Receipt of Evidence-Based Brief Cessation Interventions by Health Professionals and Use of Cessation Assisted. Nicotine & Tobacco Research. Online February 2016. [<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4751655/">Full text</a>]</li>
<li>Bold KW, McCarthy DE, Minami H, Yeh VM, Chapman GB, Waters AJ. Independent and Interactive Effects of Real-Time Risk Factors on Later Temptations and Lapses Among Smokers Trying to Quit. <em>Drug and Alcohol Dependence</em>. 2016;158:30-37. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Bold-McCarthy-Drug-Alcohol-Depend-Independent-and-interactive-effects-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>McCarthy DE, Bold KW, Minami H, Yeh VM. A Randomized Clinical Trial of a Tailored Behavioral Smoking Cessation Preparation Program. <em>Behaviour Research and Therapy</em>. 2016 March;78:19-29. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/McCarthy-Behav-Res-Ther-A-randomized-clinical-trial-of-a-tailored-behavioral-smoking-cessation-preparation-program-16.pdf">Full text</a>]</li>
</ul>
<ul>
<li>McCarthy DE, Bold KW, Minami H, Yeh VM, Rutten E, Nadkarni S, Chapman GB. Reliability and Validity of Measures of Impulsive Choice and Impulsive Action in Smokers Trying to Quit. <em>Experimental and Clinical Psychopharmacology</em>. January 2016. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/McCarthy-Exp-Clin-Psychopharmacol-Reliability-and-validity-of-measures-16.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Piper ME, Fiore MC, Smith SS, Fraser D, Bolt DM, Collins LM, Mermelstein R, Schlam TR, Cook JW, Jorenby DE, Loh W-Y, Baker TB. Identifying Effective Intervention Components for Smoking Cessation: A Factorial Experiment. Addiction. Online November 2015. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper-Addiction-Identifying-effective-intervention-components-for-smoking-cessation-16.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Baker TB, Collins LM, Mermelstein R, Bolt DM, Piper ME, Smith SS, Jorenby DE, Fraser D, Cook JW, Schlam TR, Loh W-Y, Theobald WE, Fiore MC. Enhancing the Effectiveness of Smoking Treatment Research: Conceptual Bases and Progress. Addiction. Online November 2015. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Baker-Addiction-Enhancing-the-effectiveness-of-smoking-treatment-research-16.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Guillot CR, Stone MD, Geary BA, Kirkpatrick MG, Tidey JW, Cook JW, Leventhal AM. Pharmacological, Sensorimotor, and Expectancy Effects on Tobacco Withdrawal: A Preliminary Study. Human Psychopharmacology. Online 2015 May. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Guillot...Cook-Hum-Psychopharmacol-Pharmacological-sensorimotor-and-expectancy-effects-on-tobacco-withdrawal-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Piper ME. Withdrawal: Expanding a Key Addiction Construct. <em>Nicotine and Tobacco Research</em>. Online 2015. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper-NTR-Withdrawal-Expanding-a-key-addiction-construct-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Mathew AR, Cook JW, Japuntich S, Leventhal A. Post-Traumatic Stress Disorder Symptoms, Underlying Affective Vulnerabilities, and Smoking for Affect Regulation. <em>The American Journal of Addictions</em>. 2015 Jan;24(1):39-46. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Mathew-Cook-Japuntich-Am-J-Addict-Post-traumatic-stress-disorder-symptoms-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Berg KM, Piper ME, Smith SS, Fiore MC, Jorenby DE. Defining and Predicting Short-Term Alcohol Use Changes During a Smoking Cessation Attempt. <em>Addictive Behaviors</em>. Online 2015 April 29; 48:52-7. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Berg-Piper...Jorenby-Addict-Behav-Defining-and-predicting-short-term-alcohol-use-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>McCarthy, D. E., Ebssa, L., Witkiewitz, K., & Shiffman, S. Paths to Tobacco Abstinence: A Repeated Measures Latent Class Analysis. Online 2015. <em>Journal of Consulting and Clinical Psychology</em>. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/McCarthy...Shiffman-JCCP-Paths-to-tobacco-abstinence-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Bradford DE, Curtin JJ, Piper ME. Anticipation of Smoking Sufficiently Dampens Stress Reactivity In Nicotine Deprived Smokers. <em>Journal of Abnormal Psychology</em>. 2015;124(1)128-36. []</li>
</ul>
<ul>
<li>Lanza ST, Piper ME, Shiffman S. New Methods for Advancing Research on Tobacco Dependence Using Ecological Momentary Assessment. <em>Nicotine & Tobacco Research</em>. 16 Supplement 2, S71-72. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Lanza-Piper-NTR-ecological-momentary-assessments-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Baker TB, McFall RM. The Promise of Science Based Training and Application In Psychological Clinical Science.<em>Psychotherapy</em>. 2014 Dec;51(4):482-6. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Baker-and-McFall-Psychotherapy-The-promise-of-science-based-training-and-application-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Cook JW, Piper ME, Leventhal AM, Schlam TR, Fiore MC, Baker TB. Anhedonia as a Component of the Tobacco Withdrawal Syndrome. <em>Journal of Abnormal Psychology. </em>2014 November. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Cook-Piper-J-Abnorm-Psychol-Anhedonia-as-a-component-of-tobacco-withdrawal-syndrome-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Treloar HR, Piasecki TM, McCarthy DE, Baker TB. Relations Among Caffeine Consumption, Smoking, Smoking Urge, and Subjective Smoking Reinforcement in Daily Life. <em>Journal of Caffeine Research</em>. 2014 Sep;4(3):93-99. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Treloar...Baker-J-Caffeine-Res-Relations-among-caffeine-consumption-_-smoking-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Timms KP, Rivera DE, Collins LM, Piper ME. Continuous-time System Identification of a Smoking Cessation Intervention. <em>International Journal of Control</em>. 2014;87(7):1423-1437. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Timms...Collins-Piper-Int-J-Control-Continuous-time-system-identification-of-cessation-intervention-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Collins LM, Trail JB, Kugler KC, Baker TB, Piper ME, & Mermelstein RJ. (2013). Evaluating Individual Intervention Components: Making Decisions Based on the Results of a Factorial Screening Experiment. <em>Translational Behavioral Medicine. </em>2013 November. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/12/Collins...Baker_...Mermelstein-TBM-Evaluating-individual-intervention-components-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Smith SS, Fiore MC, Baker TB. Smoking Cessation in Smokers Who Smoke Menthol and Non-Menthol Cigarettes. <em>Addiction. </em>Published first online by Wiley, June 2014. [<a href="http://onlinelibrary.wiley.com/doi/10.1111/add.12661/abstract">Full text</a>]</li>
</ul>
<ul>
<li>Stein JH, Asthana A, Smith SS, Piper ME, Loh WY, Fiore MC, Baker TB. Smoking Cessation and the Risk of Diabetes Mellitus and Impaired Fasting Glucose: Three-Year Outcomes After a Quit Attempt. PLoS One. 2014 Jun 3;9(6):e98278. doi: 10.1371/journal.pone.0098278. eCollection 2014. [<a href="http://www.plosone.org/article/info%3Adoi/10.1371/journal.pone.0098278">Full text</a>]</li>
</ul>
<ul>
<li>Vasilenko SA, Piper ME, Lanza ST, Xiaoyu L, Yang J, & Li, R. Time-Varying Processes Involved In Smoking Relapse In a Randomized Trial of Smoking Cessation Therapies. <em>Nicotine and Tobacco Research</em>. 2014 May;16 Supplement. 2:S135-43. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Timms...Collins-Piper-Int-J-Control-Continuous-time-system-identification-of-cessation-intervention-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Timms KP, Rivera DE, Collins LM, Piper ME. A Dynamical Systems Approach to Understanding Self-Regulation in Smoking Cessation Behavior Change. <em>Nicotine & Tobacco Research</em>. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Timms...Piper-NTR-A-dynamical-systems-approach-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Bold KW, Rasheed AS, McCarthy DE, Jackson TC, Fiore MC, Baker TB. Rates and Predictors of Renewed Quitting After Relapse During a One-Year Follow-Up Among Primary Care Patients. <em>Annals of Behavioral Medicine. </em>May 2014, online first. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Bold...McCarthy-Ann-Behav-Med-Rates-and-predictors-of-renewed-quitting-after-relapse-15.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Trail JB, Collins LM, Rivera DE, Li R, Piper ME, Baker TB. Functional Data Analysis for Dynamical System Indentification of Behavioral Processes. <em>Psychological Methods. </em>Epub in 2013. In print 2014;19(2):175-87. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Trail...Collins-PiperBaker-Psychol-Methods-Functional-data-analysis-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Leventhal AM, Piper ME, Japuntich SJ, Baker TB, Cook JW. Anhedonia, Depressed Mood, and Smoking Cessation Outcome. <em>Journal of Consulting Clinical Psychology</em>. Epub: November 2013. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Leventhal-Piper...Cook-JCCP-Anhedonia-depressed-mood-and-smoking-cessation-outcome-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Lanza ST, Vasilenko S, Liu X, Li R, Piper M. Advancing the Understanding of Craving During Smoking Cessation Attempts: A Demonstration of the Time-Varying Effect Model. <em>Nicotine and Tobacco Research</em>. August 24, 2013. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Lanza...Piper-NTR-Advancing-the-understanding-of-craving-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Deiches JF, Baker TB, Lanza F, Piper ME. Early Lapses in a Cessation Attempt: Lapse Contexts, Cessation Success, and Predictors of Early Lapse. <em>Nicotine and Tobacco Research</em>. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Deiches-Baker...Piper-NTR-Early-lapses-in-a-cessation-attempt-13.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Kim, S-Y, Mun E-Y, Smith S. Using Mixture Models With Known Class Membership to Address Incomplete Covariance Structures In Multiple-Group Growth Models. <em>British Journal of Mathematical and Statistical Psychology</em>. 2014;67:94-116. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Kim-Mun-Smith-Br-J-Math-Stat-Psychol-Using-mixture-models-14.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Belsky D, Moffitt TE, Baker TB, Biddle AK, Evans JP, Harrington HL, Houts R, Meier M, Sugden K, Williams B, Poulton R, Caspi A. Polygenic Risk Accelerates the Developmental Progression to Heavy, Persistent Smoking and Nicotine Dependence: Evidence from a 4-Decade Longitudinal Study. <em>JAMA Psychiatry</em>. [<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3644004/">Full text</a>]</li>
</ul>
<ul>
<li>Piper ME, Rodock M, Cook JW, Schlam TR., Fiore MC, Baker TB. Psychiatric Diagnoses Among Quitters Versus Continuing Smokers 3 Years After Their Quit Day. <em>Drug and Alcohol Dependence. </em>2013 Feb 1;128(1-2):148-54. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper...Cook_...Baker-_-_Drug-Alcohol-Depend-Psychiatric-diagnoses-among-quitters-versus-continuing-smokers-_-13.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Oliveira Junior BL, Jardim JR, Nascimento OA, Souza GM, Baker TB, Santoro IL. Translation, Cross-Cultural Adaptation, and Reproducibility of the Brazilian Portuguese-language Version of the Wisconsin Smoking Withdrawal Scale. <em>Jornal Brasileiro de Pneumologia</em>. Nov-Dec 2012;38(6):716-723.</li>
</ul>
<ul>
<li>Yeh VM, McCarthy DE, Baker TB. An ecological momentary assessment study of pre-quit markers for smoking cessation failure.<em> Experimental and Clinical Psychopharmacology</em>. 2012; 14(10):1170-9. [<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3457709/pdf/nts005.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Sims TH, McAfee T, Fraser DL, Baker TB, Fiore MC, Smith SS. Quitline Cessation Counseling for Young Adult Smokers: A Randomized Clinical Trial. Nicotine & Tobacco Research. Oct. 18, 2012. [<a href="http://ntr.oxfordjournals.org/content/early/2012/10/15/ntr.nts227.full?keytype=ref&ijkey=4BExezzMJmpkLQU">Full text</a>]</li>
</ul>
<ul>
<li>Leventhal AM, Japuntich SJ, Piper ME, Jorenby DE, Schlam TR, Baker TB. Isolating the Role of Psychological Dysfunction in Smoking Cessation Failure: Relations of Personality and Psychopathology to Attaining Smoking Cessation Milestones. <em>Psychology of Addictive Behaviors</em>. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Leventhal-Japuntich...Baker-Psychol-Addict-Behav-Isolating-the-role-12.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Cook JW, Fucito L, Piasecki TM, Fleming M, Piper ME, Schlam TR, Berg K, Baker TB. Relations of Alcohol Consumption With Smoking Cessation Milestones and Tobacco Dependence. <em>Journal of Consulting and Clinical Psychology.</em> [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Cook...Piper-JCCP-Relations-of-alcohol-consumption-with-smoking-cessation-milestones-12.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Baker TB, Piper ME, Schlam TR, Cook JW, Smith SS, Loh W-Y, Bolt DM. Are Tobacco Dependence and Withdrawal Related Amongst Heavy Smokers? Relevance to Conceptions of Dependence. <em>Journal of Abnormal Psychology.</em> [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Baker-Piper...Bolt-JAP-Are-tobacco-dependence-and-withdrawal-related-12.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Bolt DM, Piper ME, Theobald WE, Baker TB. Why Two Smoking Cessation Agents Work Better Than One: Role of Craving Suppression. <em>Journal of Consulting and Clinical Psychology</em>. 2012;80(1):54-65. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Bolt-Piper-JCCP-Why-two-smoking-cessation-agents-work-better-than-one-12.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Baker TB, Breslau N, Covey L, Shiffman, S. DSM Criteria for Tobacco Use Disorder and Tobacco Withdrawal: A Critique and Proposed Revision for DSM-5. <em>Addiction. </em>2012;107(2):263-75. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Baker-Addiction-DSM-criteria-for-tobacco-use-disorder-and-tobacco-withdrawal-12.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Smith SS. Tobacco and Nicotine Dependence (chapter). In Rippe, J. M. (Ed.) Encyclopedia of Lifestyle Medicine and Health. Ed. James M. Rippe, MD. Thousand Oaks, CA: SAGE, 2012. 2707-18. [<a href="https://www.amazon.com/Encyclopedia-Lifestyle-Medicine-Health-James/dp/1412950236">Purchase</a>]</li>
<li>Hughes JR, Baker TB, Breslau N, Covey L, Shiffman S. Applicability of DSM Criteria to Nicotine Dependence (commentary). <em>Addiction</em>. 2011;106:894-5. [<a href="http://onlinelibrary.wiley.com/doi/10.1111/j.1360-0443.2010.03281.x/pdf">Full Text</a>]</li>
</ul>
<ul>
<li>Piper ME, Schlam TR, Cook JW, Sheffer MA, Smith SS, Loh W-Y, Bolt DM, Kim SY, Kaye JT, Hefner KR, Baker TB. Tobacco Withdrawal Components and Their Relations With Cessation Success. <em>Psychopharmacology</em>. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper-Schlam...Baker-Psychopharmacol-Tobacco-withdrawal-components-11.pdf">Full text</a>]</li>
</ul>
<ul>
<li>McCarthy DE, Baker TB, Minami HM, Yeh V. Applications of Contemporary Learning Theory in the Treatment of Drug Abuse. Invited chapter in S. Reilly and T. R. Schachtman (Eds.), <em>Associative Learning and Conditioning: Human and Animal Applications.</em> New York: Oxford University Press. [<a href="http://www.oxfordscholarship.com/view/10.1093/acprof:oso/9780199735969.001.0001/acprof-9780199735969-chapter-011">Chapter summary</a>]</li>
</ul>
<ul>
<li>Minami H, McCarthy DE, Jorenby DE, Baker TB. An Ecological Momentary Assessment Analysis of Relations Among Coping, Affect, and Smoking Lapses. <em>Addiction</em>. 2011 Mar;106(3):641-50. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Minami-McCarthy-Jorenby-Addiction-Ecological-momentary-assessment-analysis-11.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Piper ME, Cook JW, Schlam TR, Jorenby DE, Baker TB. Anxiety Diagnoses in Smokers Seeking Cessation Treatment: Relations with Tobacco Dependence, Withdrawal, Outcome, and Response to Treatment. <em>Addiction.</em>2011 Feb;106(2):418-27. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piper-Cook...Baker-Addiction-Anxiety-diagnosis-in-smokers-seeking-cessation-treatment-10.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Gustafson DH, Shaw B, Isham A, Baker T, Boyle M, Levy M. Explicating an Evidence-Based, Theoretically Informed, Mobile Technology-Based System to Improve Outcomes for People In Recovery for Alcohol Dependence. <em>Substance Use & Misuse. </em>2011;46(1):96-111. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Gustafson...Baker-Subst-Use-Misuse-Explicating-an-evidence-based...mobile-technology-11.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Collins LM, Baker TB, Mermelstein RJ, Piper ME, Jorenby DE, Smith SS, Schlam TR, Cook JW, Fiore MC. The Multiphase Optimization Strategy for Engineering Effective Tobacco Use Interventions. <em>Annals of Behavioral Medicine.</em> Dec 4, 2010. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Collins-Baker...Fiore-Ann-Behav-Med-The-Multiphase-Optimization-strategy-11.pdf">Full text</a>]</li>
</ul>
<ul>
<li>Baker TB, Mermelstein R, Collins LM, Piper ME, Jorenby DE, Smith SS, Schlam TR, Cook JW, Fiore MC. New Methods for Tobacco Dependence Treatment Research. <em>Annals of Behavioral Medicine.</em> Dec. 3, 2010. [<a href="https://www.ncbi.nlm.nih.gov/pubmed/21128037">Abstract</a>]</li>
</ul>
<ul>
<li>Piasecki TM, Piper ME, Baker TB, Hunt-Carter EE. WISDM Primary and Secondary Dependence Motives: Associations with Self-Monitored Motives for Smoking in Two College Samples.<em> Drug and Alcohol Dependence. </em>Epub Nov. 24, 2010. [<a href="https://d3futrf33lk36a.cloudfront.net/wp-content/uploads/sites/240/2017/06/Piasecki-Piper-Baker-Drug-Alcohol-Depend-WISDM-primary-and-secondary-moitves-11.pdf">Full text</a>]</li>