summaryrefslogtreecommitdiff
path: root/tests/data/science-direct.html
blob: af1f02c682d256edb878e7b76f223fb09ca05b15 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
<html><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- TRANSKEY: 07/25/2009 01:02:42 EDT#1823_004#580145#128.83.63.21 -->
<meta name="robots" content="NOINDEX,NOFOLLOW,NOARCHIVE">
<link rel="shortcut icon" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/scidirimg/faviconSD.ico" type="image/x-icon">

<title>ScienceDirect - Biomaterials : 
Inkjet printing of viable mammalian cells  </title>
<link rel="stylesheet" title="Default Styles" href="science-direct_files/css_art_v01.css" type="text/css">

<script type="text/javascript" src="science-direct_files/swfobject.js"></script>
<script src="science-direct_files/article.js" type="text/javascript"></script>
<script src="science-direct_files/fontSizeChanger.js" type="text/javascript"></script>



<script src="science-direct_files/nextBio.js" type="text/javascript"></script>


<meta http-equiv="Set-Cookie" content="BROWSER_SUPPORTS_COOKIES=1; path=/"></head><body onload="resizeImgs(); resetScrollableTables(); MMCinit(); enableTabs();  nextBio();  javascript:toggleTabs('fullTab')" onresize="resizeImgs(); resetScrollableTables();" bgcolor="#ffffff" text="#000000">

   <noscript>
<style type="text/css">
.nojs { display: none; }
</style>
</noscript>



<script src="science-direct_files/prototype.js" type="text/javascript"></script>
<script src="science-direct_files/effects.js" type="text/javascript"></script>
<script src="science-direct_files/controls_mod.js" type="text/javascript"></script>
<script src="science-direct_files/openWindow.js" type="text/javascript"></script>
<script language="Javascript"><!--
function flip(e){
  var menustyle = eval(getStyleObj(e))
    if (menustyle.display=="none"){
      menustyle.display=''
    }
    else{
      menustyle.display="none"
    }
}
function getStyleObj(elem,parent) {
   if (document.layers) {
   if (parent) {
      return "document."+parent+".document."+elem;
   } else {
      return "document."+elem + ".style";
   }
   } else if (document.all) {
     return "document.all."+elem + ".style";
   } else if (document.getElementById) {
     return "document.getElementById('"+elem+"').style";
   }
}
//--></script>

<link rel="stylesheet" title="Default Styles" href="science-direct_files/css_gen_v01.css" type="text/css">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tbody><tr>
    <td colspan="3" style="padding-left: 0.2em;" width="30%" nowrap="nowrap">
      <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HomePageURL&amp;_method=userHomePage&amp;_lg=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=6de574e6dff86ba08fff735d9b69ba82" border="0" target="_top"><img src="science-direct_files/logo.gif" title="ScienceDirect® Home" alt="ScienceDirect® Home" border="0"></a>
      <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=10&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=332a6427cb7f4df3e22a83f91c859c04#Skip%20Buttons" target="_top"><img src="science-direct_files/clear.gif" alt="Skip Main Navigation Links" title="Skip Main Navigation Links" border="0" width="10" height="1"></a>
    </td>
    <td align="center" bgcolor="#ffffff" valign="middle" nowrap="nowrap">
    </td>
    <td style="padding-right: 0.2em;" align="right" width="37%" nowrap="nowrap">
    <span style="font-size: 75%; font-family: arial,verdana,helvetica,sans-serif;">
    
      
        

<div style="padding: 0.4em;"><div id="sdLoginBoxFold"><a href="javascript:flip('sdLoginBox');%20javascript:flip('sdLoginBoxFold');" alt="Open the Login Box" title="Open the Login Box">Login: &nbsp;<img src="science-direct_files/sign_plus.gif" alt="Open the Login Box" title="Open the Login Box" border="0" width="9" height="9"></a><br><a href="https://www-sciencedirect-com.ezproxy.lib.utexas.edu/science?_ob=RegistrationURL&amp;_method=display&amp;_type=ip&amp;_returnURL=http%3A%2F%2Fwww.sciencedirect.com%2Fscience%3F_ob%3DArticleURL%26_udi%3DB6TWB-4CGM8MB-1%26_user%3D10%26_rdoc%3D1%26_fmt%3D%26_orig%3Dsearch%26_sort%3Dd%26view%3Dc%26_acct%3DC000050221%26_version%3D1%26_urlVersion%3D0%26_userid%3D10%26md5%3D332a6427cb7f4df3e22a83f91c859c04&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=6649e53ddab9dd7219625886b9d2643e" target="_top" title="Click here to learn about registering with ScienceDirect">Register</a></div></div><div id="sdLoginBox" style="padding: 0.2em; background-image: url(/scidirimg/login_background.gif); background-repeat: repeat-x; height: 70px; display: none;"><form name="sdLogin" method="post" action="https://www-sciencedirect-com.ezproxy.lib.utexas.edu/science/login"><input name="login" value="login" type="hidden"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr valign="top"><td align="left" nowrap="nowrap"></td></tr><tr><td nowrap="nowrap">&nbsp;<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=FederationURL&amp;_method=display&amp;_type=f&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=feb50a3db05cdbc64071b2d979ab7ef4" title="Athens/Institution Login">Athens/Institution Login</a>&nbsp;</td><td align="right"><a href="https://www-sciencedirect-com.ezproxy.lib.utexas.edu/science?_ob=RegistrationURL&amp;_method=display&amp;_type=ip&amp;_returnURL=http%3A%2F%2Fwww.sciencedirect.com%2Fscience%3F_ob%3DArticleURL%26_udi%3DB6TWB-4CGM8MB-1%26_user%3D10%26_rdoc%3D1%26_fmt%3D%26_orig%3Dsearch%26_sort%3Dd%26view%3Dc%26_acct%3DC000050221%26_version%3D1%26_urlVersion%3D0%26_userid%3D10%26md5%3D332a6427cb7f4df3e22a83f91c859c04&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=6649e53ddab9dd7219625886b9d2643e" target="_top" title="Click here to learn about registering with ScienceDirect">Not Registered?&nbsp;</a><a href="javascript:flip('sdLoginBox');javascript:flip('sdLoginBoxFold');" title="Close the Login Box"><img src="science-direct_files/sign_minus.gif" alt="Close the Login Box" title="Close the Login Box" border="0" width="9" height="9"></a></td></tr></tbody></table><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr align="right"><td align="left">User&nbsp;Name:</td><td align="left"><input name="userid" class="xpstyle" size="11" title="Please enter your user name here" type="text"></td><td align="right">Password: </td><td align="left"><input name="password" class="xpstyle" size="11" maxlength="20" title="Please enter your password here" onkeypress="if(13==event.keyCode)this.form.submit();if (13==event.keyCode)return false;" type="password"></td><input name="_ob" value="MiamiLogonURL" type="hidden"><input name="targetURL" value="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=10&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=332a6427cb7f4df3e22a83f91c859c04" type="hidden"><input name="returnURL" value="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=10&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=332a6427cb7f4df3e22a83f91c859c04" type="hidden"><td align="left"><input class="image" onmouseover="this.src='/scidirimg/sci_dir/arrow_small_b.gif'" onmouseout="this.src='/scidirimg/sci_dir/arrow_small_a.gif'" name="arrow" src="science-direct_files/arrow_small_a.gif" alt="Login" title="Login" value="Submit" type="image">		</td></tr><tr valign="baseline"><td colspan="3" align="left"><input name="rememberid" id="rememberMe" value="Y" class="checkbox" title="Checking this option will log you in automatically next time you visit ScienceDirect" type="checkbox"><label for="rememberMe"><span title="Checking this option will log you in automatically next time you visit ScienceDirect">Remember&nbsp;me&nbsp;on&nbsp;this&nbsp;computer</span></label></td><td colspan="2" align="left"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ReminderURL&amp;_method=display&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d1aca5c666481c203723eba14a94e3d4" target="passwd" onclick="var remindWin;remindWin=window.open('','passwd','scrollbars=yes,resizable=yes,directories=no,toolbar=n,menubar=no,status=no,width=650,height=300');" title="Click here for help in recovering your ScienceDirect access">Forgotten&nbsp;password?</a></td></tr></tbody></table></form></div>
<noscript>
<div id="sdLoginBox"
style="background-image: url(/scidirimg/login_background.gif);
background-repeat: repeat-x; height:70px;padding:.02em;"> <form
name="sdLogin" method="POST"
action="https://www-sciencedirect-com.ezproxy.lib.utexas.edu/science/login">

<input type="hidden" name="login" value="login"> <table width="100%"
cellspacing="0" cellpadding="0"> <tr valign="top"> <tr> <td nowrap
align="left"> &nbsp;<a
href="/science?_ob=FederationURL&_method=display&_type=f&_acct=C000059713&_version=1&_userid=108429&md5=feb50a3db05cdbc64071b2d979ab7ef4"title="Athens/
Institution Login">Athens/Institution Login</a>&nbsp;</font></td> <td
align="right"> <a
href="https://www-sciencedirect-com.ezproxy.lib.utexas.edu/science?_ob=RegistrationURL&_method=display&_type=ip&_returnURL=http%3A%2F%2Fwww.sciencedirect.com%2Fscience%3F_ob%3DArticleURL%26_udi%3DB6TWB-4CGM8MB-1%26_user%3D10%26_rdoc%3D1%26_fmt%3D%26_orig%3Dsearch%26_sort%3Dd%26view%3Dc%26_acct%3DC000050221%26_version%3D1%26_urlVersion%3D0%26_userid%3D10%26md5%3D332a6427cb7f4df3e22a83f91c859c04&_acct=C000059713&_version=1&_userid=108429&md5=6649e53ddab9dd7219625886b9d2643e"
title="Click here to learn about registering with ScienceDirect"
target="_top">Not Registered?&nbsp;</a> </td> </tr>
</table> <table width="100%" cellspacing="0" cellpadding="0"> <tr
align="right"> <td align="left">User&nbsp;Name: </td> <td align="left">
<input type="text" name="userid" class="xpstyle" size="11"
title="Please enter your user name here" /> </td> <td
align="right">Password: </td> <td align="left"> <input type="password"
name="password" class="xpstyle" size="11" maxlength="20" title="Please
enter your password here" /> </td>
<input type="hidden" name="_ob" value="MiamiLogonURL">
<input type="hidden" name="targetURL"
value="http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6TWB-4CGM8MB-1&_user=10&_rdoc=1&_fmt=&_orig=search&_sort=d&view=c&_acct=C000050221&_version=1&_urlVersion=0&_userid=10&md5=332a6427cb7f4df3e22a83f91c859c04"
>
<input type="hidden" name="returnURL"
value="http://www.sciencedirect.com/science?_ob=ArticleURL&_udi=B6TWB-4CGM8MB-1&_user=10&_rdoc=1&_fmt=&_orig=search&_sort=d&view=c&_acct=C000050221&_version=1&_urlVersion=0&_userid=10&md5=332a6427cb7f4df3e22a83f91c859c04"
> <td align="left"><input class="image" type="image"
src="/scidirimg/sci_dir/arrow_small_a.gif" title="Login" alt="Login"
value="Submit" /></a> </td> </tr> <tr valign="baseline"> <td
align="left" colspan="3"> <input type="checkbox"
name="rememberid"id="rememberMe" value="Y" class="checkbox"
title="Checking this option will log you in automatically next time you
visit ScienceDirect"/> <label for="rememberMe"><span title="Checking
this option will log you in automatically next time you visit
ScienceDirect">Remember&nbsp;me&nbsp;on&nbsp;this&nbsp;computer</span></label>

</td> <td align="left" colspan="2"> <a
href="/science?_ob=ReminderURL&_method=display&_acct=C000059713&_version=1&_userid=108429&md5=d1aca5c666481c203723eba14a94e3d4"
target="passwd" onClick="var
remindWin;remindWin=window.open('','passwd','scrollbars=yes,resizable=yes,directories=no,toolbar=n,menubar=no,status=no,width=650,height=300');"
title="Click here for help in recovering your ScienceDirect
access">Forgotten&nbsp;password?</a> </td> </tr> </table></form></div>
</noscript>

		</span></td>
	</tr>
       
    
  
 

</tbody></table>


<span style="font-size: 75%; font-family: arial,verdana,helvetica,sans-serif;">
<table class="sdMainNav sci_dirNav" style="font-size: 1em; padding-bottom: 0em; background-image: url(/scidirimg/sci_dir/navbar_back.gif);" border="0" cellpadding="0" cellspacing="0">
    <tbody><tr>
      <td align="right" width="1%">&nbsp;</td>
      <td align="left"><img src="science-direct_files/space.gif" alt="" width="1" height="1"><table class="sdMainNavCenter" style="font-size: 1em;" cellpadding="0" cellspacing="0">
        <tbody><tr valign="center">

      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HomePageURL&amp;_method=userHomePage&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=6de574e6dff86ba08fff735d9b69ba82" target="_top" name="Home" alt="Home" title="Home"><div class="sdMainNavPadding">Home</div></a></td>

<td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=BrowseListURL&amp;_type=all&amp;_auth=y&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f04ad5a1561079821d810bd813a5e734" target="_top" name="Browse" alt="Browse" title="Browse"><div class="sdMainNavPadding">Browse</div></a></td>

<td class="sdMainNav sci_dirNavActive" style="background-image: url(/scidirimg/sci_dir/navbar_select.gif);" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiSearchURL&amp;_method=requestForm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=d51069875a68b2a65769cf52acef7ea7" target="_top" name="Search" alt="Search" title="Search"><div class="sdMainNavPadding">Search</div></a></td>


      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=UserSubscriptionURL&amp;_method=begin&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=af61f2870434de9d4dd652e64add8d47" target="_top" name="account" alt="My Settings" title="My Settings"><div class="sdMainNavPadding">My Settings</div></a></td>

      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiSDIURL&amp;_method=listAlerts&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=1e3299b58089d861e3875813bff36d2d" target="_top" name="alert" alt="Alerts" title="Alerts"><div class="sdMainNavPadding">Alerts</div></a></td>

      

      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HelpURL&amp;_file=browse_open_doc.htm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=8cf4aedb010d78a9aae4ddbc62d39e77" target="sdhelp" alt="Help (Opens new window)" title="Help (Opens new window)" onclick="var helpWin; helpWin=window.open('/science?_ob=HelpURL&amp;_file=browse_open_doc.htm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=8cf4aedb010d78a9aae4ddbc62d39e77','sdhelp','scrollbars=yes,resizable=yes,directories=no,toolbar=no,menubar=no,status=no,width=760,height=570'); helpWin.focus(); return false"><div class="sdMainNavPadding">Help</div></a></td>
      
</tr></tbody></table>
</td></tr></tbody></table>
</span>


  <table border="0" cellpadding="0" cellspacing="0" width="100%">
  
  <tbody><tr><td><a name="Skip Buttons"></a><script language="javascript">
<!--
function clearQSForm() {
    document.qkSrch.qs_tak.value="";
    document.qkSrch.qs_author.value="";
    document.qkSrch.qs_title.value="";
    document.qkSrch.qs_vol.value="";
    document.qkSrch.qs_issue.value="";
    document.qkSrch.qs_pages.value="";
}
//-->
</script>

<div id="sdQuickSearch" style="font-size: 75%;">
<div style="background-image: url(/scidirimg/sci_dir/qs_background.gif); background-repeat: repeat-x; background-position: left bottom; background-color: rgb(218, 218, 218);">
<table border="0" width="100%">
<form name="qkSrch" method="get" target="_top" action="/science"></form>
<input name="_ob" value="QuickSearchURL" type="hidden">
<input name="_method" value="submitForm" type="hidden">
<input name="_acct" value="C000059713" type="hidden">
<input name="md5" value="91c7b33e1697c21f5140ebab8569cbb8" type="hidden">

<tbody><tr valign="center"><td align="left" nowrap="nowrap">&nbsp;<b>Quick Search</b></td>
   <td align="right"><label for="qs_all">&nbsp;&nbsp;All&nbsp;fields</label></td>
   <td align="left"><input name="qs_all" id="qs_all" value="" size="28" maxlength="450" title="For example: heart attack AND behavior?" class="qsinput xpstyle" tabindex="1" type="text"></td>
   <td align="right"><label for="qs_author">&nbsp;&nbsp;Author</label></td>
   <td colspan="5" align="left"><input name="qs_author" id="qs_author" value="" size="30" maxlength="450" title="e.g. J S Smith or John Smith or Smith JS" class="qsinput xpstyle" tabindex="2" type="text"></td>
   <td nowrap="nowrap">

   </td>
   <td align="right" valign="top" width="90%"></td>
</tr>
<tr valign="center">
   <td align="left" nowrap="nowrap">&nbsp;<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HelpURL&amp;_file=qs_tips.htm&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=4a8a053b157b837c7f548605f7de3c5c" target="sdhelp" onmouseover="window.status='Help is Available';return true" onmouseout="window.status='';return true" onclick="var helpWin;helpWin=window.open('/science?_ob=HelpURL&amp;_file=qs_tips.htm&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=4a8a053b157b837c7f548605f7de3c5c','sdhelp','scrollbars=yes,resizable=yes,directories=no,toolbar=no,menubar=no,status=no,width=760,height=570');helpWin.focus();return false"><img src="science-direct_files/qs_tips.gif" tabindex="9" alt="Search tips (Opens new window)" title="Search tips (Opens new window)" align="absmiddle" border="0"></a></td>
   <td align="right"><label for="qs_title">&nbsp;&nbsp;Journal/book&nbsp;title</label></td>
   <td align="left"><div style="display: none;" class="auto_complete nojs" id="qsPub_autoComp"></div><input autocomplete="off" name="qs_title" id="qs_title" value="" size="28" maxlength="450" title="For example: journal of molecular biology" tabindex="3" class="qsinput xpstyle" type="text"></td>
   <td align="right"><label for="qs_vol">&nbsp;&nbsp;Volume</label></td>
   <td align="left"><input name="qs_vol" id="qs_vol" value="" size="3" maxlength="10" class="qsinput xpstyle" style="width: 30px;" tabindex="4" type="text"></td>
   <td align="right"><label for="qs_issue">&nbsp;&nbsp;Issue</label></td>
   <td align="left"><input name="qs_issue" id="qs_issue" value="" size="3" maxlength="10" class="qsinput xpstyle" style="width: 30px;" tabindex="5" type="text"></td>
   <td align="right"><label for="qs_pages">&nbsp;&nbsp;Page</label></td>
   <td align="right"><input name="qs_pages" id="qs_pages" value="" size="3" maxlength="10" title="For example: 14-27" class="qsinput xpstyle" style="width: 30px;" tabindex="6" type="text"></td>
   <td align="left" nowrap="nowrap">&nbsp;&nbsp;&nbsp;&nbsp;<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=10&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;_sort=d&amp;view=c&amp;_acct=C000050221&amp;_version=1&amp;_urlVersion=0&amp;_userid=10&amp;md5=332a6427cb7f4df3e22a83f91c859c04&amp;clearQS=y" onclick="clearQSForm(); return false;" onmouseover="document.images['clearQS'].src='/scidirimg/sci_dir/btn_clear2.gif'" onmouseout="document.images['clearQS'].src='/scidirimg/sci_dir/btn_clear1.gif'"><img src="science-direct_files/btn_clear1.gif" alt="Clear all fields" title="Clear all fields" name="clearQS" tabindex="7" border="0"></a>&nbsp;&nbsp;&nbsp;&nbsp;<input src="science-direct_files/btn_go1.gif" onmouseover="this.src='/scidirimg/sci_dir/btn_go2.gif'" onmouseout="this.src='/scidirimg/sci_dir/btn_go1.gif'" alt="Submit Quick Search" title="Submit Quick Search" value="Submit" tabindex="8" type="image">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td><td align="left" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiSearchURL&amp;_method=requestForm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=d51069875a68b2a65769cf52acef7ea7" style="vertical-align: middle;">Advanced Search</a></td></tr>
<script type="text/javascript">
//<![CDATA[
function sdAutoComplete(inputField, outputField, serviceURL) {
    var qsPub_autoComp = new Ajax.Autocompleter(inputField,outputField,serviceURL,{ minChars:2, frequency: 0.15 })
}
//]]>
function ccAutoComplete(inputField, outputField, validCostCodes) {
    var costcode_list = new Autocompleter.Local(inputField,outputField,validCostCodes,{ minChars:2, partialSearch:false }) }
//]]>
</script>

<script type="text/javascript">
//<![CDATA[
    sdAutoComplete('qs_title','qsPub_autoComp','/science/jfind/auto');
//]]>
</script>


</tbody></table>
</div>
</div>
</td></tr>
  </tbody></table>




<div style="margin-left: 8px; margin-right: 5px;">
<div style="width: 100%;">




<div id="sdBody" class="pageText" width="80%">


<table width="100%"><tbody><tr><td valign="top">
<div id="artihead" class="artihead">

<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science/journal/01429612"><b>Biomaterials</b></a><br>
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=PublicationURL&amp;_tockey=%23TOC%235558%232005%23999739998%23505012%23FLA%23&amp;_cdi=5558&amp;_pubType=J&amp;view=c&amp;_auth=y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=e889bb525e72c7ce462ca69c1fd48125">


Volume 26, Issue 1</a>, 


January 2005,


Pages 93-99



</div>
</td>
<td align="right" valign="top">
<table cellpadding="0" cellspacing="0"><tbody><tr>

<td>&nbsp;</td>


</tr>
<tr><td style="padding-right: 5px;" align="right" valign="bottom">
<div style="padding-bottom: 3px; padding-top: 3px;" class="nojs">
 Font Size: <a href="javascript:fontSizeMinus('articleBody',%20'science');"><img src="science-direct_files/reduce_font.gif" alt="Decrease Font Size" title="Decrease Font Size" style="vertical-align: middle;" border="0"></a>&nbsp;&nbsp;<a href="javascript:fontSizeAdd('articleBody',%20'science');"><img src="science-direct_files/increase_font.gif" alt="Increase Font Size" title="Increase Font Size" style="vertical-align: middle;" border="0"></a>
</div>
</td></tr></tbody></table></td></tr></tbody></table>
<div style="color: rgb(255, 0, 0); font-weight: bold;">




</div>



<div class="outerPage">

<div class="articlePage" style="background-image: url(/scidirimg/bg_gradient.gif);">
<table align="left" border="0" cellpadding="0" cellspacing="0" width="100%"><tbody><tr>
<td class="nowrap" align="left">


  
  



  
    <div id="fullTabOff" style="display: none;">
      <a href="javascript:toggleTabs('fullTab')" class="noul" style="cursor: pointer;"><div class="tabUnselectedOuter"><div style="background-image: url(/scidirimg/tab_middle.gif);" class="tabUnselectedInner">Article</div></div><img src="science-direct_files/corner_unselect_right.gif" alt="" style="float: left;" border="0" hspace="0"></a>
    </div>
    <div id="fullTabOn">
      <div class="tabSelectedOuter"><div class="tabSelectedInner"><img id="fullTabImg" src="science-direct_files/icon_arrow_active.gif" border="0" hspace="0">&nbsp;Article<span class="txtHidden"> - selected</span></div></div><img src="science-direct_files/corner_select_right.gif" alt="" style="float: left;" hspace="0">
    </div>
  



<script language="Javascript">
<!--
graphTabOffLink_OnLoad = "javascript:toggleTabs('graphTab', 'http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science/article/ke/B6TWB-4CGM8MB-1?&_coverDate=01%2F31%2F2005&_ap=&_tap=&_sub=Y&_fmt=figTables&md5=dd2d3c9f86d06c877c73369a6f98675e')";
//--></script>
<div id="graphTabOff" class="nojs">
<a href="javascript:toggleTabs('graphTab',%20'http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science/article/ke/B6TWB-4CGM8MB-1?&amp;_coverDate=01%2F31%2F2005&amp;_ap=&amp;_tap=&amp;_sub=Y&amp;_fmt=figTables&amp;md5=dd2d3c9f86d06c877c73369a6f98675e')" id="graphTabOffLinkNode" class="noul" style="cursor: pointer;"><img src="science-direct_files/corner_unselect_left.gif" alt="" style="float: left;" border="0" hspace="0"><div class="tabUnselectedOuter"><div class="tabUnselectedInner" style="background-image: url(/scidirimg/tab_middle.gif);"><span class="">Figures/Tables</span></div></div><img src="science-direct_files/corner_unselect_right.gif" alt="" style="float: left;" border="0" hspace="0"></a>
</div>
<div id="graphTabOn" class="nojs" style="display: none;">
<img src="science-direct_files/corner_select_left.gif" alt="" style="float: left;" hspace="0"><div class="tabSelectedOuter"><div class="tabSelectedInner"><img src="science-direct_files/icon_arrow_active.gif" alt="" border="0" hspace="0">&nbsp;Figures/Tables<span class="txtHidden"> - selected</span></div></div><img src="science-direct_files/corner_select_right.gif" alt="" style="float: left;" hspace="0">
</div>



  
      <script language="Javascript">
      <!--
      refTabOffLink_OnLoad = "javascript:toggleTabs('refTab', 'http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science/article/ke/B6TWB-4CGM8MB-1?&_coverDate=01%2F31%2F2005&_ap=&_tap=&_sub=Y&_fmt=references&md5=e99ad45c45dc38c9c6834f12cbc3e215')";
      //--></script>
      <div id="refTabOff" class="nojs">
        <a href="javascript:toggleTabs('refTab',%20'http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science/article/ke/B6TWB-4CGM8MB-1?&amp;_coverDate=01%2F31%2F2005&amp;_ap=&amp;_tap=&amp;_sub=Y&amp;_fmt=references&amp;md5=e99ad45c45dc38c9c6834f12cbc3e215')" id="refTabOffLinkNode" class="noul" style="cursor: pointer;"><img src="science-direct_files/corner_unselect_left.gif" alt="" style="float: left;" border="0" hspace="0"><div class="tabUnselectedOuter"><div class="tabUnselectedInner" style="background-image: url(/scidirimg/tab_middle.gif);"><span class="">References</span></div></div><img src="science-direct_files/corner_unselect_right.gif" alt="" style="float: left;" border="0" hspace="0"></a>
      </div>
      <div id="refTabOn" class="nojs" style="display: none;">
        <img src="science-direct_files/corner_select_left.gif" alt="" style="float: left;" hspace="0"><div class="tabSelectedOuter"><div class="tabSelectedInner"><img src="science-direct_files/icon_arrow_active.gif" alt="" border="0" hspace="0">&nbsp;References<span class="txtHidden"> - selected</span></div></div><img src="science-direct_files/corner_select_right.gif" alt="" style="float: left;" hspace="0">
      </div>
  



  
    <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B6TWB-4CGM8MB-1-7&amp;_cdi=5558&amp;_user=108429&amp;_orig=search&amp;_coverDate=01%2F31%2F2005&amp;_sk=999739998&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=f3cfe042c1b1172d219b951c72ad4090&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B6TWB-4CGM8MB-1-7&amp;_cdi=5558&amp;_user=108429&amp;_orig=search&amp;_coverDate=01%2F31%2F2005&amp;_sk=999739998&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=f3cfe042c1b1172d219b951c72ad4090&amp;ie=/sdarticle.pdf','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes,left=50,top=50');" pdfwin.focus()="" class="noul" style="cursor: pointer;"><img src="science-direct_files/corner_unselect_left.gif" alt="" style="float: left;" border="0" hspace="0"><div class="tabUnselectedOuter"><div class="tabUnselectedInner" style="background-image: url(/scidirimg/tab_middle.gif);"><img src="science-direct_files/icon_pdf.gif" name="pdf" alt="" title="" style="vertical-align: middle;" border="0"> PDF (499 K)</div></div><img src="science-direct_files/corner_unselect_right.gif" alt="" style="float: left;" border="0" hspace="0"></a>
  



</td>
<td style="padding-bottom: 5px;"><table align="right"><tbody><tr style=""><td class="nowrap"><div id="imgToggle"><b> Thumbnails</b><span class="txtHidden"> - selected</span> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9&amp;artImgPref=F">Full-Size Images</a></div><div id="figToggle" style="display: none;"><b> Thumbnails</b><span class="txtHidden"> - selected</span> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9&amp;artImgPref=F&amp;figImg=Y">Full-Size Images</a></div></td></tr></tbody></table></td>

</tr></tbody></table>

<br clear="all">

<table valign="top" style="width: 340px;" align="right" border="0" cellpadding="0" cellspacing="0">

<tbody><tr><td bgcolor="#ffffff"><div class="MMCvTitleBox"><span class="MMCvTitleSpan" style="border-bottom: 2px solid rgb(255, 255, 255); top: 2px;"><img id="MMCvProdImgPath" src="science-direct_files/icon_arrow_active.gif" alt="" style="vertical-align: middle;"> </span><span class="MMCvTitleSpan" style="font-size: 0.9em;">Article Toolbox</span></div></td></tr>
<tr><td><div class="FATTABInner">
<table summary="This table contains links and tools for articles" title="Article Toolbox" valign="bottom" align="left" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="3" width="350">
<tbody><tr><td valign="top"><table cellspacing="5">


<script language="Javascript">
teststring = '';
for(j in navigator) teststring += j + ' ' + navigator[j] + unescape('%0a');
if (teststring.indexOf ('Windows NT 5.1') != -1) 
document.write ('<tr><td align="left" class="nowrap"><a href="/science?_ob=PdfDownloadURL&_uoikey=B6TWB-4CGM8MB-1&_tockey=%23toc%235558%232005%23999739998%23505012%23FLA%23&_orig=search&_acct=C000059713&_version=1&_userid=108429&md5=04cb535882f17893a0a5b471bf99fa5a" style="vertical-align: bottom; color: #000000; font-family: arial, verdana, helvetica, sans-serif; text-decoration: none;" name="pdf" alt="Opens in new window" title="Opens in new window" target="newPdfWin" onClick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open(\'\',\'newPdfWin\', \'width=\'+newWidth+\',height=\'+newHeight+\',resizable=yes, left=50, top=50\');"pdfWin.focus()"><img src="/scidirimg/icon_pdf.gif" border="0" name="pdf" alt="Opens in new window" title="Opens in new window" style="vertical-align:middle;">&nbsp; Download PDF</a>&nbsp;&nbsp;&nbsp;</td></tr>');
</script>

<tbody><tr><td align="left">
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=EmailFriendURL&amp;_method=gatherInfo&amp;refSource=html&amp;count=1&amp;_uoikey=B6TWB-4CGM8MB-1&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=c4bf361a2d815061051a97334daf26bf" style="vertical-align: bottom; color: rgb(0, 0, 0); font-family: arial,verdana,helvetica,sans-serif; text-decoration: none;" onmouseover="document.images['addEmail'].src='/scidirimg/sci_dir/emailarticle_b.gif'" onmouseout="document.images['addEmail'].src='/scidirimg/sci_dir/emailarticle_a.gif'"><img src="science-direct_files/emailarticle_a.gif" name="addEmail" alt="" style="vertical-align: middle;" border="0">&nbsp; E-mail Article</a>&nbsp;&nbsp;&nbsp;</td></tr>


<tr><td align="left">
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=CitedSearchURL&amp;_method=submitSearch&amp;_udi=B6TWB-4CGM8MB-1&amp;_alid=0&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;dest=list&amp;_tockey=%23toc%235558%232005%23999739998%23505012%21&amp;_orig_alid=&amp;sterms=%23refsrchkey%23f%23Xu%232005%2393%2399%23T%23&amp;source=citedSrcs&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=bd137ed36b99f284f6a3e7d3bb9fe939" style="vertical-align: bottom; color: rgb(0, 0, 0); font-family: arial,verdana,helvetica,sans-serif; text-decoration: none;" onmouseover="document.images['citedBy'].src='/scidirimg/sci_dir/citedby_b.gif'" onmouseout="document.images['citedBy'].src='/scidirimg/sci_dir/citedby_a.gif'"><img src="science-direct_files/citedby_a.gif" name="citedBy" alt="" style="vertical-align: middle;" border="0">&nbsp; Cited By</a>&nbsp;&nbsp;&nbsp;</td></tr>





<tr><td align="left">
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=CitedSearchURL&amp;_method=submitSearch&amp;_udi=B6TWB-4CGM8MB-1&amp;_alid=0&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;dest=save&amp;_tockey=%23toc%235558%232005%23999739998%23505012%21&amp;_orig_alid=&amp;sterms=%23refsrchkey%23f%23Xu%232005%2393%2399%23T%23&amp;source=citedSrcs&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=bd137ed36b99f284f6a3e7d3bb9fe939" style="vertical-align: bottom; color: rgb(0, 0, 0); font-family: arial,verdana,helvetica,sans-serif; text-decoration: none;" onmouseover="document.images['saveCitation'].src='/scidirimg/sci_dir/icon_saveascitationalert_b.gif'" onmouseout="document.images['saveCitation'].src='/scidirimg/sci_dir/icon_saveascitationalert_a.gif'"><img src="science-direct_files/icon_saveascitationalert_a.gif" name="saveCitation" alt="" style="vertical-align: middle;" border="0">&nbsp; Save as Citation Alert</a>&nbsp;&nbsp;&nbsp;</td></tr>


<tr><td align="left">
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=CitedSearchURL&amp;_method=submitSearch&amp;_udi=B6TWB-4CGM8MB-1&amp;_alid=0&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;dest=saveRss&amp;_tockey=%23toc%235558%232005%23999739998%23505012%21&amp;_orig_alid=&amp;sterms=%23refsrchkey%23f%23Xu%232005%2393%2399%23T%23&amp;source=citedSrcs&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=bd137ed36b99f284f6a3e7d3bb9fe939" style="vertical-align: bottom; color: rgb(0, 0, 0); font-family: arial,verdana,helvetica,sans-serif; text-decoration: none;" target="_blank" onclick="openNS('/science?_ob=CitedSearchURL&amp;_method=submitSearch&amp;_udi=B6TWB-4CGM8MB-1&amp;_alid=0&amp;_rdoc=1&amp;_fmt=&amp;_orig=search&amp;dest=saveRss&amp;_tockey=%23toc%235558%232005%23999739998%23505012!&amp;_orig_alid=&amp;sterms=%23refsrchkey%23f%23Xu%232005%2393%2399%23T%23&amp;source=citedSrcs&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=bd137ed36b99f284f6a3e7d3bb9fe939', 700, 500); return false;"><img src="science-direct_files/rsscite.gif" alt="Set up a citation RSS feed (Opens new window)" title="Set up a citation RSS feed (Opens new window)" style="vertical-align: middle;" border="0">&nbsp; Citation Feed</a>&nbsp;&nbsp;&nbsp;</td></tr>

</tbody></table></td>
<td valign="top"><table cellspacing="5">

<tbody><tr><td align="left">
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=DownloadURL&amp;_method=confirm&amp;_uoikey=B6TWB-4CGM8MB-1&amp;count=1&amp;_docType=FLA&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=33a7c2bec136d222376457206dd0a67a" style="vertical-align: bottom; color: rgb(0, 0, 0); font-family: arial,verdana,helvetica,sans-serif; text-decoration: none;" onmouseover="document.images['export'].src='/scidirimg/sci_dir/exportarticle_b.gif'" onmouseout="document.images['export'].src='/scidirimg/sci_dir/exportarticle_a.gif'"><img src="science-direct_files/exportarticle_a.gif" name="export" alt="" style="vertical-align: middle;" border="0">&nbsp; Export Citation</a>&nbsp;&nbsp;&nbsp;</td></tr>


<tr><td align="left">
<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=QuickLinksURL&amp;_method=createIntLink&amp;_type=article&amp;_key=B6TWB-4CGM8MB-1&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=e5ec65370593a3f2bc495a75b0dbfb0a" style="vertical-align: bottom; color: rgb(0, 0, 0); font-family: arial,verdana,helvetica,sans-serif; text-decoration: none;" onmouseover="document.images['addQuickLink'].src='/scidirimg/sci_dir/quicklink_b.gif'" onmouseout="document.images['addQuickLink'].src='/scidirimg/sci_dir/quicklink_a.gif'"><img src="science-direct_files/quicklink_a.gif" name="addQuickLink" alt="" style="vertical-align: middle;" border="0">&nbsp; Add to my Quick Links</a>&nbsp;&nbsp;&nbsp;</td></tr>

<tr><td align="left" valign="middle"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=795&amp;_udi=B6TWB-4CGM8MB-1&amp;_targetURL=http%3A%2F%2Fwww.2collab.com%2Fbookmark%2Faddsd%3Fpii%3DS0142961204003357%26resize_to_fit%3Dyes&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=8747c570a15b270cce7fc9fb56179408" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><img src="science-direct_files/gw_ol_2co.gif" alt="Bookmark and share in 2collab (opens in new window)" title="Bookmark and share in 2collab (opens in new window)" border="0"></a></td></tr><tr><td align="left" valign="middle"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=936&amp;_udi=B6TWB-4CGM8MB-1&amp;_targetURL=https%3A%2F%2Fs100.copyright.com%2FAppDispatchServlet%3FpublisherName%3DELS%26contentID%3DS0142961204003357%26orderBeanReset%3Dtrue&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=a023a04e3077344416fe5dd4fe9fff43" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><img src="science-direct_files/gw_ol_rts.gif" alt="Request permission to reuse this article" title="Request permission to reuse this article" border="0"></a></td></tr><tr><td align="left" valign="middle"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_udi=B6TWB-4CGM8MB-1&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-2942557434%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Def4aa74b8ec18f81facba888ed18fe1d&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d0cffb42f62b48a1fe62754a8532abe8" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><img src="science-direct_files/scopus_logo.gif" style="vertical-align: middle;" border="0">&nbsp; Cited By in Scopus (94)</a></td></tr>

</tbody></table></td></tr></tbody></table>
</div>
</td></tr>

<script type="text/javascript">
iFrameHtml = "/science/page/static/iFrame.html";
searchTerms = ""
piiValue = 'S0142961204003357'
</script>
<tr class="NextBiovRow"><td>
<div nextbioiframe="undefined" id="nextBioViewer" style="display: inline; cursor: auto;"><div class="nbApiTagCloud"><div style="white-space: nowrap;"> </div> <div style=""> <div class="nbApiHeader"><div class="nbApiSpacer"> <h1 class="nbApiH1">Relevant Terms extracted from this Article</h1> <p class="nbApiExplain">See <span class="nbApiHighlight">Data Correlations, Clinical Trials</span> and more based on relevant terms extracted from this Article </p> </div></div> <div class="nbApiContainer"><div class="nbApiSpacer" style="padding-bottom: 5px;"> <div class="nbApiTagCloudGroup nbApiTagCloudShowLess" id="nbApitagCloudtreatment"> <div class="nbApiTagCloudGroupHead"> <img src="science-direct_files/treatment.png" alt=""> compounds<span class="nbApiTagCloudGroupCount"> | 5</span> </div> <table cellpadding="0" cellspacing="0"> <tbody><tr> <td width="50%"> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'acetic acid'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtreatment'); return nbApi.onEvent(event,{owner:this,redir:true,type:'treatment',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'2048925',strategy:'CLOUD_BY_TYPE',size:5,containerId:'nextBioViewer',tagName:'acetic acid',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=treatment&amp;logTagId=2048925&amp;logTagName=acetic acid&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=treatment&amp;id=2048925&amp;q=Acetic Acid&amp;bbut=false'});">acetic acid</a> </td> <td width="50%"> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'ethanol'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtreatment'); return nbApi.onEvent(event,{owner:this,redir:true,type:'treatment',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'7886467',strategy:'CLOUD_BY_TYPE',size:5,containerId:'nextBioViewer',tagName:'ethanol',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=treatment&amp;logTagId=7886467&amp;logTagName=ethanol&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=treatment&amp;id=7886467&amp;q=Ethanol&amp;bbut=false'});">ethanol</a> </td> </tr> <tr> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'l-glutamate'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtreatment'); return nbApi.onEvent(event,{owner:this,redir:true,type:'treatment',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'37175',strategy:'CLOUD_BY_TYPE',size:5,containerId:'nextBioViewer',tagName:'l-glutamate',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=treatment&amp;logTagId=37175&amp;logTagName=l-glutamate&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=treatment&amp;id=37175&amp;q=L-Glutamic Acid&amp;bbut=false'});">l-glutamate</a> </td> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'l-glutamine'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtreatment'); return nbApi.onEvent(event,{owner:this,redir:true,type:'treatment',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'36607',strategy:'CLOUD_BY_TYPE',size:5,containerId:'nextBioViewer',tagName:'l-glutamine',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=treatment&amp;logTagId=36607&amp;logTagName=l-glutamine&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=treatment&amp;id=36607&amp;q=Glutamine&amp;bbut=false'});">l-glutamine</a> </td> </tr> <tr class="nbApiTagCloudMore"> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'sodium bicarbonate'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtreatment'); return nbApi.onEvent(event,{owner:this,redir:true,type:'treatment',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'25288',strategy:'CLOUD_BY_TYPE',size:5,containerId:'nextBioViewer',tagName:'sodium bicarbonate',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=treatment&amp;logTagId=25288&amp;logTagName=sodium bicarbonate&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=treatment&amp;id=25288&amp;q=Sodium bicarbonate&amp;bbut=false'});">sodium bicarbonate</a> </td> </tr></tbody></table> <div class="nbApiTagCloudMoreLink" style="clear: both;"> <img src="science-direct_files/i_Next.gif" alt=""> <a class="nbApiTagCloudLess" onclick='nbApi.tagCloudShowMore("treatment")'>View more...</a> <a class="nbApiTagCloudMore" onclick='nbApi.tagCloudShowLess("treatment")'>View less...</a> </div> <div style="clear: both;"></div> </div> <div class="nbApiTagCloudGroup nbApiTagCloudShowLess" id="nbApitagCloudtissue"> <div class="nbApiTagCloudGroupHead"> <img src="science-direct_files/tissue.png" alt=""> tissues<span class="nbApiTagCloudGroupCount"> | 10</span> </div> <table cellpadding="0" cellspacing="0"> <tbody><tr> <td width="50%"> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'motoneurons'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'114650',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'motoneurons',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=114650&amp;logTagName=motoneurons&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=114650&amp;q=Motor neuron&amp;bbut=false'});">motoneurons</a> </td> <td width="50%"> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'Ovary'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'98190',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'Ovary',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=98190&amp;logTagName=Ovary&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=98190&amp;q=Ovary&amp;bbut=false'});">Ovary</a> </td> </tr> <tr> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'cell morphology'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'70453',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'cell morphology',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=70453&amp;logTagName=cell morphology&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=70453&amp;q=Cell morphology&amp;bbut=false'});">cell morphology</a> </td> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'biological molecules'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'112028',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'biological molecules',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=112028&amp;logTagName=biological molecules&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=112028&amp;q=Biological molecule&amp;bbut=false'});">biological molecules</a> </td> </tr> <tr class="nbApiTagCloudMore"> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'embryos'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'114510',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'embryos',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=114510&amp;logTagName=embryos&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=114510&amp;q=Embryo&amp;bbut=false'});">embryos</a> </td> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'esophagus'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'87186',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'esophagus',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=87186&amp;logTagName=esophagus&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=87186&amp;q=Esophagus&amp;bbut=false'});">esophagus</a> </td> </tr> <tr class="nbApiTagCloudMore"> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'serum'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'89708',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'serum',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=89708&amp;logTagName=serum&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=89708&amp;q=Serum&amp;bbut=false'});">serum</a> </td> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'spinal cord'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'106486',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'spinal cord',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=106486&amp;logTagName=spinal cord&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=106486&amp;q=Spinal cord&amp;bbut=false'});">spinal cord</a> </td> </tr> <tr class="nbApiTagCloudMore"> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'stem cells'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'128789',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'stem cells',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=128789&amp;logTagName=stem cells&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=128789&amp;q=Stem cell&amp;bbut=false'});">stem cells</a> </td> <td> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'stomachs'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudtissue'); return nbApi.onEvent(event,{owner:this,redir:true,type:'tissue',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'103989',strategy:'CLOUD_BY_TYPE',size:10,containerId:'nextBioViewer',tagName:'stomachs',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=tissue&amp;logTagId=103989&amp;logTagName=stomachs&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=tissue&amp;id=103989&amp;q=Stomach&amp;bbut=false'});">stomachs</a> </td> </tr> </tbody></table> <div class="nbApiTagCloudMoreLink" style="clear: both;"> <img src="science-direct_files/i_Next.gif" alt=""> <a class="nbApiTagCloudLess" onclick='nbApi.tagCloudShowMore("tissue")'>View more...</a> <a class="nbApiTagCloudMore" onclick='nbApi.tagCloudShowLess("tissue")'>View less...</a> </div> <div style="clear: both;"></div> </div> <div class="nbApiTagCloudGroup nbApiTagCloudShowLess nbApiTagCloudGroupLast" id="nbApitagCloudbiogroup"> <div class="nbApiTagCloudGroupHead"> <img src="science-direct_files/biogroup.png" alt=""> biogroups<span class="nbApiTagCloudGroupCount"> | 1</span> </div> <table cellpadding="0" cellspacing="0"> <tbody><tr> <td width="50%"> <a href="" target="_blank" onmouseover="nbApi.onEvent(event, 'nextBioViewer', 'lactate dehydrogenase'); return false;" onclick="var moreDiv=document.getElementById('nbApitagCloudbiogroup'); return nbApi.onEvent(event,{owner:this,redir:true,type:'biogroup',viewMore: moreDiv!=null?moreDiv.nbExpand:'no',sessionId:nbApi.sessionId,pii:'200455',strategy:'CLOUD_BY_TYPE',size:1,containerId:'nextBioViewer',tagName:'lactate dehydrogenase',customParam:'logId=' + nbApi.sessionId + '&amp;tcid=88c196b8deb74a77b3eafb2388aa7c02&amp;log=true&amp;logTagType=biogroup&amp;logTagId=200455&amp;logTagName=lactate dehydrogenase&amp;it=Inkjet%20printing%20of%20viable%20mammalian%20cells&amp;dpId=1&amp;type=biogroup&amp;id=200455&amp;q=Lactate dehydrogenase&amp;bbut=false'});"><span title="lactate dehydrogenase">lactate dehydrogenas…</span></a> </td> </tr></tbody></table> </div> </div></div> <div class="nbApiBottom"><div class="nbApiFoot">Scientific correlations by NextBio</div></div> </div></div></div>

</td></tr>

<tr id="multiMediaViewerRow" class="MMCvRow" style="display: none;"><td><div id="multiMediaViewerOuter" class="MMCvOuter"></div></td></tr>



<tr class="tableFmDivider" bgcolor="#ddf8ad">
<td>&nbsp;</td></tr>



<tr><td>&nbsp;</td></tr>
<tr align="right"><td><table class="greyTable" cellspacing="0" width="340">
<tbody><tr><td scope="col" class="greyHeader" style="background-image: url(/scidirimg/right_gradient.gif);"><b>Related Articles in ScienceDirect</b></td></tr></tbody><tbody id="mlkt"><tr><td><div id="mlktList"><div class="infobubble-container"><div class="mlktLink" id="mlktLink_1"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="padding: 5px 5px 0px;" valign="top"><img src="science-direct_files/bullet_square.gif" alt=""></td><td onmouseover="InfoBubble.show('infobubble_1','mlktLink_1','iframe_1')" onmouseout="InfoBubble.timeout()"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6WN5-4GSCHN7-8&amp;_user=108429&amp;_origUdi=B6TWB-4CGM8MB-1&amp;_fmt=high&amp;_coverDate=04%2F30%2F1991&amp;_rdoc=1&amp;_orig=article&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=fdc7f877ddeaa33f6bf260332bdc7efe">Expression of antibody genes in nonlymphoid mammalian c...<br><i>Methods</i></a><br><iframe id="iframe_1" style="display: none; position: absolute; z-index: 1;" scrolling="no" frameborder="0"></iframe><div class="infobubble" id="infobubble_1"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td><div style="float: right; padding-left: 5px;"><a onclick="InfoBubble.hide()"><img src="science-direct_files/btn_xclose.gif" alt="Close" title="Close" onmouseover="javascript:this.src='/scidirimg/btn_xclose_hov.gif';" onmouseout="javascript:this.src='/scidirimg/btn_xclose.gif';"></a></div><img src="science-direct_files/jrn_sub.gif" alt="You are entitled to access the full text of this document" title="You are entitled to access the full text of this document" border="0" width="12" height="14">&nbsp;<b><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6WN5-4GSCHN7-8&amp;_user=108429&amp;_coverDate=04%2F30%2F1991&amp;_rdoc=1&amp;_fmt=high&amp;_orig=article&amp;_cdi=6953&amp;_sort=v&amp;_docanchor=&amp;view=c&amp;_ct=1512&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=e2d82ab98abae7f909a5532814286a3e">Expression of antibody genes in nonlymphoid mammalian cells</a></b><br><i>Methods</i>, <i>Volume 2, Issue 2</i>, <i>April 1991</i>, <i>Pages 136-145</i><br>Christopher R. Bebbington<br><br><b>Abstract</b><br><div class="mlktScroll"><div style="line-height: 150%;">A
wide variety of mammalian cell lines have the ability to assemble and
secrete immunoglobulins. This provides the possibility of adapting
highly efficient mammalian cell expression systems available for
nonlymphoid host cells to obtain efficient expression of recombinant
antibodies. A set of vectors that use a powerful cytomegalovirus
promoter enhancer to direct expression of the coding sequence for each
immunoglobulin chain is described. The vectors also contain a
replication origin from SV40 to generate high copy numbers in COS
monkey kidney cells and a marker gene for selection of permanently
transfected cell lines. Methods for generating microgram amounts of
antibody in 2–4 days from COS cells and for stable introduction of the
vectors into CHO cells are described. The use of a glutamine synthetase
(GS) selectable marker to obtain vector amplification in CHO cells is
also described. This permits the generation of cell lines that can
accumulate in excess of 200 mg/liter of antibody in the culture medium.</div></div><br><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B6WN5-4GSCHN7-8-1&amp;_cdi=6953&amp;_user=108429&amp;_orig=article&amp;_coverDate=04%2F30%2F1991&amp;_sk=999979997&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=21ef2557f75535cd0ac3620658c52143&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (1032 K)</a>
</td></tr></tbody></table></div></td></tr></tbody></table></div><div class="infobubble-container"><div class="mlktLink" id="mlktLink_2"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="padding: 5px 5px 0px;" valign="top"><img src="science-direct_files/bullet_square.gif" alt=""></td><td onmouseover="InfoBubble.show('infobubble_2','mlktLink_2','iframe_2')" onmouseout="InfoBubble.timeout()"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B73F6-47S6466-3F&amp;_user=108429&amp;_origUdi=B6TWB-4CGM8MB-1&amp;_fmt=high&amp;_coverDate=10%2F15%2F1995&amp;_rdoc=1&amp;_orig=article&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=ca4543a6eb0d4833f3c1534fff96aa87">Expression of endogenous muscarinic acetylcholine recep...<br><i>European Journal of Pharmacology: Molecular Pharmacolog...</i></a><br><iframe id="iframe_2" style="display: none; position: absolute; z-index: 1;" scrolling="no" frameborder="0"></iframe><div class="infobubble" id="infobubble_2"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td><div style="float: right; padding-left: 5px;"><a onclick="InfoBubble.hide()"><img src="science-direct_files/btn_xclose.gif" alt="Close" title="Close" onmouseover="javascript:this.src='/scidirimg/btn_xclose_hov.gif';" onmouseout="javascript:this.src='/scidirimg/btn_xclose.gif';"></a></div><img src="science-direct_files/jrn_sub.gif" alt="You are entitled to access the full text of this document" title="You are entitled to access the full text of this document" border="0" width="12" height="14">&nbsp;<b><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B73F6-47S6466-3F&amp;_user=108429&amp;_coverDate=10%2F15%2F1995&amp;_rdoc=1&amp;_fmt=high&amp;_orig=article&amp;_cdi=11490&amp;_sort=v&amp;_docanchor=&amp;view=c&amp;_ct=1512&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=db25c9b74839daf72d79d9f56d82ecd7">Expression of endogenous muscarinic acetylcholine receptors in Chinese hamster ovary cells</a></b><br><i>European Journal of Pharmacology: Molecular Pharmacology</i>, <i>Volume 291, Issue 2</i>, <i>15 October 1995</i>, <i>Pages R1-R2</i><br>Shou Zhen Wang, Sheng Zu Zhu, Esam E. El-Fakahany<br><br><b>Abstract</b><br><div class="mlktScroll"><div style="line-height: 150%;">Chinese
hamster ovary (CHO) cells are commonly used for expression of the genes
of cloned neurotransmitter receptors to study their pharmacology and
coupling to signal transduction pathways. It is usually assumed that
host cells do not endogenously express the specific receptor under
consideration. We demonstrate in this report that CHO cells contain
endogenous functional muscarinic acetylcholine receptors which, in some
circumstances, might complicate interpretation of data related to the
properties of exogenously expressed receptors.</div></div><br><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B73F6-47S6466-3F-1&amp;_cdi=11490&amp;_user=108429&amp;_orig=article&amp;_coverDate=10%2F15%2F1995&amp;_sk=997089997&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=fe536e47a8f46ddc8c4fb5f772dc2710&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (163 K)</a>
</td></tr></tbody></table></div></td></tr></tbody></table></div><div class="infobubble-container"><div class="mlktLink" id="mlktLink_3"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="padding: 5px 5px 0px;" valign="top"><img src="science-direct_files/bullet_square.gif" alt=""></td><td onmouseover="InfoBubble.show('infobubble_3','mlktLink_3','iframe_3')" onmouseout="InfoBubble.timeout()"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4JD117M-4&amp;_user=108429&amp;_origUdi=B6TWB-4CGM8MB-1&amp;_fmt=high&amp;_coverDate=07%2F31%2F2006&amp;_rdoc=1&amp;_orig=article&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=8de7af099e2b00eb3d21e264a674bf29">Viability and electrophysiology of neural cell structur...<br><i>Biomaterials</i></a><br><iframe id="iframe_3" style="display: none; position: absolute; z-index: 1;" scrolling="no" frameborder="0"></iframe><div class="infobubble" id="infobubble_3"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td><div style="float: right; padding-left: 5px;"><a onclick="InfoBubble.hide()"><img src="science-direct_files/btn_xclose.gif" alt="Close" title="Close" onmouseover="javascript:this.src='/scidirimg/btn_xclose_hov.gif';" onmouseout="javascript:this.src='/scidirimg/btn_xclose.gif';"></a></div><img src="science-direct_files/jrn_sub.gif" alt="You are entitled to access the full text of this document" title="You are entitled to access the full text of this document" border="0" width="12" height="14">&nbsp;<b><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4JD117M-4&amp;_user=108429&amp;_coverDate=07%2F31%2F2006&amp;_rdoc=1&amp;_fmt=high&amp;_orig=article&amp;_cdi=5558&amp;_sort=v&amp;_docanchor=&amp;view=c&amp;_ct=1512&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=c9f4ad5625e29646fdaa16fda92968fd">Viability and electrophysiology of neural cell structures generated by the inkjet printing method</a></b><br><i>Biomaterials</i>, <i>Volume 27, Issue 19</i>, <i>July 2006</i>, <i>Pages 3580-3588</i><br>Tao Xu, Cassie A. Gregory, Peter Molnar, Xiaofeng Cui, Sahil Jalota, Sarit B. Bhaduri, Thomas Boland<br><br><b>Abstract</b><br><div class="mlktScroll"><div style="line-height: 150%;">Complex
cellular patterns and structures were created by automated and direct
inkjet printing of primary embryonic hippocampal and cortical neurons.
Immunostaining analysis and whole-cell patch-clamp recordings showed
that embryonic hippocampal and cortical neurons maintained basic
cellular properties and functions, including normal, healthy neuronal
phenotypes and electrophysiological characteristics, after being
printed through thermal inkjet nozzles. In addition, in this study a
new method was developed to create 3D cellular structures: sheets of
neural cells were layered on each other (layer-by-layer process) by
alternate inkjet printing of NT2 cells and fibrin gels. These results
and findings, taken together, show that inkjet printing is rapidly
evolving into a digital fabrication method to build functional neural
structures that may eventually find applications in neural tissue
engineering.</div></div><br><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B6TWB-4JD117M-4-J&amp;_cdi=5558&amp;_user=108429&amp;_orig=article&amp;_coverDate=07%2F31%2F2006&amp;_sk=999729980&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=4a1c82d5beb7200879ee1ca3b56ba8e5&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (504 K)</a>
</td></tr></tbody></table></div></td></tr></tbody></table></div><div class="infobubble-container"><div class="mlktLink" id="mlktLink_4"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="padding: 5px 5px 0px;" valign="top"><img src="science-direct_files/bullet_square.gif" alt=""></td><td onmouseover="InfoBubble.show('infobubble_4','mlktLink_4','iframe_4')" onmouseout="InfoBubble.timeout()"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6T2C-47MKJKX-BF&amp;_user=108429&amp;_origUdi=B6TWB-4CGM8MB-1&amp;_fmt=high&amp;_coverDate=06%2F30%2F1978&amp;_rdoc=1&amp;_orig=article&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=02c03f254f398aa4d8aa4bcea599e701">Induction of sister<wbr>-<wbr>chromatid exchanges in Chinese hams...<br><i>Mutation Research/Fundamental and Molecular Mechanisms ...</i></a><br><iframe id="iframe_4" style="display: none; position: absolute; z-index: 1;" scrolling="no" frameborder="0"></iframe><div class="infobubble" id="infobubble_4"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td><div style="float: right; padding-left: 5px;"><a onclick="InfoBubble.hide()"><img src="science-direct_files/btn_xclose.gif" alt="Close" title="Close" onmouseover="javascript:this.src='/scidirimg/btn_xclose_hov.gif';" onmouseout="javascript:this.src='/scidirimg/btn_xclose.gif';"></a></div><img src="science-direct_files/jrn_sub.gif" alt="You are entitled to access the full text of this document" title="You are entitled to access the full text of this document" border="0" width="12" height="14">&nbsp;<b><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6T2C-47MKJKX-BF&amp;_user=108429&amp;_coverDate=06%2F30%2F1978&amp;_rdoc=1&amp;_fmt=high&amp;_orig=article&amp;_cdi=4915&amp;_sort=v&amp;_docanchor=&amp;view=c&amp;_ct=1512&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=0753492349bb11aa70e0eecc3c99b4a5">Induction of sister<wbr>-<wbr>chromatid exchanges in Chinese hamster ovary cells treated in vitro with non<wbr>-<wbr>k<wbr>-<wbr>region dihydrodiols of 7<wbr>-<wbr>methylbenz[<span style="">a</span>]anthracene and benzo[<span style="">a</span>]pyrene</a></b><br><i>Mutation Research/Fundamental and Molecular Mechanisms of Mutagenesis</i>, <i>Volume 50, Issue 3</i>, <i>June 1978</i>, <i>Pages 367-375</i><br>Kalyani Pal, Brian Tierney, Philip L. Grover, Peter Sims<br><br><b>Abstract</b><br><div class="mlktScroll"><div style="line-height: 150%;">Studies
were carried out on the incidence of sister-chromatid exchanges induced
in Chinese hamster ovary cells by in vitro treatment with the
polycyclic aromatic hydrocarbons 7-methylbenz[<span style="font-style: italic;">a</span>]anthracene and benzo[<span style="font-style: italic;">a</span>]pyrene
and with related K-region and non-K-region dihydrodiols. Appreciable
increases in the incidence of sister-chromatid exchanges were apparent
in cells treated with non-K-region dihydrodiols: the most active
compounds were 3,4-dihydro-3,4-dihydroxy-7-methylbenz[<span style="font-style: italic;">a</span>]anthracene and 7,8-dihydro-7,8-dihydroxybenzo[<span style="font-style: italic;">a</span>]pyrene
and the effects were dose-dependent. The parent hydrocarbons and the
related K-region dihydrodiols induced some sister-chromatid exchanges
but they were considerably less active than these two non-K-region
diols. The results suggest that this system may usefully be applied to
studies aimed at determining which dihydrodiols are important in the
metabolic activation of the carcinogenic polycyclic hydrocarbons. These
and other results also infer that Chinese hamster ovary cells possess
some intrinsic ability to metabolize such compounds in the absence of
exogenous activation systems.</div></div><br><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B6T2C-47MKJKX-BF-H&amp;_cdi=4915&amp;_user=108429&amp;_orig=article&amp;_coverDate=06%2F30%2F1978&amp;_sk=999499996&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=bdfe8284953baf1bc53d18095bb9d46f&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (555 K)</a>
</td></tr></tbody></table></div></td></tr></tbody></table></div><div class="infobubble-container"><div class="mlktLink" id="mlktLink_5"><table border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="padding: 5px 5px 0px;" valign="top"><img src="science-direct_files/bullet_square.gif" alt=""></td><td onmouseover="InfoBubble.show('infobubble_5','mlktLink_5','iframe_5')" onmouseout="InfoBubble.timeout()"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4P0N8YT-1&amp;_user=108429&amp;_origUdi=B6TWB-4CGM8MB-1&amp;_fmt=high&amp;_coverDate=09%2F30%2F2007&amp;_rdoc=1&amp;_orig=article&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=d8546a23b309dc0b5f9c1f6170e6486c">Inkjet printing of macromolecules on hydrogels to steer...<br><i>Biomaterials</i></a><br><iframe id="iframe_5" style="display: none; position: absolute; z-index: 1;" scrolling="no" frameborder="0"></iframe><div class="infobubble" id="infobubble_5"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td><div style="float: right; padding-left: 5px;"><a onclick="InfoBubble.hide()"><img src="science-direct_files/btn_xclose.gif" alt="Close" title="Close" onmouseover="javascript:this.src='/scidirimg/btn_xclose_hov.gif';" onmouseout="javascript:this.src='/scidirimg/btn_xclose.gif';"></a></div><img src="science-direct_files/jrn_sub.gif" alt="You are entitled to access the full text of this document" title="You are entitled to access the full text of this document" border="0" width="12" height="14">&nbsp;<b><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4P0N8YT-1&amp;_user=108429&amp;_coverDate=09%2F30%2F2007&amp;_rdoc=1&amp;_fmt=high&amp;_orig=article&amp;_cdi=5558&amp;_sort=v&amp;_docanchor=&amp;view=c&amp;_ct=1512&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=d8120071ebaa79f092b7fdb62e6bfe86">Inkjet printing of macromolecules on hydrogels to steer neural stem cell differentiation</a></b><br><i>Biomaterials</i>, <i>Volume 28, Issue 27</i>, <i>September 2007</i>, <i>Pages 3936-3943</i><br>Shirin Ilkhanizadeh, Ana I. Teixeira, Ola Hermanson<br><br><b>Abstract</b><br><div class="mlktScroll"><div style="line-height: 150%;">Inkjet
printing allows for the rapid and inexpensive printing of cells,
materials, and protein molecules. However, the combination of inkjet
printing and control of neural stem cell (NSC) multipotency and
differentiation has remained unexplored. We used an inkjet printer
(Canon BJC-2100) to print biologically active macromolecules on
poly-acrylamide-based hydrogels (HydroGel<sup>TM</sup>), which were
subsequently seeded with primary fetal NSCs. NSCs cultured on areas
printed with fibroblast growth factor-2 (FGF2) remained
undifferentiated, consistent with the effects of FGF2 when administered
in solution. NSCs cultured in parallel on the same hydrogels but in
areas printed with ciliary neurotrophic factor (CNTF) or fetal bovine
serum (FBS) displayed a rapid induction of markers for astrocytic
(glial fibrillary acidic protein, GFAP) or smooth muscle (smooth muscle
actin, SMA) differentiation, respectively. These results are consistent
with known actions of CNTF and FBS on NSCs. Importantly, NSCs cultured
on a printed gradient of increasing levels of CNTF showed a linear
increase in numbers of cells expressing GFAP, demonstrating a
functional gradient of CNTF. Lastly, genetically modified NSCs proved
to respond properly to printed macromolecules, suggesting that inkjet
printing can successfully be combined with gene delivery to achieve
effective control of stem cell differentiation.</div></div><br><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MImg&amp;_imagekey=B6TWB-4P0N8YT-1-F&amp;_cdi=5558&amp;_user=108429&amp;_orig=article&amp;_coverDate=09%2F30%2F2007&amp;_sk=999719972&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=9e88eaf96d1b877af317f9a1f2c37e62&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (382 K)</a>
</td></tr></tbody></table></div></td></tr></tbody></table></div></div></div></div></div></div></div></td></tr><tr><td></td></tr><tr><td style="border-top: 1px dashed rgb(204, 204, 204); border-bottom: 1px solid rgb(204, 204, 204); background-color: rgb(246, 246, 246);" width="340"><table cellpadding="0" cellspacing="0" width="100%"><tbody><tr><td style="padding: 3px 5px 0px;" valign="top"><img src="science-direct_files/bulletTriang.gif" alt=""></td><td><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RelatedArtURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_orig=article&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=edc36319fb62f71e772e6868342ec19b">View More Related Articles</a></td></tr></tbody></table></td></tr></tbody>
<tbody><tr class="nojs"><td style="border-left: 0px solid rgb(204, 204, 204); border-right: 0px solid rgb(204, 204, 204); border-bottom: 1px solid rgb(204, 204, 204); margin: 0px; text-align: center;" onclick="toggleMLKT('B6TWB-4CGM8MB-1','/scidirimg/btn_arrow_up_off.gif','/scidirimg/btn_arrow_down_off.gif','http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science')"><img src="science-direct_files/btn_arrow_up_off.gif" id="mlktArrow" alt="" onmouseover="mlktHover(1,'/scidirimg/sci_dir/')" onmouseout="mlktHover(0,'/scidirimg/')" border="0"></td></tr>
</tbody></table></td></tr>


<tr><td>&nbsp;</td></tr><tr align="right"><td><table class="outwardBox" cellspacing="0" width="340"><tbody><tr><td align="left" valign="middle"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=254&amp;_udi=B6TWB-4CGM8MB-1&amp;_targetURL=http%3A%2F%2Fwww.lib.utexas.edu%3A9003%2Fsfx_local%3Fsid%3DElsevier%3ASD%26genre%3Darticle%26issn%3D01429612%26date%3D2005%26volume%3D26%26issue%3D1%26spage%3D93&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=5cf1b5c0de7ca208d16f9a0330d9b438" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><img src="science-direct_files/sfx.gif" alt="Find at UT" title="Find at UT" border="0"></a></td></tr><tr width="185" class="tableFmDivider"><td></td></tr><tr><td align="left" valign="middle"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=5978&amp;_udi=B6TWB-4CGM8MB-1&amp;_targetURL=http%3A%2F%2Fws.pangaea.de%2Fpartners%2Felsevier%2FredirectToSupplement%2F10.1016%2Fj.biomaterials.2004.04.011&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=145d2a3d40742607794d0a9da7c41597" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><img src="science-direct_files/j.gif" alt="PANGAEA Supplementary Data" title="PANGAEA Supplementary Data" border="0"></a></td></tr><tr><td align="left" valign="middle"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_udi=B6TWB-4CGM8MB-1&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-2942557434%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Def4aa74b8ec18f81facba888ed18fe1d&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=e8b4c80c133d5e87b5f71b4328560db4" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a></td></tr></tbody></table></td></tr>

</tbody></table>
<div id="articleBody" class="font3">
<div class="articleHeaderInner" id="articleHeader">
<img src="science-direct_files/clear.gif" alt="" border="0" width="1" height="10"><a href="http://dx.doi.org.ezproxy.lib.utexas.edu/10.1016/j.biomaterials.2004.04.011" target="doilink" onclick="var doiWin; doiWin=window.open('http://dx.doi.org.ezproxy.lib.utexas.edu/10.1016/j.biomaterials.2004.04.011','doilink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes'); doiWin.focus()">doi:10.1016/j.biomaterials.2004.04.011</a>&nbsp;&nbsp;&nbsp;&nbsp;<div id="printhide" class="printhide"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HelpURL&amp;_file=doi.htm&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=a177aaf59e01a6b28f6e863fb4636852" target="sdhelp" onmouseover="window.status='Help is Available';return true" onclick="var helpWin; helpWin=window.open('/science?_ob=HelpURL&amp;_file=doi.htm&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=a177aaf59e01a6b28f6e863fb4636852','sdhelp','scrollbars=yes,resizable=yes,directories=no,toolbar=no,menubar=no,status=no,width=760,height=570'); helpWin.focus()"><img src="science-direct_files/icon_doi.gif" alt="How to Cite or Link Using DOI (Opens New Window)" title="How to Cite or Link Using DOI (Opens New Window)" align="absmiddle" border="0" width="136" height="14"></a></div>
<br>


Copyright © 2004 Elsevier Ltd. All rights reserved.<br><br>
 



















<div class="articleTitle">
Inkjet printing of viable mammalian cells </div><!-- articleText -->

<strong>
<p>Tao Xu, Joyce Jin, Cassie Gregory, James J. Hickman<a name="m4.bcor*"></a><a href="#m4.cor*" onclick="toggleTabs('fullTab')"><sup><img src="science-direct_files/REcor.gif" alt="Corresponding Author Contact Information" title="Corresponding Author Contact Information" border="0"></sup></a> and Thomas Boland<a name="m4.bcor*"></a><a href="#m4.cor*" onclick="toggleTabs('fullTab')"><sup><img src="science-direct_files/REcor.gif" alt="Corresponding Author Contact Information" title="Corresponding Author Contact Information" border="0"></sup></a><sup>, </sup><a href="mailto:tboland@clemson.edu"><sup><img src="science-direct_files/REemail.gif" alt="E-mail The Corresponding Author" title="E-mail The Corresponding Author" border="0"></sup></a></p> </strong>

<div style="display: inline;" class="articleText">
<p>Department of Bioengineering, Clemson University, 502 Rhodes Hall, Clemson, SC 29634, USA</p> </div><!-- articleText -->

<div style="display: inline;" class="articleText"><br>
Received 19 December 2003;&nbsp; </div><!-- articleText --><div style="display: inline;" class="articleText">accepted 1 April 2004.&nbsp; </div><!-- articleText --><div style="display: inline;" class="articleText">Available online  28 May 2004.  </div><!-- articleText -->

<br><div style="display: inline;" class="articleText"></div><!-- articleText --><div style="display: inline;" class="articleText">
<h3 class="h3">Abstract</h3><p>The purpose of this study was to explore
the use of a commercial thermal printer to deposit Chinese Hamster
Ovary (CHO) and embryonic motoneuron cells into pre-defined patterns.
These experiments were undertaken to verify the biocompatibility of
thermal inkjet printing of mammalian cells and the ability to assemble
them into viable constructs. Using a modified Hewlett Packard (HP) 550C
computer printer and an HP 51626a ink cartridge, CHO cells and rat
embryonic motoneurons were suspended separately in a concentrated
phosphate buffered saline solution (3×). The cells were subsequently
printed as a kind of “ink” onto several “bio-papers” made from soy agar
and collagen gel. The appearance of the CHO cells and motoneurons on
the bio-papers indicated an healthy cell morphology. Furthermore, the
analyses of the CHO cell viability showed that less than 8% of the
cells were lysed during printing. These data indicate that mammalian
cells can be effectively delivered by a modified thermal inkjet printer
onto biological substrates and that they retain their ability to
function. The computer-aided inkjet printing of viable mammalian cells
holds potential for creating living tissue analogs, and may eventually
lead to the construction of engineered human organs.</p> </div><!-- articleText -->

<div style="display: inline;" class="articleText">
<p><strong>Author Keywords: </strong>Inkjet technology; Tissue engineering; Viable mammalian cells</p> </div><!-- articleText -->

<div style="display: inline;" class="articleText">
<h3 class="h3">Article Outline</h3><dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec1">1. Introduction</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec2">2. Materials and methods</a></dt><dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec2.1">2.1. Cell preparation and the cell print suspension (“bio-ink”)</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec2.2">2.2. Bio-paper preparation</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec2.3">2.3. Cell printing and cell culture</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec2.4">2.4. Cell viability</a></dt></dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec3">3. Results</a></dt><dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec3.1">3.1. Cell printing and cell pattern</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec3.2">3.2. CHO cell viability analyses</a></dt></dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec4">4. Discussion</a></dt><dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec4.1">4.1. Cell printing and viability</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec4.2">4.2. Bio-paper</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec4.3">4.3. The cell printer and biocompatibility</a></dt></dl><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#sec5">5. Conclusions</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#ack1">Acknowledgements</a></dt><dt><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bibl1">References</a></dt></dl> </div><!-- articleText -->

<div style="display: inline;" class="articleText">
<a name="sec1"></a><h3 class="h3">1. Introduction</h3><p>This work has
demonstrated that viable mammalian cells be delivered in pre-determined
patterns using a modified inkjet printer. This new ability has
implications for any application that requires spatially registered
cellular engineering, primarily in the field of tissue engineering,
which is a rapidly expanding approach to address the shortage of organs
for transplantation [<a name="bbib1"></a><span class="refPreview" id="refp_1"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib1" onmouseover="RefPreview.showRef(event,'ref_bib1','refp_1')" onmouseout="RefPreview.hideRef()">1</a>]. In the most general sense, tissue engineering seeks to fabricate viable replacement parts for the body [<a name="bbib2"></a><span class="refPreview" id="refp_2"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib2" onmouseover="RefPreview.showRef(event,'ref_bib2','refp_2')" onmouseout="RefPreview.hideRef()">2</a>].
Although still in its infancy, much progress in tissue engineering has
been made in areas relevant to the development of novel biomaterials [<a name="bbib3"></a><span class="refPreview" id="refp_3"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib3" onmouseover="RefPreview.showRef(event,'ref_bib3','refp_3')" onmouseout="RefPreview.hideRef()">3</a>], the design of bioreactors for dynamic in vitro culture systems [<a name="bbib4"></a><span class="refPreview" id="refp_4"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib4" onmouseover="RefPreview.showRef(event,'ref_bib4','refp_4')" onmouseout="RefPreview.hideRef()">4</a>], and the use of a wide variety of cell sources, including appropriate multi-potent stem cells [<a name="bbib5"></a><span class="refPreview" id="refp_5"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib5" onmouseover="RefPreview.showRef(event,'ref_bib5','refp_5')" onmouseout="RefPreview.hideRef()">5</a>].
Advancements in tissue engineering have permitted the creation of
functional tissue substitutes available to patients for clinical
applications, including engineered stomachs [<a name="bbib6"></a><span class="refPreview" id="refp_6"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib6" onmouseover="RefPreview.showRef(event,'ref_bib6','refp_6')" onmouseout="RefPreview.hideRef()">6</a>], esophagus [<a name="bbib7"></a><span class="refPreview" id="refp_7"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib7" onmouseover="RefPreview.showRef(event,'ref_bib7','refp_7')" onmouseout="RefPreview.hideRef()">7</a>], spinal cord [<a name="bbib8"></a><span class="refPreview" id="refp_8"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib8" onmouseover="RefPreview.showRef(event,'ref_bib8','refp_8')" onmouseout="RefPreview.hideRef()">8</a>], and progress towards complete tissue engineered organs [<a name="bbib9"></a><span class="refPreview" id="refp_9"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib9" onmouseover="RefPreview.showRef(event,'ref_bib9','refp_9')" onmouseout="RefPreview.hideRef()">9</a>].
To further the construction of complex tissues, or even entire organs,
however, there are still significant technical challenges to overcome.
Among them, a very important problem is subtly combining and
orchestrating cells, growth factors and scaffolds into an architecture
that will allow their unfettered interaction, especially where distinct
cell types are required in anatomically exact locations to attain
biological function [<a name="bbib10"></a><span class="refPreview" id="refp_10"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib10" onmouseover="RefPreview.showRef(event,'ref_bib10','refp_10')" onmouseout="RefPreview.hideRef()">10</a>]. Inkjet printing technology offers a possible solution to this complex problem.</p><p>Inkjet printing, initially from the field of electronics and mechanics [<a name="bbib11"></a><span class="refPreview" id="refp_11"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib11" onmouseover="RefPreview.showRef(event,'ref_bib11','refp_11')" onmouseout="RefPreview.hideRef()">11</a>], has recently been extended to bioengineering applications [<a name="bbib12"></a><span class="refPreview" id="refp_12"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib12" onmouseover="RefPreview.showRef(event,'ref_bib12','refp_12')" onmouseout="RefPreview.hideRef()">12</a>].
With the obvious advantages of being inexpensive as well as high
throughput, commercial thermal inkjet printers have been modified to
print biomolecules onto target substrates with little or no reduction
of their bioactivities, resulting in the creation of DNA chips [<a name="bbib13"></a><span class="refPreview" id="refp_13"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib13" onmouseover="RefPreview.showRef(event,'ref_bib13','refp_13')" onmouseout="RefPreview.hideRef()">13</a>], protein arrays [<a name="bbib14"></a><span class="refPreview" id="refp_14"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib14" onmouseover="RefPreview.showRef(event,'ref_bib14','refp_14')" onmouseout="RefPreview.hideRef()">14</a>] and cell patterns [<a name="bbib15"></a><span class="refPreview" id="refp_15"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib15" onmouseover="RefPreview.showRef(event,'ref_bib15','refp_15')" onmouseout="RefPreview.hideRef()">15</a>]. In particular, our recent success in printing viable bacteria directly using an off-the-self thermal inkjet printer [<a name="bbib16"></a><span class="refPreview" id="refp_16"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib16" onmouseover="RefPreview.showRef(event,'ref_bib16','refp_16')" onmouseout="RefPreview.hideRef()">16</a>]
significantly expands the capabilities of inkjet printing in the
direction of creating living tissue substitutes. By means of
computer-assisted deposition, viable cells can be delivered to precise
target positions on scaffold materials. Furthermore, using different
cell types as different bio-inks, which are then delivered to exact
positions to mimic tissue structures of the original tissue, can be
envisioned by using multiple nozzles. Thus, the printing of dissociated
human or animal cells onto specific patterns, and their subsequent
fusion, may allow the development of replacement tissue or even whole
organ substitutes [<a name="bbib17"></a><span class="refPreview" id="refp_17"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib17" onmouseover="RefPreview.showRef(event,'ref_bib17','refp_17')" onmouseout="RefPreview.hideRef()">17</a>].
Compared to bacteria, however, animal cells are generally more
sensitive to heat and mechanical stress, both of which often occur in
the cartridge of a printer. Whether animal cells could be effectively
printed using the modified thermal printer still needed to be
demonstrated to realize this ambitious goal.</p><p>In the present
study, suspensions of Chinese Hamster Ovary (CHO) and embryonic rat
motoneurons were printed directly using a modified Hewlett Packard (HP)
550C printer. This thermal printer was chosen over the piezo-electric
technology because our previous experience in adapting these commercial
inkjet printers for biomaterial printing [<span class="refPreview" id="refp_18"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib15" onmouseover="RefPreview.showRef(event,'ref_bib15','refp_18')" onmouseout="RefPreview.hideRef()">15</a>, <span class="refPreview" id="refp_19"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib16" onmouseover="RefPreview.showRef(event,'ref_bib16','refp_19')" onmouseout="RefPreview.hideRef()">16</a>, <span class="refPreview" id="refp_20"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib17" onmouseover="RefPreview.showRef(event,'ref_bib17','refp_20')" onmouseout="RefPreview.hideRef()">17</a>, <a name="bbib18"></a><span class="refPreview" id="refp_21"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib18" onmouseover="RefPreview.showRef(event,'ref_bib18','refp_21')" onmouseout="RefPreview.hideRef()">18</a> and <a name="bbib19"></a><span class="refPreview" id="refp_22"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib19" onmouseover="RefPreview.showRef(event,'ref_bib19','refp_22')" onmouseout="RefPreview.hideRef()">19</a>].
Soy agar and collagen hydrogels were used as the culture substrate or
“bio-paper” to prevent the cells from drying and to provide nutrients
for cell growth. The cell viability during the printing was evaluated
by a combined lactate dehydrogenase (LDH) and tetrazolium compound
assay (MTS).</p><h3 class="h3"><a name="sec2"></a>2. Materials and methods</h3><a name="sec2.1"></a><h4 class="h4">2.1. Cell preparation and the cell print suspension (“bio-ink”)</h4><p>Two
different cell types were used for the inkjet printing experiments. One
was a cell line of Chinese Hamster Ovary (CHO-B2) cells. These cells
had been transfected to express green fluorescent protein and <i>α</i>5<i>β</i>1 integrin which causes them to form compact, spherical aggregates [<a name="bbib20"></a><span class="refPreview" id="refp_23"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib20" onmouseover="RefPreview.showRef(event,'ref_bib20','refp_23')" onmouseout="RefPreview.hideRef()">20</a>].
Cells with green fluorescence are easy to observe for the printed
patterns and other applications. The other cells used in this study
were primary embryonic motoneurons obtained from ventral cords of day
14 embryos from pregnant Sprague–Dawley rats as previously described [<a name="bbib21"></a><span class="refPreview" id="refp_24"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib21" onmouseover="RefPreview.showRef(event,'ref_bib21','refp_24')" onmouseout="RefPreview.hideRef()">21</a>].</p><p>Cell
pellets were collected by centrifugation (1000&nbsp;rpm/2&nbsp;min) in
a conical tube. After aspirating the supernatant, they were resuspended
in 0.5&nbsp;ml of 3× Dulbecco's phosphate buffered saline solution
(DPBS) (Sigma Chemical Inc., St. Louis, MO) to obtain cell print
suspensions (like “inks” for the printers). The concentration of the
CHO cell's print suspension was about 5,000,000&nbsp;cells/ml, and the
primary motoneuron concentration was around 2,000,000&nbsp;cells/ml.</p><a name="sec2.2"></a><h4 class="h4">2.2. Bio-paper preparation</h4><p>The
two hydrogel-based substrates were prepared as the print substrates (or
bio-papers). One of the bio-papers used was soy agar gel, and the other
was a collagen gel. Both were coated on glass coverslips (22×22&nbsp;mm<sup>2</sup>). The soy agar gel was made from Trypticase<sup>®</sup>
soy agar solution (Becton Dickinson &amp; Co., Cockeysville, MD) by
dissolving 1.5&nbsp;g of powdered soy agar in 50&nbsp;ml of nanopure
water. After autoclaving for 15&nbsp;min, 50&nbsp;ml of a 2× solution
of Dulbecco's modified Eagles medium (DMEM) (Sigma) was added to the
soy agar solution while it still was relatively hot (about 45°C). After
mixing thoroughly, 2&nbsp;ml aliquots of the mixture were dispensed
onto each coverslip, which was in 35&nbsp;mm dishes. The soy agar gel
formed on the coverslips after cooling to room temperature. The
collagen gel bio-paper was produced from rat-tail Type I collagen (BD
Biosciences, Billerica, MA), which was received at a concentration of
3.67&nbsp;mg/ml in acetic acid. The collagen solution obtained a final
concentration of 1.0&nbsp;mg/ml by adding chilled PBS (2×). After
adjusting the pH to about 7.4, 1.5&nbsp;ml aliquots of the mixture were
dispersed onto coverslips and plated in an incubator for 3–5&nbsp;h.
Once the gel formed, the bio-paper of collagen was ready for use.</p><a name="sec2.3"></a><h4 class="h4">2.3. Cell printing and cell culture</h4><p>A
modified HP Desktop printer (HP 550C) and a modified HP 51626a ink
cartridge were used to print the CHO cells and motoneurons directly
into specific patterns. The printer modifications are described
previously [<span class="refPreview" id="refp_25"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib18" onmouseover="RefPreview.showRef(event,'ref_bib18','refp_25')" onmouseout="RefPreview.hideRef()">18</a>].
For these experiments, after emptying the ink, the cartridge was rinsed
thoroughly with 100% ethanol and sterile water. Previously, this
procedure was proven to be enough to create uncontaminated bacterial
cell cultures [<span class="refPreview" id="refp_26"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib16" onmouseover="RefPreview.showRef(event,'ref_bib16','refp_26')" onmouseout="RefPreview.hideRef()">16</a>].
A pattern that consisted of rows of circles was designed using
Microsoft PowerPoint software (Microsoft, Redmond, WA) to program the
printer.</p><p>To form the patterns, the cell print suspension was
shaken forcefully, and then a small portion (0.3–0.5&nbsp;ml) of the
suspension was loaded into the ink-containing chamber on the bottom of
the cartridge. The hydrogel-based bio-papers were placed onto the print
basement of the modified printer. The cells were delivered onto the
bio-paper following the designed pattern and the cells were printed
several consecutive times (2–8×) at the same position to ensure a high
cell number on the circular patterns. After printing, the bio-papers
with the printed cells were placed into dishes and moved to the
incubator, which was maintained at 37°C, 5% CO<sub>2</sub>, 95% air and
99% relative humidity. After 1–2&nbsp;h incubation, a small amount of
culture medium was carefully added to the dishes to avoid disturbing
the printed cell patterns and the level of the culture medium was
maintained to just below the top layer of the gel. DMEM medium,
supplemented with 10% fetal bovine serum (Sigma), 0.15% (w/v) sodium
bicarbonate and 1% antibiotic/antimycotic (Sigma Chemical Inc.)
solution was used to feed the CHO cells. The medium was changed every
1–2 days and the growth of the cells was monitored daily via light and
epifluorescent microscopy. The culture medium for the primary
motoneurons was Neurobasal (Gibco-BRL) supplemented with B27 (2% v/v)
(Invitrogen, Carlsbad, CA), <img src="science-direct_files/0_004.gif" alt="Image" title="Image" align="absbottom" border="0" width="9" height="10">
-glutamine (0.5&nbsp;m<img src="science-direct_files/0_003.gif" alt="Image" title="Image" align="absbottom" border="0" width="13" height="10">
) and 2-mercaptoethanol (25&nbsp;μ<img src="science-direct_files/0_003.gif" alt="Image" title="Image" align="absbottom" border="0" width="13" height="10">
). The culture medium was changed every four days and <img src="science-direct_files/0_004.gif" alt="Image" title="Image" align="absbottom" border="0" width="9" height="10">
-glutamate (25&nbsp;μ<img src="science-direct_files/0_003.gif" alt="Image" title="Image" align="absbottom" border="0" width="13" height="10">
) was added to the medium during the first four days of culture.</p><a name="sec2.4"></a><h4 class="h4">2.4. Cell viability</h4><p>The
amount of LDH, a stable cytosolic enzyme that is released upon cell
lysis, was measured quantitatively using a commercial calorimetric
assay (Cytotox 96, Promega Corp., Madison, WI). Per the manufacturer's
protocol, 500&nbsp;μl of reagent was added per ml of media into culture
dishes containing the printed samples. As a control, a known number of
cells (0, 1000, 5000, 10000, and 20,000, as determined by triplicate
hemocytometer counts) were lysed using 9% (v/v) Triton<sup>®</sup>
X-100; the other controls were samples coated with the gel but without
cells. The absorbance at 490&nbsp;nm of the solution was measured after
30&nbsp;min of incubation at room temperature in the dark. The amount
of live cells was determined by a tetrazolium compound assay (MTS;
CellTiter 96 Promega Corp., Madison, WI). Per the manufacturer's
protocol, 500&nbsp;μl of reagent was added per ml of media into the
culture dishes previously used for the LDH assay. The absorbances for a
known amount of cells as well as for the pure gel samples were used as
controls. The samples and controls were incubated for 60&nbsp;min at
37°C in the dark. The total number of cells was calculated as the sum
of the lysed and metabolically active cells, and the percentage of
cells lysed by printing was estimated as the ratio of the lysed cells
to the total number of cells.</p><h3 class="h3"><a name="sec3"></a>3. Results</h3><a name="sec3.1"></a><h4 class="h4">3.1. Cell printing and cell pattern</h4><p>The
CHO cells were observed to still emit green fluorescence by
epifluorescent microscopy, which strongly suggested that the CHO cells
were still living after passing through the nozzle of the cartridge.
During the initial 5 days of culture, the printed cells did not from a
complete ring because the initial plating was at low density, which
obscured the ring pattern. After 6 days, the cells gradually occupied
the positions along the ring pattern to form parts of the cell ring,
indicating the retention of the ability to proliferate and the
long-term viability of the technique. At day 7, the complete ring of
CHO cells was observed on the soy agar bio-paper (<span class="refPreview" id="refp_27"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#fig1" onmouseover="RefPreview.showRef(event,'ref_fig1','refp_27')" onmouseout="RefPreview.hideRef()">Fig. 1A</a>).
The cells continued to proliferate until a complete circle was formed
by day 25. Since CHO cells are not contact inhibited, eventually the
entire gel became populated with cells.</p></div><div class="figTblUpiOuter"><div style="display: inline;" class="graphText"><br><br><a name="fig1"></a><a name="1"></a><table><tbody><tr><td width="10%"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig1&amp;_ba=1&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=ec20d0cf98a97912391d465ad9ec6ea1" onclick="openStrippedNS('/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig1&amp;_ba=1&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=ec20d0cf98a97912391d465ad9ec6ea1'); return false;"><img src="science-direct_files/0.gif" title="Full-size image (89K) - Opens new window" alt="Full-size image (89K) - Opens new window" align="middle" border="1" vspace="2" width="90" height="93" hspace="2"></a></td><td valign="bottom"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig1&amp;_ba=1&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=ec20d0cf98a97912391d465ad9ec6ea1" onclick="openStrippedNS('/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig1&amp;_ba=1&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=ec20d0cf98a97912391d465ad9ec6ea1'); return false;" alt="Full-size image (89K) - Opens new window" title="Full-size image (89K) - Opens new window">Full-size image</a> (89K)</td></tr></tbody></table><p>Fig.
1. Chinese hamster ovary cells visualized under a fluorescent
microscope. The pattern as seen on the agar gel bio-paper at 7 days of
culture (A); the pattern after 15 days of culture (B); the pattern
after 20 days of culture (C), and the pattern after 25 days of culture
(D). Since CHO cells are not contact-inhibited, the cells eventually
grew everywhere in the gel bio-paper. Magnifications are as follows: 2×
(A), and 12× (B, C, and D).</p> <div class="graphTextOnly" style="display: none;"><br><a href="#fig1" onclick="toggleTabs('fullTab');" onmouseover="javascript:this.style.cursor='pointer'"><div class="viewWithinBtn" style="background-image: url(/scidirimg/midbg.gif);">View Within Article</div><!--viewwithinbtn--></a><br></div><!--graphTextOnly--></div><!--graphText--></div><div style="display: inline;" class="articleText"><br><p>A printed neuronal ring was obvious after 1 day in culture, as shown in <span class="refPreview" id="refp_28"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#fig2" onmouseover="RefPreview.showRef(event,'ref_fig2','refp_28')" onmouseout="RefPreview.hideRef()">Fig. 2A</a>.
Many rounded cells were seen, indicative of non-differentiated or dead
cells. Most of the cells that survived the passage through the nozzle
grew processes. Few differentiated neurons with processes were obvious
at the pattern at day 2 in culture, but after 5 days, many neurons
began to differentiate and developed processes, exhibiting a polarized
morphology (<span class="refPreview" id="refp_29"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#fig2" onmouseover="RefPreview.showRef(event,'ref_fig2','refp_29')" onmouseout="RefPreview.hideRef()">Figs. 2C and D</a>).</p></div><div class="figTblUpiOuter"><div style="display: inline;" class="graphText"><div class="graphTextOnly" style="display: none;"><hr><br></div><br><br><a name="fig2"></a><a name="2"></a><table><tbody><tr><td width="10%"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig2&amp;_ba=2&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f98088b605fa55be5788cd1971af8f08" onclick="openStrippedNS('/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig2&amp;_ba=2&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f98088b605fa55be5788cd1971af8f08'); return false;"><img src="science-direct_files/0_002.gif" title="Full-size image (92K) - Opens new window" alt="Full-size image (92K) - Opens new window" align="middle" border="1" vspace="2" width="77" height="93" hspace="2"></a></td><td valign="bottom"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig2&amp;_ba=2&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f98088b605fa55be5788cd1971af8f08" onclick="openStrippedNS('/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=fig2&amp;_ba=2&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f98088b605fa55be5788cd1971af8f08'); return false;" alt="Full-size image (92K) - Opens new window" title="Full-size image (92K) - Opens new window">Full-size image</a> (92K)</td></tr></tbody></table><p>Fig.
2. Primary motoneurons were delivered by direct inkjet printing in the
pre-designed ring patterns as indicated as at day 1 utilizing bright
field miscopy (A). Motoneurons on the ring patterns with developing
processes at day 2 observed with bright field miscopy. A few neurons
are extending their processes (B). At day 3 many of the motoneurons
exhibited a characteristic neuronal morphology as seen with bright
field miscopy (C). At day 7 the processes of two neurons have grown to
about 40 microns in length (D). Magnifications are as follows: 40× (A),
100× (B and C), and 400× (D).</p> <div class="graphTextOnly" style="display: none;"><br><a href="#fig2" onclick="toggleTabs('fullTab');" onmouseover="javascript:this.style.cursor='pointer'"><div class="viewWithinBtn" style="background-image: url(/scidirimg/midbg.gif);">View Within Article</div><!--viewwithinbtn--></a><br></div><!--graphTextOnly--></div><!--graphText--></div><div style="display: inline;" class="articleText"><br><a name="sec3.2"></a><h4 class="h4">3.2. CHO cell viability analyses</h4><p><span class="refPreview" id="refp_30"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#tbl1" onmouseover="RefPreview.showRef(event,'ref_tbl1','refp_30')" onmouseout="RefPreview.hideRef()">Table 1</a>
shows the percentages of lysed CHO cells after the bio-ink formulation
and the printing process. On average, a very small amount of cells was
lysed during the printing process, 3.3±3.7% (<i>n</i>=4); but in all
cases the number of lysed cells was below 10%. The total number of
printed cells ranged from 44,000 to 154,000 in these experiments. The
number depended on the particular pattern and the number of repetitive
nozzle firings. These numbers are well below the manual controls, which
may explain the high standard deviations. The bio-ink formulation lysed
on average 15±0.7% of the CHO cells.</p></div><div class="figTblUpiOuter"><div style="display: inline;" class="graphText"><div class="graphTextOnly" style="display: none;"><hr><br></div><a name="tbl1"></a><p>Table
1. Bio-ink formulation and printing cytotoxicity as indicated by the
combined lactate dehydrogenase (LDH) and tetrazolium compound assay
(MTS)</p> <div class="tblScrollBox"><div class="tblScroll"><img src="science-direct_files/0_005.gif" alt="Image" title="Image" align="absbottom" border="0" width="767" height="136">
<br></div><!--tblScroll--><div style="display: none;" class="tblScrollLink"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=tbl1&amp;_ba=&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_isTablePopup=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=5386d1c9cae18e5965adb626e893cf13" onclick="openStrippedNS('/science?_ob=MiamiCaptionURL&amp;_method=retrieve&amp;_udi=B6TWB-4CGM8MB-1&amp;_image=tbl1&amp;_ba=&amp;_user=10&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_isTablePopup=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=5386d1c9cae18e5965adb626e893cf13'); return false;" alt="Full-size table (9K) - Opens new window" title="Full-size table (9K) - Opens new window">Full-size table</a> (9K)</div><!--tblScrollLink--></div><!--tblScrollBox--><div class="graphTextOnly" style="display: none;"><br><a href="#tbl1" onclick="toggleTabs('fullTab');" onmouseover="javascript:this.style.cursor='pointer'"><div class="viewWithinBtn" style="background-image: url(/scidirimg/midbg.gif);">View Within Article</div><!--ViewWithinBtn--></a><br></div><!--graphTextOnly--></div><!--graphText--></div><div style="display: inline;" class="articleText"><h3 class="h3"><a name="sec4"></a>4. Discussion</h3><a name="sec4.1"></a><h4 class="h4">4.1. Cell printing and viability</h4><p>By
replacing the regular print ink, the cell suspensions can be considered
“bio-ink” that could be delivered using a commercial, thermal-based
inkjet printer. Our previous study proved the ability to print viable
bacteria directly by the inkjet printing method [<span class="refPreview" id="refp_31"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib16" onmouseover="RefPreview.showRef(event,'ref_bib16','refp_31')" onmouseout="RefPreview.hideRef()">16</a>].
However, it had not been reported whether viable mammalian cells, the
cells needed for building engineered tissues and organs, could be used
as a bio-ink and printed directly by a commercial inkjet printer. Since
the physiological properties of mammalian cells strongly depend on the
culture conditions and they are much more sensitive to heat and
mechanical stress, there was a major concern that the cells could be
damaged or lysed by the conditions present during thermal printing. The
temperature in the nozzle of the cartridge can be 300°C or higher [<a name="bbib22"></a><span class="refPreview" id="refp_32"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib22" onmouseover="RefPreview.showRef(event,'ref_bib22','refp_32')" onmouseout="RefPreview.hideRef()">22</a>].
The present study indicates, however, that viable CHO cells and primary
motoneurons can be delivered successfully by using a modified inkjet HP
printer, and most of these cells (&gt;90%) were not lysed during
printing as shown in <span class="refPreview" id="refp_33"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#tbl1" onmouseover="RefPreview.showRef(event,'ref_tbl1','refp_33')" onmouseout="RefPreview.hideRef()">Table 1</a>.</p><p>These data confirm our previous analysis, that cells can survive thermal printing under low power conditions [<span class="refPreview" id="refp_34"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib16" onmouseover="RefPreview.showRef(event,'ref_bib16','refp_34')" onmouseout="RefPreview.hideRef()">16</a>].
The HP inkjet printer technology is based on vaporizing a
micrometer-sized layer of liquid in contact with a thin film resistor.
As the timescales involved in the drop ejection process are small,
there is not enough time for heat to diffuse into the bulk liquid.
While the surface in contact with the liquid can peak at 250–350°C, the
bulk liquid does not rise more than a couple (approximately 4–10°C)
degrees above ambient [<a name="bbib23"></a><span class="refPreview" id="refp_35"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib23" onmouseover="RefPreview.showRef(event,'ref_bib23','refp_35')" onmouseout="RefPreview.hideRef()">23</a>].
This situation could change however, depending on the liquid
thermophysical properties of the ink. Although mammalian cells are more
sensitive to high heat and strong mechanical stress than bacteria,
their volume is also relatively small compared to the total volume of
the printed droplet. The fact that these mammalian cells are viable,
can proliferate and differentiate indicates that damage from the heat
and mechanical stress during the very short timescale of printing is
avoided. Moreover, the 3× PBS used for the cell print suspensions could
have caused a further decrease in cell volume, because they are
expected to shrink by osmosis in this hypertonic solution, effectively
preventing clogging of the nozzle during cell printing. This would come
at the expense of higher cell death in the ink formulation. However,
once deposited on the gel, the CHO cells returned to their normal shape
and morphology to a great extent. The survival of motoneurons was
indicated by the outgrowth of their processes and the establishment of
polarized morphologies ( <span class="refPreview" id="refp_36"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#fig2" onmouseover="RefPreview.showRef(event,'ref_fig2','refp_36')" onmouseout="RefPreview.hideRef()">Figs. 2B–D</a>). However, the lengths of the processes were shorter than that observed in the standard 2D culture [<span class="refPreview" id="refp_37"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib21" onmouseover="RefPreview.showRef(event,'ref_bib21','refp_37')" onmouseout="RefPreview.hideRef()">21</a>].
One of the possible reasons could be related to the use of the 3D
collagen gel based bio-paper. Prior studies have found that increasing
collagen concentration will decrease the neurite outgrowth [<a name="bbib24"></a><span class="refPreview" id="refp_38"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib24" onmouseover="RefPreview.showRef(event,'ref_bib24','refp_38')" onmouseout="RefPreview.hideRef()">24</a>].</p><p>Inkjet
printers based on piezo-electric technology may also be modified for
cell printing as they have many applications in ceramics and polymer
printing. However, there are some challenges in adapting commercial
piezo-printers for printing mammalian cells. For many reasons,
including minimizing ink leakage and preventing formation of mist,
commercial piezo-printers use a more viscous ink. This helps eliminate
the need for complex fluid gates between the ink cartridge and
printhead to prevent the ink from backflowing. However, this comes at
the expense of requiring more power and higher vibration frequencies,
both of which can break and damage the cell membranes. Typical
commercial piezo-printers use frequencies up to 30&nbsp;kHz and power
sources ranging from 12 to 100&nbsp;W. This becomes a problem because
vibrating frequencies ranging from 15 to 25&nbsp;kHz and power sources
from 10 to 375&nbsp;W are often used to disrupt cell membranes [<a name="bbib25"></a><span class="refPreview" id="refp_39"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib25" onmouseover="RefPreview.showRef(event,'ref_bib25','refp_39')" onmouseout="RefPreview.hideRef()">25</a>].
Adapting piezo-printers for less viscous ink to lower the frequency and
power would be challenging, since ink leakage and mist formation during
printing could obscure the pattern. While these problems may be
overcome, this study focused on adaptation of commercial printers
without significant redesigning.</p><a name="sec4.2"></a><h4 class="h4">4.2. Bio-paper</h4><p>Cell
printing is different from printing of bioactive molecules such as DNA
or proteins. While the latter are deposited onto dry substrates, and
thus dry out quickly after deposition, the former require suitable
materials to prevent drying of the cells. Viability of the cells is
strongly affected by the drying process of the ink droplets after
printing. We have earlier pointed to hydrogels as a possible solution
to the drying problem [<span class="refPreview" id="refp_40"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib19" onmouseover="RefPreview.showRef(event,'ref_bib19','refp_40')" onmouseout="RefPreview.hideRef()">19</a>]
as they can provide the cells with water as well as nutrients and
mechanical support during this time. Two different hydrogels were used
as substrates in this study. For the fast, anchorage independent
proliferating CHO cells, a gel that limits the migration was needed;
thus soy agar hydrogels were used. With no or limited cell motility,
CHO cells survived and multiplied only around the positions where they
were printed, thus allowing the CHO cell pattern to fuse into to a
clear ring rather than a disk. For the anchorage dependent motoneurons,
a gel that promoted differentiation was needed. Soy agar gel could not
be used as a substrate for neuronal printing and pattering as neurons
are thought to be difficult to differentiate on the soy agar gels [<a name="bbib26"></a><span class="refPreview" id="refp_41"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib26" onmouseover="RefPreview.showRef(event,'ref_bib26','refp_41')" onmouseout="RefPreview.hideRef()">26</a>]. Since collagen had been shown to promote neuron differentiation [<a name="bbib27"></a><span class="refPreview" id="refp_42"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib27" onmouseover="RefPreview.showRef(event,'ref_bib27','refp_42')" onmouseout="RefPreview.hideRef()">27</a>],
the collagen gel-based bio-paper was used for the neuronal printing.
These two gels were chosen because they ensured cell survival, division
and differentiation for cells representing either less or fully
differentiated phenotypes.</p><p>The behaviors of cells on or within the bio-paper are directed by cell–material interactions [<span class="refPreview" id="refp_43"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib3" onmouseover="RefPreview.showRef(event,'ref_bib3','refp_43')" onmouseout="RefPreview.hideRef()">3</a> and <a name="bbib28"></a><span class="refPreview" id="refp_44"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib28" onmouseover="RefPreview.showRef(event,'ref_bib28','refp_44')" onmouseout="RefPreview.hideRef()">28</a>].
Recently, it was demonstrated that the self-assembling and/or fusion of
CHO aggregates embedded into 3D hydrogels depended greatly on the
magnitude of cell–cell and cell–matrix interactions in the 3D systems [<span class="refPreview" id="refp_45"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib17" onmouseover="RefPreview.showRef(event,'ref_bib17','refp_45')" onmouseout="RefPreview.hideRef()">17</a> and <a name="bbib29"></a><span class="refPreview" id="refp_46"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib29" onmouseover="RefPreview.showRef(event,'ref_bib29','refp_46')" onmouseout="RefPreview.hideRef()">29</a>].
It was found, depending on the amount of cell adhesive ligands in the
gel, that CHO aggregates either fused into a torodial 3D structure
(when using RGD containing NeuroGel or 1.0&nbsp;mg/ml collagen gel) or
dispersed into the surrounding matrix (when using 1.7&nbsp;mg/ml
collagen gel). These findings could lead to the creation of functional
bio-papers, especially when combined with our previous report of
collagen printing [<span class="refPreview" id="refp_47"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib15" onmouseover="RefPreview.showRef(event,'ref_bib15','refp_47')" onmouseout="RefPreview.hideRef()">15</a>].
Collagen, RGD, or other cell-adhesion molecules could be printed first
using a separate nozzle before delivering the cells as a second step to
achieve this goal. Such multiprocessing would combine functional
bio-papers for controlled cell–gel interactions, with automated
delivery of cells, resulting in self-organization of cells or cell
aggregates into metastable tissue structures of the desired shape.</p><a name="sec4.3"></a><h4 class="h4">4.3. The cell printer and biocompatibility</h4><p>Few
tools have been applied effectively to date to directly deliver viable
cells onto pre-defined patterns for the purposes of cell patterning and
tissue construction [<a name="bbib30"></a><span class="refPreview" id="refp_48"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib30" onmouseover="RefPreview.showRef(event,'ref_bib30','refp_48')" onmouseout="RefPreview.hideRef()">30</a>]. The laser-directed cell writing system is one of the few examples of direct cell placement [<a name="bbib31"></a><span class="refPreview" id="refp_49"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib31" onmouseover="RefPreview.showRef(event,'ref_bib31','refp_49')" onmouseout="RefPreview.hideRef()">31</a>].
Limited throughput and the difficulties in extending this technology
into 3D constructs, however, have limited its potential application
into product development or tissue construction. By definition a
non-contact technique [<a name="bbib32"></a><span class="refPreview" id="refp_50"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib32" onmouseover="RefPreview.showRef(event,'ref_bib32','refp_50')" onmouseout="RefPreview.hideRef()">32</a>],
inkjet printers combine micro-electronic, micro-mechanic, and computer
elements into a simple, yet efficient platform, offering a new a
paradigm for the precise delivery of bio-ink droplets onto exact
positions on a substrate. Inspired by traditional inkjet technology,
bio-printers have been developed to perform the computer-assisted
deposition of natural materials, including bioactive molecules [<span class="refPreview" id="refp_51"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib18" onmouseover="RefPreview.showRef(event,'ref_bib18','refp_51')" onmouseout="RefPreview.hideRef()">18</a>], biomolecules [<span class="refPreview" id="refp_52"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib13" onmouseover="RefPreview.showRef(event,'ref_bib13','refp_52')" onmouseout="RefPreview.hideRef()">13</a>, <span class="refPreview" id="refp_53"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib14" onmouseover="RefPreview.showRef(event,'ref_bib14','refp_53')" onmouseout="RefPreview.hideRef()">14</a> and <span class="refPreview" id="refp_54"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib15" onmouseover="RefPreview.showRef(event,'ref_bib15','refp_54')" onmouseout="RefPreview.hideRef()">15</a>] and cells [<span class="refPreview" id="refp_55"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib16" onmouseover="RefPreview.showRef(event,'ref_bib16','refp_55')" onmouseout="RefPreview.hideRef()">16</a> and <span class="refPreview" id="refp_56"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib19" onmouseover="RefPreview.showRef(event,'ref_bib19','refp_56')" onmouseout="RefPreview.hideRef()">19</a>].
Direct patterning of viable mammalian cells onto hydrogel-bases papers
using our cell printer could be a significant advance in living
biomaterial processing and shows progress in our understanding and
manipulation of natural systems. The cell printer juxtaposes
electronic, mechanic, and biomaterial platforms, and is compatible with
all key elements required for precise arrangement of viable cell in
tissue engineering, as well as those of the control of biological
molecules [<span class="refPreview" id="refp_57"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib13" onmouseover="RefPreview.showRef(event,'ref_bib13','refp_57')" onmouseout="RefPreview.hideRef()">13</a>].
Moreover, this cell printer provides a useful tool for building 3D
living tissues or even organ substitutes, especially when used in
combination with the ability to print other cell-friendly materials or
scaffolds adjacent to viable cells, as shown by our previous work to
rapidly fabricate cell patterns [<span class="refPreview" id="refp_58"></span><a onclick="toggleTabs('fullTab')" href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4CGM8MB-1&amp;_user=108429&amp;_coverDate=01%2F31%2F2005&amp;_rdoc=1&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;_sort=d&amp;_docanchor=&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f74163947b3d8c9759985d09f284b7c9#bib15" onmouseover="RefPreview.showRef(event,'ref_bib15','refp_58')" onmouseout="RefPreview.hideRef()">15</a>].
While this initial study was mainly concerned with the survivability of
mammalian cells, future studies will need to optimize bio-ink and
bio-paper formulations for this technology to be successfully used in
the field of tissue engineering.</p><a name="sec5"></a><h3 class="h3">5. Conclusions</h3><p>The
CHO and motoneuron cells were successfully printed through the nozzles
of a thermal inkjet printer. The printed cells were deposited onto
gel-based bio-papers with different adhesive properties to form
pre-defined patterns. The analysis of the CHO cell viability showed
that more than 90% of cells were not damaged during the nozzle firing.
An exciting combination of off-the-shelf inkjet printing and viable
biomaterials was demonstrated for cell patterning and now could be
adapted to the application of tissue engineering. With the obvious
advantages of high throughput and flexibility, this bottom-up
technology offers researchers a cost-effective tool to rapidly
fabricate cell patterns and tissue-like structures.</p> </div><!-- articleText -->

<div style="display: inline;" class="articleText">
<a name="ack1"></a><h3 class="h3">Acknowledgements </h3><p>The authors
would like to acknowledge other members of the Clemson Bioengineering
Department whose help has made this study possible. We would thank the
Hunter Chair Endowment, IPTO office of DARPA (grant #
N65236-01-1-7400), and the Department of Energy (grant #
DE-FG02-00ER-45856) for funding this project.</p> </div><!-- articleText -->

<div style="display: inline;" class="refText">
<a name="bibl1"></a><h3 class="h3">References</h3><p><a name="bib1"></a></p><div id="ref_bib1"><a onclick="toggleTabs('fullTab')" href="#bbib1">1.</a> J.R. Fuchs, B.A. Nasseri and J.P. Vacanti, Tissue engineering: a 21st century solution to surgical reconstruction. <i>Ann Thorac Surg</i> <strong>72</strong> 2 (2001), pp. 577–591. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6T11-43N73KF-20&amp;_user=108429&amp;_coverDate=08%2F31%2F2001&amp;_fmt=full&amp;_orig=search&amp;_cdi=4877&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=3aee049a9b1f2052f99912a58657cd26&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6T11-43N73KF-20-N&amp;_cdi=4877&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=08%2F31%2F2001&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=f0555aa4619c8eccb38abd3eebf0bcd7&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (3346 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0034904632%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D615c665e99665955c918e5f2bfa06513&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=e1bfd1bc1bba41d81d7d31f74b69d122" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0034904632%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D615c665e99665955c918e5f2bfa06513&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=180ce8c8bbb1dc744cc5be7d9fc18e51" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (117)</a></div><p></p><p><a name="bib2"></a></p><div id="ref_bib2"><a onclick="toggleTabs('fullTab')" href="#bbib2">2.</a> J.L. Drury and D.J. Mooney, Hydrogels for tissue engineering: scaffold design variables and applications. <i>Biomaterials</i> <strong>24</strong> 24 (2003), pp. 4337–4351. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-48XSDPX-4&amp;_user=108429&amp;_coverDate=11%2F30%2F2003&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=1345c38a91dd101e59f856c92934ad91&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6TWB-48XSDPX-4-K&amp;_cdi=5558&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=11%2F30%2F2003&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=bc3296d814e29c726b3f454e01ff356f&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (484 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0042061223%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D6af1c56911d924f1bf9bd90b35e677d9&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=864febc9cf059673d87ccb6e1688c719" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0042061223%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D6af1c56911d924f1bf9bd90b35e677d9&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d2e18875c6fceb69db7c578d7d177aff" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (350)</a></div><p></p><p><a name="bib3"></a></p><div id="ref_bib3"><a onclick="toggleTabs('fullTab')" href="#bbib3">3.</a> L.G. Griffith and G. Naughton, Tissue engineering—current challenges and expanding opportunities. <i>Science</i> <strong>295</strong> 5557 (2002), pp. 1009–1014.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1126%2Fscience.1069210&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=30cc66df0282e46bcdc0f7db1b3d3f44" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-18244366662%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D13155b9e89ef725d7cf0d3917c66c429&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=395d2199322e86f898e740715600a785" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-18244366662%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D13155b9e89ef725d7cf0d3917c66c429&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=269efe5d04fc55d5c3513bb0cf7f44c7" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (519)</a></div><p></p><p><a name="bib4"></a></p><div id="ref_bib4"><a onclick="toggleTabs('fullTab')" href="#bbib4">4.</a>
G.J.M. Cabrita, B.S. Ferreira, C. Lobato da Silva, R. Gonçalves, G.
Almeida-Porada and J.M.S. Cabral, Hematopoietic stem cells: from the
bone to the bioreactor. <i>Trends Biotechnol</i> <strong>21</strong> (2003), pp. 233–240. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TCW-48715NG-1&amp;_user=108429&amp;_coverDate=05%2F31%2F2003&amp;_fmt=full&amp;_orig=search&amp;_cdi=5181&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=574764c156c502048d8008c55f356efd&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6TCW-48715NG-1-5&amp;_cdi=5181&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=05%2F31%2F2003&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=993d63567060ffe8e6bd705a923332d2&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (192 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0037408143%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D9db73034932a9fd8eb7840b66e4671ba&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=be5b26d2638cc2d9d2438c7ee740352e" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0037408143%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D9db73034932a9fd8eb7840b66e4671ba&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=e30c72deacbd2cd15ee7dd556b8157dd" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (26)</a></div><p></p><p><a name="bib5"></a></p><div id="ref_bib5"><a onclick="toggleTabs('fullTab')" href="#bbib5">5.</a> U.A. Stock and J.P. Vacanti, Tissue engineering: current state and prospects. <i>Annu Rev Med</i> <strong>52</strong> (2001), pp. 443–451.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1146%2Fannurev.med.52.1.443&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=512b7758d9e6edd859a81005b7db520c" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0035129867%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Dcabca79182b61395b258bf5599112deb&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=22680bcd9dc2759f63291a96eb02df2a" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0035129867%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Dcabca79182b61395b258bf5599112deb&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=17fffdc7690c0074bb63f058ffc30b2c" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (139)</a></div><p></p><p><a name="bib6"></a></p><div id="ref_bib6"><a onclick="toggleTabs('fullTab')" href="#bbib6">6.</a>
T. Maemura, M. Shin, M. Sato, H. Mochizuki and J.P. Vacanti, A
tissue-engineered stomach as a replacement of the native stomach. <i>Transplantation</i> <strong>76</strong> 1 (2003), pp. 61–65.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1097%2F01.TP.0000068903.63554.1B&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=abbe429e49daf64ec82abab4b166f59c" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0037623972%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D03f9f8bb821c09f925344c3669557a73&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=be6fffe4d2567f512105e2b01fc32655" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0037623972%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D03f9f8bb821c09f925344c3669557a73&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=8f702183a9e6387aeb0d9eacfc2783c4" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (8)</a></div><p></p><p><a name="bib7"></a></p><div id="ref_bib7"><a onclick="toggleTabs('fullTab')" href="#bbib7">7.</a>
T. Grikscheit, E.R. Ochoa, A. Srinivasan, H. Gaissert and J.P. Vacanti,
Tissue-engineered esophagus: experimental substitution by onlay patch
or interposition. <i>J Thorac Cardiovasc Surg</i> <strong>126</strong> 2 (2003), pp. 537–544. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6WMF-4991FX6-2D&amp;_user=108429&amp;_coverDate=08%2F31%2F2003&amp;_fmt=full&amp;_orig=search&amp;_cdi=6933&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=510f6e044b2a9060db8b7a0368db96a4&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6WMF-4991FX6-2D-R&amp;_cdi=6933&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=08%2F31%2F2003&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=0f4cb7ad4ddbeda67b8d4058096211d0&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (466 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0041353730%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D729f824ecc1ee7590405ef6dcdcd2ff9&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=92c2fc0ac57b39a0e836e00227308eff" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0041353730%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D729f824ecc1ee7590405ef6dcdcd2ff9&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=e54ff1781babde7a4f0e2df116d0d7bb" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (25)</a></div><p></p><p><a name="bib8"></a></p><div id="ref_bib8"><a onclick="toggleTabs('fullTab')" href="#bbib8">8.</a>
M.P. Vacanti, J.L. Leonard, B. Dore, L.J. Bonassar, Y. Cao, S.J.
Stachelek, J.P. Vacanti, F. O’Connell, C.S. Yu, A.P. Farwell and C.A.
Vacanti, Tissue-engineered spinal cord. <i>Transplant P</i> <strong>33</strong> 1–2 (2001), pp. 592–598. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6VJ0-42M793F-B1&amp;_user=108429&amp;_coverDate=03%2F31%2F2001&amp;_fmt=full&amp;_orig=search&amp;_cdi=6080&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=d8bf29f0c2ebfe74b6524601dc6708ba&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6VJ0-42M793F-B1-F&amp;_cdi=6080&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=03%2F31%2F2001&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=7ba7b5741269597f34f38fb3c635c608&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (540 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0035080539%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Df94a2e4ec91bc56a6b55ac2ca63e9f00&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=1cc6e16948ffd68f56ae236c44f2dc43" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0035080539%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Df94a2e4ec91bc56a6b55ac2ca63e9f00&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d37d3f5ca5197a0362c733c9c19be8cd" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (30)</a></div><p></p><p><a name="bib9"></a></p><div id="ref_bib9"><a onclick="toggleTabs('fullTab')" href="#bbib9">9.</a> J.P. Vacanti, Tissue and organ engineering: can we build intestine and vital organs?. <i>J Gastrointest Surg</i> <strong>7</strong> 7 (2003), pp. 831–835. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6W8T-49V9HDY-3&amp;_user=108429&amp;_coverDate=11%2F30%2F2003&amp;_fmt=full&amp;_orig=search&amp;_cdi=6663&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=d4ad1f7da4a614f585aa67dd0d53a951&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6W8T-49V9HDY-3-9&amp;_cdi=6663&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=11%2F30%2F2003&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=6031afbc4e030857dad42e4314d5295b&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (357 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1007%2Fs11605-003-0026-8&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=ca7f5a056ac7173a120f61dca2fdaa08" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0242302563%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D1d259774fc062db7edbd931f85a2548f&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=a7405c2dfdd220e72d8332429fc1b7b6" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0242302563%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D1d259774fc062db7edbd931f85a2548f&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=26b565ad03e05af9274e8a5d1c4f7fff" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (12)</a></div><p></p><p><a name="bib10"></a></p><div id="ref_bib10"><a onclick="toggleTabs('fullTab')" href="#bbib10">10.</a> W. Sun, A. Darling, B. Starly and J. Nam, Computer aided tissue engineering Part I: overview, scope and challenges. <i>Biotechnol Appl Biochem</i> <strong>39</strong> pt 1 (2003), pp. 29–47.</div><p></p><p><a name="bib11"></a></p><div id="ref_bib11"><a onclick="toggleTabs('fullTab')" href="#bbib11">11.</a> H.P. Le, Progress and trends in ink-jet printing technology. <i>J Imaging Sci Technol</i> <strong>42</strong> (1998), pp. 49–62.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0031683832%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Db1ef14d6980785721c8af6dd2bf21faa&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=aebc343418588b9bc46f68211af7e745" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0031683832%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Db1ef14d6980785721c8af6dd2bf21faa&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=5d76178d831a0613604b3d28794c02b6" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (153)</a></div><p></p><p><a name="bib12"></a></p><div id="ref_bib12"><a onclick="toggleTabs('fullTab')" href="#bbib12">12.</a> A.V. Lemmo, D.J. Rose and T.C. Tisone, Inkjet dispensing technology: applications in drug discovery. <i>Curr Opin Biotechnol</i> <strong>9</strong> 6 (1998), pp. 615–617. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6VRV-466NMVV-C&amp;_user=108429&amp;_coverDate=12%2F31%2F1998&amp;_fmt=abstract&amp;_orig=search&amp;_cdi=6244&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=038840c67e64d543a191834d81b93756&amp;ref=full">Abstract</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6VRV-466NMVV-C-1&amp;_cdi=6244&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=12%2F31%2F1998&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=24697cc9c494e313e8c9b1e455f8baa6&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (363 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0032401681%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Dbc6c25c108c8d7649c187e5672b8d9c7&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=9dcf1974be0c300de52a06bc62f28a09" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0032401681%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Dbc6c25c108c8d7649c187e5672b8d9c7&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d2d410767da39cfbc5141e26855dd546" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (55)</a></div><p></p><p><a name="bib13"></a></p><div id="ref_bib13"><a onclick="toggleTabs('fullTab')" href="#bbib13">13.</a> T. Okamoto, T. Suzuki and N. Yamamoto, Microarray fabrication with covalent attachment of DNA using bubble jet technology. <i>Nat Biotechnol</i> <strong>18</strong> 4 (2000), pp. 438–441.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0034056315%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D05976f07a53b45a86add08214de09197&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=2b26638771f9c250b9e24eb6547173d5" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0034056315%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D05976f07a53b45a86add08214de09197&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=441c157756592bdfdd02980579aee9c9" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (208)</a></div><p></p><p><a name="bib14"></a></p><div id="ref_bib14"><a onclick="toggleTabs('fullTab')" href="#bbib14">14.</a> A. Roda, M. Guardigli, C. Russo, P. Pasini and M. Baraldini, Protein microdeposition using a conventional ink-jet printer. <i>Biotechniques</i> <strong>28</strong> 3 (2000), pp. 492–496.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0034060605%26partnerID%3D10%26rel%3DR3.0.0%26md5%3De11a51677ff39fde48e5852d8ec315f6&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=0a292cb4651617087ed1e24c25aecc2c" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0034060605%26partnerID%3D10%26rel%3DR3.0.0%26md5%3De11a51677ff39fde48e5852d8ec315f6&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=54056eb623ea80a842d3d764eee9201b" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (73)</a></div><p></p><p><a name="bib15"></a></p><div id="ref_bib15"><a onclick="toggleTabs('fullTab')" href="#bbib15">15.</a> E.A. Roth, T. Xu, M. Das, C. Gregory, J.J. Hickman and T. Boland, Inkjet printing for high-throughput cell patterning. <i>Biomaterials</i> <strong>25</strong> 17 (2004), pp. 3707–3715. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TWB-4B7N7BJ-1&amp;_user=108429&amp;_coverDate=08%2F31%2F2004&amp;_fmt=full&amp;_orig=search&amp;_cdi=5558&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f8e9eb48ff78079cf77427cd2c5899fb&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6TWB-4B7N7BJ-1-1&amp;_cdi=5558&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=08%2F31%2F2004&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=b98bed56eec62b5969a030481a8bedcc&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (579 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-1542328767%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D2f0355caf417f1fc0e4a93bb72d1a6ab&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d236c4640f65e4966911e9703c0e8e98" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-1542328767%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D2f0355caf417f1fc0e4a93bb72d1a6ab&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=493863f500ab131ee32aecf93d9f4754" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (88)</a></div><p></p><p><a name="bib16"></a></p><div id="ref_bib16"><a onclick="toggleTabs('fullTab')" href="#bbib16">16.</a>
T. Xu, S. Petridou, E.H. Lee, E.A. Roth, N. Vyavahare, J.J. Hickman and
T. Boland, Construction of high-density bacterial colony arrays and
patterns by the ink jet method. <i>Biotechnol Bioeng</i> <strong>85</strong> 1 (2004), pp. 29–33.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1002%2Fbit.10768&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=96514cdb4560d8b18cbc58c24bb6729a" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0347761258%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Da09ff446ec2d3a5c0449aa3eb94450ed&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=b47fba6f32e5ecc88cecf590a6d7c809" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0347761258%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Da09ff446ec2d3a5c0449aa3eb94450ed&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=9a2bc172850312934bdfb6605589cffd" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (36)</a></div><p></p><p><a name="bib17"></a></p><div id="ref_bib17"><a onclick="toggleTabs('fullTab')" href="#bbib17">17.</a> V. Mironov, T. Boland, T. Trusk, G. Forgacs and R.R. Markwald, Organ printing: computer-aided jet-based 3D tissue engineering. <i>Trends Biotechnol</i> <strong>21</strong> 4 (2003), pp. 157–161. <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=ArticleURL&amp;_udi=B6TCW-480CN44-2&amp;_user=108429&amp;_coverDate=04%2F30%2F2003&amp;_fmt=full&amp;_orig=search&amp;_cdi=5181&amp;view=c&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=4aa1243c41fbd605df293f603cd167a9&amp;ref=full"><b>Article</b></a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiImageURL&amp;_imagekey=B6TCW-480CN44-2-9&amp;_cdi=5181&amp;_user=108429&amp;_check=y&amp;_orig=search&amp;_coverDate=04%2F30%2F2003&amp;view=c&amp;wchp=dGLbVzW-zSkWA&amp;md5=e071e0ff90dba571771a8a1e1f80244e&amp;ie=/sdarticle.pdf" target="newPdfWin" onclick="var newWidth=((document.body.clientWidth*90)/100); var newHeight=document.body.clientHeight; var pdfWin; pdfWin=window.open('','newPdfWin','width='+newWidth+',height='+newHeight+',resizable=yes, left=50, top=50');pdfWin.focus()"><img name="pdf" style="vertical-align: middle;" src="science-direct_files/icon_pdf.gif" alt="" border="0"> PDF (1383 K)</a>

 |  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0242668870%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D0d808f526f88a1f17f73db9d95843d55&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=5a9363595dd8b723537cdd6a4e7d0331" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0242668870%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D0d808f526f88a1f17f73db9d95843d55&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d27cfb741e4a980fe6540574543dafa6" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (158)</a></div><p></p><p><a name="bib18"></a></p><div id="ref_bib18"><a onclick="toggleTabs('fullTab')" href="#bbib18">18.</a>
L.F. Pardo and T. Boland, Characterization of patterned self-assembled
monolayers and protein arrays generated by the ink-jet method. <i>Langmuir.</i> <strong>19</strong> (2003), pp. 1462–1466.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1021%2Fla026171u&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=cf37d9da1d961f35d9f1d79cfa667c2e" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0037418416%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D23a1f37acb693ec0e36e029991d3ee45&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=b155ccd1f0bb5acde841440360b3830c" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0037418416%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D23a1f37acb693ec0e36e029991d3ee45&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=40803a756a3a4dfa763d082ec0231941" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (53)</a></div><p></p><p><a name="bib19"></a></p><div id="ref_bib19"><a onclick="toggleTabs('fullTab')" href="#bbib19">19.</a> W.C. Wilson and T. Boland, Cell and organ printing 1: protein and cell printers. <i>Anat Rec Part A</i> <strong>272A</strong> 2 (2003), pp. 491–496.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1002%2Far.a.10057&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=c96e23bbcda21c5fdac8b471694eab9e" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0043122970%26partnerID%3D10%26rel%3DR3.0.0%26md5%3De1730e6f934a60711a6e440b0621c0be&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=81169a5a52fbad5b8d8a6bb31e900cf8" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0043122970%26partnerID%3D10%26rel%3DR3.0.0%26md5%3De1730e6f934a60711a6e440b0621c0be&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=d8f3a2c8fda209a36eb303f8abb5ddc9" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (73)</a></div><p></p><p><a name="bib20"></a></p><div id="ref_bib20"><a onclick="toggleTabs('fullTab')" href="#bbib20">20.</a> E.E. Robinson, K.M. Zazzali, S.A. Corbett and R.A. Foty, <i>α</i>5<i>β</i>1 Integrin mediates strong tissue cohesion. <i>J Cell Sci</i> <strong>116</strong> 2 (2002), pp. 377–386.</div><p></p><p><a name="bib21"></a></p><div id="ref_bib21"><a onclick="toggleTabs('fullTab')" href="#bbib21">21.</a>
M. Das, P. Molnar, H. Devaraj, M. Poeta and J.J. Hickman,
Electrophysiological and morphological characterization of rat
embryonic motoneurons in a defined system. <i>Biotechnol Prog</i> <strong>19</strong> 6 (2003), pp. 1756–1761.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1021%2Fbp034076l&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=784aaf5ec5c65370b11d58b4d721471e" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0346783284%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D6bf4159e8a1835cd81bd5247880dad84&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=f01bda71a10495694bda35c7f31071b2" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0346783284%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D6bf4159e8a1835cd81bd5247880dad84&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=3be5777a50950acf267cea47aaed574f" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (19)</a></div><p></p><p><a name="bib22"></a></p><div id="ref_bib22"><a onclick="toggleTabs('fullTab')" href="#bbib22">22.</a> P. Calvert, Inkjet printing for materials and devices. <i>Chem Mater</i> <strong>13</strong> 10 (2001), pp. 3299–3305.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1021%2Fcm0101632&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=a2e349012bf3c37b7b7871613a50890b" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0034773430%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Dcaf7d73d0e02c65af7c309c3cdf7143d&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=1b5bcc97a3f8e0ebf2bc1f03a741fe6f" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0034773430%26partnerID%3D10%26rel%3DR3.0.0%26md5%3Dcaf7d73d0e02c65af7c309c3cdf7143d&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=454989463ea0826d87a20a7e61839264" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (240)</a></div><p></p><p><a name="bib23"></a></p><div id="ref_bib23"><a onclick="toggleTabs('fullTab')" href="#bbib23">23.</a> Julio Cartagena, HP R&amp;D, ISB Americas, personal communication.</div><p></p><p><a name="bib24"></a></p><div id="ref_bib24"><a onclick="toggleTabs('fullTab')" href="#bbib24">24.</a>
C.E. Krewson, S.W. Chung, W.G. Dai and W.M. Saltzman, Cell-aggregation
and neurite growth in gels of extracellular-matrix molecules. <i>Biotechnol Bioeng</i> <strong>43</strong> (1994), pp. 555–562.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1002%2Fbit.260430704&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=eda5cbdc396a0380571f5091592f8fc7" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0028397117%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D4acb6dd16eb2188e1fecb3839f32fe08&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=6be2662b3c0cc6bc20ad62bd8a557201" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0028397117%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D4acb6dd16eb2188e1fecb3839f32fe08&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=c06142b13e588107a3669386e0ef787a" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (28)</a></div><p></p><p><a name="bib25"></a></p><div id="ref_bib25"><a onclick="toggleTabs('fullTab')" href="#bbib25">25.</a> K.R. Simons, R.J. Morton, D.A. Mosier, R.W. Fulton and A.W. Confer, Comparison of the <i>Pasteurella haemolytica</i> A1 envelope proteins obtained by two cell disruption methods. <i>J Clin Microbiol</i> <strong>27</strong> 4 (1989), pp. 664–667.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0024515427%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D478f79b7533a522a8ba05d402d2f72f7&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=91ef749eea22a9156cd8af68347dbf97" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0024515427%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D478f79b7533a522a8ba05d402d2f72f7&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=4e471fd4bc20a4c38b7601065c8a935b" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (8)</a></div><p></p><p><a name="bib26"></a></p><div id="ref_bib26"><a onclick="toggleTabs('fullTab')" href="#bbib26">26.</a>
S.M. O’Connor, D.A. Stenger, K.M. Shaffer and W. Ma, Survival and
neurite outgrowth of rat cortical neurons in three-dimensional agarose
and collagen gel matrices. <i>Neurosci Lett</i> <strong>304</strong> 3 (2001), pp. 189–193.</div><p></p><p><a name="bib27"></a></p><div id="ref_bib27"><a onclick="toggleTabs('fullTab')" href="#bbib27">27.</a>
S.M. O’Connor, D.A. Stenger, K.M. Shaffer, D. Maric, J.L. Barker and W.
Ma, Primary neural precursor cell expansion, differentiation and
cytosolic Ca(2+) response in three-dimensional collagen gel. <i>J Neurosci Methods</i> <strong>102</strong> 2 (2000), pp. 187–195.</div><p></p><p><a name="bib28"></a></p><div id="ref_bib28"><a onclick="toggleTabs('fullTab')" href="#bbib28">28.</a>
P.L. Ryan, R.A. Foty, J. Kohn and M.S. Steinberg, Tissue spreading on
implantable substrates is a competitive outcome of cell–cell vs.
cell–substratum adhesivity. <i>Proc Natl Acad Sci USA</i> <strong>98</strong> 8 (2001), pp. 4323–4327.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1073%2Fpnas.071615398&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=2b10682500a84b4454951f6250860880" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0035836686%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D61b6b503cfcbe455caffa387c6551e7b&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=fddca0247726d171a0e8b3dfefefcd04" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0035836686%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D61b6b503cfcbe455caffa387c6551e7b&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=a26404209e60d906a8a43f3f1583ae01" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (55)</a></div><p></p><p><a name="bib29"></a></p><div id="ref_bib29"><a onclick="toggleTabs('fullTab')" href="#bbib29">29.</a>
K. Jakab, A. Neagu, V. Mironov, R.R. Markwald and G. Forgacs,
Engineering biological structures of prescribed shape using
self-assembling multicellular systems. <i>Proc Natl Acad Sci USA</i> <strong>101</strong> 9 (2004), pp. 2864–2869.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1073%2Fpnas.0400164101&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=347a9082225574e461a3250b1d300c15" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-1542267824%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D5a54f8a71a61eae95e2f7a6e0ce0672a&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=34edea5d4587c55b39b922fdb5975841" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-1542267824%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D5a54f8a71a61eae95e2f7a6e0ce0672a&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=a7e44774b38f5f208ea2c9cf3e76c7d1" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (53)</a></div><p></p><p><a name="bib30"></a></p><div id="ref_bib30"><a onclick="toggleTabs('fullTab')" href="#bbib30">30.</a> V. Mironov, Printing technology to produce living tissue. <i>Expert Opin Biol Ther</i> <strong>3</strong> 5 (2003), pp. 701–704.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1517%2F14712598.3.5.701&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=da66b1c682ed54d2898ec003e9cfa918" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0042671269%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D92f83230b1cb42e4bb2068411569e321&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=26e97581c4d78b5cc7d9ec938a658dde" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0042671269%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D92f83230b1cb42e4bb2068411569e321&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=56053b89eba47572515245bae7d7b6a7" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (7)</a></div><p></p><p><a name="bib31"></a></p><div id="ref_bib31"><a onclick="toggleTabs('fullTab')" href="#bbib31">31.</a> D.J. Odde and M.J. Renn, Laser-guided direct writing of living cells. <i>Biotechnol Bioeng</i> <strong>67</strong> 3 (2000), pp. 312–318.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1002%2F%28SICI%291097-0290%2820000205%2967%3A3%3C312%3A%3AAID-BIT7%3E3.0.CO%3B2-F&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=1f2d312dbc46f18822327f61dc6dc701" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0034606960%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D17db823f100ba5233a5ad0ee43a59d0e&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=0580cdc82793b06347abf85b74221529" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0034606960%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D17db823f100ba5233a5ad0ee43a59d0e&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=3fb33e40973a9fc9faf2ba047614b021" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (70)</a></div><p></p><p><a name="bib32"></a></p><div id="ref_bib32"><a onclick="toggleTabs('fullTab')" href="#bbib32">32.</a> M.M. Mohebi and J.R. Evans, A drop-on-demand ink-jet printer for combinatorial libraries and functionally graded ceramics. <i>J Comb Chem</i> <strong>4</strong> 4 (2002), pp. 267–274.  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=3&amp;_targetURL=http%3A%2F%2Fdx.doi.org%2F10.1021%2Fcc010075e&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=2e602545db502538431556d5cbe5cf87" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()"><b>Full Text</b> via CrossRef</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=655&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Frecord.url%3Feid%3D2-s2.0-0040077832%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D2474c00527c13e76df7c6663e519512e&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=c22c427ae5721d88ec5b1dc3396c0d60" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">View Record in Scopus</a> | <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=RedirectURL&amp;_method=outwardLink&amp;_partnerName=656&amp;_targetURL=http%3A%2F%2Fwww.scopus.com%2Finward%2Fcitedby.url%3Feid%3D2-s2.0-0040077832%26partnerID%3D10%26rel%3DR3.0.0%26md5%3D2474c00527c13e76df7c6663e519512e&amp;_acct=C000059713&amp;_version=1&amp;_userid=108429&amp;md5=498caa7bc952c5f02a663d11082ddbca" target="outwardLink" onclick="var outwardWin; outwardWin=window.open('','outwardLink','scrollbars=yes,resizable=yes,directories=yes,toolbar=yes,menubar=yes,status=yes,location=yes,width=610,height=480,screenX=10,screenY=10'); outwardWin.focus()">Cited By in Scopus (28)</a></div><p></p> </div><!-- refText -->

<div style="display: inline;" class="articleText">
<p><a name="m4.cor*"></a><span class="refPreview" id="refp_59"></span><a onclick="toggleTabs('fullTab')" href="#m4.bcor*" onmouseover="RefPreview.showRef(event,'ref_m4.bcor*','refp_59')" onmouseout="RefPreview.hideRef()"><sup><img src="science-direct_files/REcor.gif" alt="Corresponding Author Contact Information" title="Corresponding Author Contact Information" border="0"></sup></a>Corresponding authors. Tel.: +1-864-656-7639; fax: +1-864-656-4466</p> </div><!-- articleText -->




</div>
</div>
 
 </div></div>
<br clear="all">
<div class="bottomArticle">

<table width="100%"><tbody><tr><td>


<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science/journal/01429612"><b>Biomaterials</b></a><br>


<a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=PublicationURL&amp;_tockey=%23TOC%235558%232005%23999739998%23505012%23FLA%23&amp;_cdi=5558&amp;_pubType=J&amp;view=c&amp;_auth=y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=e889bb525e72c7ce462ca69c1fd48125">


Volume 26, Issue 1</a>, 


January 2005,


Pages 93-99



</td>

</tr></tbody></table>

</div>
</div>

<span style="font-size: 75%; font-family: arial,verdana,helvetica,sans-serif;">
<table class="sdMainNav sci_dirNav" style="background-image: url(/scidirimg/sci_dir/navbar_back.gif);" border="0" cellpadding="0" cellspacing="0">
    <tbody><tr>
      <td align="right" width="1%">&nbsp;</td>
      <td align="left"><img src="science-direct_files/space.gif" alt="" width="1" height="1"><table class="sdMainNavCenter" style="font-size: 1em;" cellpadding="0" cellspacing="0">
        <tbody><tr valign="center">

      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HomePageURL&amp;_method=userHomePage&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=6de574e6dff86ba08fff735d9b69ba82" target="_top" name="Home" alt="Home" title="Home"><div class="sdMainNavPadding">Home</div></a></td>

<td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=BrowseListURL&amp;_type=all&amp;_auth=y&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=f04ad5a1561079821d810bd813a5e734" target="_top" name="Browse" alt="Browse" title="Browse"><div class="sdMainNavPadding">Browse</div></a></td>

<td class="sdMainNav sci_dirNavActive" style="background-image: url(/scidirimg/sci_dir/navbar_select.gif);" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiSearchURL&amp;_method=requestForm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=d51069875a68b2a65769cf52acef7ea7" target="_top" name="Search" alt="Search" title="Search"><div class="sdMainNavPadding">Search</div><span class="txtHidden"> - selected</span></a></td>


      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=UserSubscriptionURL&amp;_method=begin&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=af61f2870434de9d4dd652e64add8d47" target="_top" name="account" alt="My Settings" title="My Settings"><div class="sdMainNavPadding">My Settings</div></a></td>

      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiSDIURL&amp;_method=listAlerts&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=1e3299b58089d861e3875813bff36d2d" target="_top" name="alert" alt="Alerts" title="Alerts"><div class="sdMainNavPadding">Alerts</div></a></td>

      

      <td class="sdMainNav" onmouseover="this.style.backgroundImage='url(/scidirimg/sci_dir/navbar_select.gif)';this.style.backgroundColor='#005d2a'" onmouseout="this.style.backgroundImage='';this.style.backgroundColor=''" align="left" valign="center" nowrap="nowrap"><a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=HelpURL&amp;_file=browse_open_doc.htm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=8cf4aedb010d78a9aae4ddbc62d39e77" target="sdhelp" alt="Help (Opens new window)" title="Help (Opens new window)" onclick="var helpWin; helpWin=window.open('/science?_ob=HelpURL&amp;_file=browse_open_doc.htm&amp;_btn=Y&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=8cf4aedb010d78a9aae4ddbc62d39e77','sdhelp','scrollbars=yes,resizable=yes,directories=no,toolbar=no,menubar=no,status=no,width=760,height=570'); helpWin.focus(); return false"><div class="sdMainNavPadding">Help</div></a></td>

      

</tr></tbody></table>
</td></tr></tbody></table>
</span>

<div style="margin: 5px 5px 5px 8px;">
<div style="width: 100%;">
<table class="pageText" style="font-size: 75%;" border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody><tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0">
<tbody><tr valign="top">
<td valign="top">
  <a href="http://www.elsevier.com/" target="_blank"><img src="science-direct_files/tree.gif" alt="Elsevier.com (Opens new window)" title="Elsevier.com (Opens new window)" target="_blank" align="left" border="0"></a>
</td>
<td valign="bottom" height="100%">
<table border="0" cellpadding="0" cellspacing="0" height="100%">
<tbody><tr height="100%">
<td align="left" valign="bottom">
  <a href="http://info.sciencedirect.com.ezproxy.lib.utexas.edu/" title="ScienceDirect Info Site (Opens New Window)" target="_blank">About ScienceDirect</a> &nbsp;|&nbsp;

  
    
       <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=MiamiCommentURL&amp;_method=comment&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=0&amp;_userid=108429&amp;md5=78768095601dfa5838143bfd194f63cc" target="_top">Contact Us</a> &nbsp;|&nbsp; <a href="http://www.elsevierscitech.com/forms/sd/form.html" target="_blank">Information for Advertisers</a>
       
          &nbsp;|&nbsp;
       
    
   
 
  
  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=UserSubscriptionURL&amp;_method=displayTerms&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=21c42e1699990428da23d2aef63452d0" target="_top">Terms &amp; Conditions</a>


  &nbsp;|&nbsp;


  <a href="http://www.sciencedirect.com.ezproxy.lib.utexas.edu/science?_ob=UserSubscriptionURL&amp;_method=displayPolicy&amp;_acct=C000059713&amp;_version=1&amp;_urlVersion=1&amp;_userid=108429&amp;md5=cf5a4cf6c10aed5bee4778b1feae7481" target="_top">Privacy Policy</a>


</td>
</tr>
<tr><td><img src="science-direct_files/clear.gif" alt="" width="1" height="10"></td></tr>
<tr height="0">
<td style="margin: 0px; padding: 0px; height: 0pt;" align="left" valign="bottom">
Copyright © 2009 <a href="http://www.elsevier.com/" target="_blank">Elsevier B.V.</a> All rights reserved. ScienceDirect® is a registered trademark of Elsevier B.V.
</td>
</tr>
</tbody></table>
</td></tr>
</tbody></table>
</td>

</tr></tbody></table>
</div></div>








</div>

</div>


<link rel="stylesheet" href="science-direct_files/include.html" type="text/css">
<script type="text/javascript" src="science-direct_files/include_002.html"></script>





<script src="science-direct_files/multimediaX.js" type="text/javascript"></script>

</body></html>