Java中实现SAX解析xml文件到MySQL数据库

大致步骤:

1、Java bean

2、DBHelper.java

3、重写DefaultHandler中的方法:MyHander.java

4、循环写数据库:SAXParserDemo.java

①xml文件:(要把第二行dtd的绑定删掉)

 1 <?xml version="1.0"  encoding="utf-8" ?>
 2 <!DOCTYPE dblp SYSTEM "dblp.dtd">
 3 <dblp>
 4 
 5 <article mdate="2017-05-11" key="journals/ijtm/LuMW10">
 6     <author>Iuan-Yuan Lu</author>
 7     <author>Chih-Jen Mao</author>
 8     <author>Chun-Hsien Wang</author>
 9     <title>Intrafirm technology and knowledge transfer: a best practice perspective.</title>
10     <pages>338-356</pages>
11     <year>2010</year>
12     <volume>49</volume>
13     <journal>IJTM</journal>
14     <number>4</number>
15     <ee>https://doi.org/10.1504/IJTM.2010.030162</ee>
16     <url>db/journals/ijtm/ijtm49.html#LuMW10</url>
17 </article>
18 
19 <article mdate="2017-05-11" key="journals/ijtm/TingTH14">
20 <author>Kuo-Chang Ting</author>
21 <author>Ping Ho Ting</author>
22 <author>Po-Wen Hsiao</author>
23 <title>Why are bloggers willing to share their thoughts via travel blogs?</title>
24 <pages>89-108</pages>
25 <year>2014</year>
26 <volume>64</volume>
27 <journal>IJTM</journal>
28 <number>1</number>
29 <ee>https://doi.org/10.1504/IJTM.2014.059237</ee>
30 <url>db/journals/ijtm/ijtm64.html#TingTH14</url>
31 </article>
32 
33 <article mdate="2017-05-11" key="journals/ijtm/Howells00">
34     <author>Jeremy Howells</author>
35     <title>International coordination of technology flows and knowledge activity in innovation.</title>
36     <pages>806-819</pages>
37     <year>2000</year>
38     <volume>19</volume>
39     <journal>IJTM</journal>
40     <number>7/8</number>
41 </article>
42 </dblp>
dblp.xml

就留下了三组数据。之前的数据量太大了。(我把所有的数据贴到最后,你们也可以去网上下载)

②DBHelper.java

  1 package sax;
  2 
  3 import java.sql.Connection;
  4 import java.sql.DriverManager;
  5 import java.sql.PreparedStatement;
  6 import java.sql.ResultSet;
  7 import java.sql.Statement;
  8 
  9 /**
 10  * 数据库工具类,负责完成打开、关闭数据库,执行查询或更新
 11  * @author MKing
 12  *
 13  */
 14 public class DbHelper {
 15     /**
 16      * 数据库URL
 17      */
 18     private static final String URL = "jdbc:mysql://localhost:3306/train";
 19     /**
 20      * 登录用户名
 21      */
 22     private static final String USER = "root";
 23     /**
 24      * 登录密码
 25      */
 26     private static final String PASSWORD = "yourpassword";
 27     
 28     private static Connection connection = null;
 29     private static Statement statement = null;
 30 
 31     private static DbHelper helper = null;
 32 
 33     static {
 34         try {
 35             Class.forName("com.mysql.jdbc.Driver");
 36         } catch (ClassNotFoundException e) {
 37             e.printStackTrace();
 38         }
 39     }
 40 
 41     public DbHelper() throws Exception {
 42         connection = DriverManager.getConnection(URL, USER, PASSWORD);
 43         statement = connection.createStatement();
 44     }
 45 
 46     /**
 47      * 返回单例模式的数据库辅助对象
 48      * 
 49      * @return
 50      * @throws Exception 
 51      */
 52     public static DbHelper getDbHelper() throws Exception {
 53         if (helper == null || connection == null || connection.isClosed())
 54             helper = new DbHelper();
 55         return helper;
 56     }
 57 
 58     /**
 59      * 执行查询
 60      * @param sql 要执行的SQL语句
 61      * @return  查询的结果集对象
 62      * @throws Exception
 63      */
 64     public ResultSet executeQuery(String sql) throws Exception {
 65         if (statement != null) {
 66             return statement.executeQuery(sql);
 67         }
 68 
 69         throw new Exception("数据库未正常连接");
 70     }
 71 
 72     /**
 73      * 执行查询
 74      * @param sql  要执行的带参数的SQL语句
 75      * @param args  SQL语句中的参数值
 76      * @return  查询的结果集对象
 77      * @throws Exception
 78      */
 79     public ResultSet executeQuery(String sql, Object...args) throws Exception {
 80         if (connection == null || connection.isClosed()) {
 81             DbHelper.close();
 82             throw new Exception("数据库未正常连接");
 83         }
 84         PreparedStatement ps = connection.prepareStatement(sql);
 85         int index = 1;
 86         for (Object arg : args) {
 87             ps.setObject(index, arg);
 88             index++;
 89         }
 90         
 91         return ps.executeQuery();
 92     }
 93     
 94     /**
 95      * 执行更新
 96      * @param sql  要执行的SQL语句
 97      * @return  受影响的记录条数
 98      * @throws Exception
 99      */
100     public int executeUpdate(String sql) throws Exception {
101         if (statement != null) {
102             return statement.executeUpdate(sql);
103         }
104         throw new Exception("数据库未正常连接");
105     }
106     
107     /**
108      * 执行更新
109      * @param sql  要执行的SQL语句
110      * @param args  SQL语句中的参数
111      * @return  受影响的记录条数
112      * @throws Exception
113      */
114     public int executeUpdate(String sql, Object...args) throws Exception {
115         if (connection == null || connection.isClosed()) {
116             DbHelper.close();
117             throw new Exception("数据库未正常连接");
118         }
119         PreparedStatement ps = connection.prepareStatement(sql);
120         int index = 1;
121         for (Object arg : args) {
122             ps.setObject(index, arg);
123             index++;
124         }
125         return ps.executeUpdate();
126     }
127     
128     /**
129      * 获取预编译的语句对象
130      * @param sql  预编译的语句
131      * @return  预编译的语句对象
132      * @throws Exception
133      */
134     public PreparedStatement prepareStatement(String sql) throws Exception {
135         return connection.prepareStatement(sql);
136     }
137     
138     /**
139      * 关闭对象,同时将关闭连接
140      */
141     public static void close() {
142         try {
143             if (statement != null)
144                 statement.close();
145             if (connection != null) 
146                 connection.close();
147         } catch (Exception e) {
148             e.printStackTrace();
149         } finally {
150             helper = null;
151         }
152     }
153 }
DBHelper.java

别忘了放jar包

MyHander.java

  1 package sax;
  2 
  3 import java.util.ArrayList;
  4 import java.util.List;
  5 
  6 import org.xml.sax.Attributes;
  7 import org.xml.sax.SAXException;
  8 import org.xml.sax.helpers.DefaultHandler;
  9 
 10 public class MyHandler extends DefaultHandler {
 11     private List<Article> articles = new ArrayList<>();  // 学生列表
 12     private Article article = null;
 13     private int propertyOrder = 1;  
 14     // 1-id, 2-author1, 3-author2, 4-author3, 5-title, 
 15     // 6-pages, 7-year, 8-volume, 9-journal, 10-number, 11-ee$t, 12-url$t
 16     
 17     @Override
 18     public void startDocument() throws SAXException {
 19         System.out.println("文档开始");
 20     }
 21     
 22     @Override
 23     public void endDocument() throws SAXException {
 24         System.out.println("文档结束");
 25     }
 26 
 27     @Override
 28     public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
 29         if (qName.equals("article")) {  // 新的article开始
 30             article = new Article();
 31             return;
 32         }
 33         switch (qName) {
 34         case "author":
 35             // 2  3  4
 36             if (propertyOrder < 4) {
 37                 propertyOrder++;
 38             }
 39             break;
 40         case "title":    
 41             propertyOrder = 5;
 42             break;
 43         case "pages":    
 44             propertyOrder = 6;
 45             break;
 46         case "year":    
 47             propertyOrder = 7;
 48             break;
 49         case "volume":    
 50             propertyOrder = 8;
 51             break;
 52         case "journal":    
 53             propertyOrder = 9;
 54             break;
 55         case "number":    
 56             propertyOrder = 10;
 57             break;
 58         case "ee":    
 59             propertyOrder = 11;
 60             break;
 61         case "url":    
 62             propertyOrder = 12;
 63             break;
 64         }
 65     }
 66     
 67     @Override
 68     public void endElement(String uri, String localName, String qName) throws SAXException {
 69         if (qName.equals("article")) {  // 新的artile结束
 70             articles.add(article);
 71             article = null;
 72             propertyOrder = 1;
 73         }
 74     }
 75     
 76     // 1-id, 2-author1, 3-author2, 4-author3, 5-title, 
 77     // 6-pages, 7-year, 8-volume, 9-journal, 10-number, 11-ee$t, 12-url$t
 78     
 79     @Override
 80     public void characters(char[] ch, int start, int length) throws SAXException {
 81         String content = new String(ch, start, length);
 82         switch (propertyOrder) {
 83         case 2:
 84             // System.out.println(content);
 85             article.setAuthor1(content);
 86             break;
 87         case 3:
 88             article.setAuthor2(content);
 89             break;
 90         case 4:
 91             article.setAuthor3(content);
 92             break;
 93         case 5:
 94             article.setTitle(content);
 95             break;
 96         case 6:
 97             article.setPages(content);
 98             break;
 99         case 7:
100             article.setYear(content);
101             break;
102         case 8:
103             article.setVolume(content);
104             break;
105         case 9:
106             article.setJournal(content);
107             break;
108         case 10:
109             article.setNumber(content);
110             break;
111         case 11:
112             article.setEe$t(content);
113             break;
114         case 12:
115             article.setUrl$t(content);
116         }
117     }
118     
119     List<Article> getArticles() {
120         return articles;
121     }
122 }
MyHander.java

因为作者最多三个,所以这里就写的1、2、3,在给他们赋值的时候用了一个小技巧,使用变量判断当前数据读到了哪里。

④SAXParserDemo.java

 1 package sax;
 2 
 3 import java.util.List;
 4 
 5 import javax.xml.parsers.SAXParser;
 6 import javax.xml.parsers.SAXParserFactory;
 7 
 8 public class SAXParserDemo {
 9 
10     public static void main(String[] args) throws Exception {
11         SAXParserFactory factory = SAXParserFactory.newInstance();
12         SAXParser parser = factory.newSAXParser();
13         MyHandler handler = new MyHandler(); // 使用自定义Handler
14         parser.parse("dblp/dblp.xml", handler);
15         System.out.println("解析完毕.");
16 
17         List<Article> articles = handler.getArticles();
18         DbHelper dbHelper = DbHelper.getDbHelper();
19         
20         System.out.println("开始写入数据库库...");
21         int cnt = 0;
22         
23         String sql = "INSERT INTO `train`.`dblp$article` (`author1`, `author2`, `author3`, `title`, `pages`, `year`, `volume`, `journal`, `number`, `ee`, `url`) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
24         for (Article article : articles) {
25             
26             // 使用?的方式传参写入数据库不需要考虑单双引号的问题。
27             Object []data = new String[]{article.getAuthor1(), 
28                     article.getAuthor2(), article.getAuthor3(), article.getTitle(), article.getPages(), article.getYear(), 
29                     article.getVolume(), article.getJournal(), article.getNumber(), article.getEe$t(), article.getUrl$t()};
30             dbHelper.executeUpdate(sql, data);
31             
32             // INSERT INTO `train`.`dblp$article` (`author1`, `author2`, `author3`, `title`, `pages`, `year`, `volume`, `journal`, `number`, `ee`, `url`)
33             //        VALUES ("Iuan-Yuan Lu", "Chih-Jen Mao", "Chun-Hsien Wang", "Intrafirm technology and knowledge transfer: a best practice perspective.", "338-356", 
34             //                 "2010", "49", "IJTM", "4", "https://doi.org/10.1504/IJTM.2010.030162", "db/journals/ijtm/ijtm49.html#LuMW10");
35             
36 //            String sql = "INSERT INTO `train`.`dblp$article` (`author1`, `author2`, `author3`, `title`, `pages`, `year`, `volume`, `journal`, `number`, `ee`, `url`)"
37 //                    + " VALUES (\""
38 //                    + article.getAuthor1()
39 //                    + "\", \""
40 //                    + article.getAuthor2()
41 //                    + "\", \""
42 //                    + article.getAuthor3()
43 //                    + "\", \""
44 //                    + article.getTitle().replaceAll("\"", "\\\\\"")
45 //                    + "\", \""
46 //                    + article.getPages()
47 //                    + "\", \""
48 //                    + article.getYear()
49 //                    + "\", \""
50 //                    + article.getVolume()
51 //                    + "\", \""
52 //                    + article.getJournal()
53 //                    + "\", \""
54 //                    + article.getNumber()
55 //                    + "\", \""
56 //                    + article.getEe$t()
57 //                    + "\", \""
58 //                    + article.getUrl$t()
59 //                    + "\");";
60             // System.out.println(sql);
61             // dbHelper.executeUpdate(sql);
62             cnt++;
63             
64             // The acceptance of "self-service" technology in the Egyptian telecom industry.
65             // 数据库返回来的错误
66         }
67         System.out.println("共" + cnt + "\n, 写入数据库完成...");
68         // cnt = 3
69         DbHelper.close();
70     }
71 
72 }
View CoSAXParserDemo.java

备注写的很清楚了,如果使用注释掉的方法的话,因为之前数据(这里只复制过来了3条)中存在单引号  '  和双引号  "  ,还有斜杠  /  。使用参数写入数据库,不需要考虑单双引号和斜杠的情况。

下面是步骤①中的数据,我明面贴出来,因为插入代码时候因为量大,所以总是超时,需要的,就来手动复制吧。

再往后有个水平分界线下面是dblp.dtd


<?xml version="1.0"  encoding="utf-8" ?>
<!DOCTYPE dblp SYSTEM "dblp.dtd">
<dblp>

<article mdate="2017-05-11" key="journals/ijtm/LuMW10">
    <author>Iuan-Yuan Lu</author>
    <author>Chih-Jen Mao</author>
    <author>Chun-Hsien Wang</author>
    <title>Intrafirm technology and knowledge transfer: a best practice perspective.</title>
    <pages>338-356</pages>
    <year>2010</year>
    <volume>49</volume>
    <journal>IJTM</journal>
    <number>4</number>
    <ee>https://doi.org/10.1504/IJTM.2010.030162</ee>
    <url>db/journals/ijtm/ijtm49.html#LuMW10</url>
</article>

<article mdate="2017-05-11" key="journals/ijtm/TingTH14">
<author>Kuo-Chang Ting</author>
<author>Ping Ho Ting</author>
<author>Po-Wen Hsiao</author>
<title>Why are bloggers willing to share their thoughts via travel blogs?</title>
<pages>89-108</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.059237</ee>
<url>db/journals/ijtm/ijtm64.html#TingTH14</url>
</article>

<article mdate="2017-05-11" key="journals/ijtm/Quan10">
<author>Xiaohong Quan</author>
<title>Knowledge diffusion from MNC R&amp;D labs in developing countries: evidence from interaction between MNC R&amp;D labs and local universities in Beijing.</title>
<pages>364-386</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033810</ee>
<url>db/journals/ijtm/ijtm51.html#Quan10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McDonaldS04">
<author>Robert E. McDonald</author>
<author>Narasimhan Srinivasan</author>
<title>Technological innovations in hospitals: what kind of competitive advantage does adoption lead to?</title>
<pages>103-117</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.005055</ee>
<url>db/journals/ijtm/ijtm28.html#McDonaldS04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LingjiPL04">
<author>Li Lingji</author>
<author>Hu Ping</author>
<author>Zhang Lei</author>
<title>Roles, models and development trends of hi-tech industrial development zones in China.</title>
<pages>633-645</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005313</ee>
<url>db/journals/ijtm/ijtm28.html#LingjiPL04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShangWY10">
<author>Shari S. C. Shang</author>
<author>Se-Hwa Wu</author>
<author>Chen-Yen Yao</author>
<title>A dynamic innovation model for managing capabilities of continuous innovation.</title>
<pages>300-318</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033807</ee>
<url>db/journals/ijtm/ijtm51.html#ShangWY10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hurmelinna-Laukkanen09">
<author>Pia Hurmelinna-Laukkanen</author>
<title>The availability, strength and efficiency of appropriability mechanisms - protecting investments in knowledge creation.</title>
<pages>282-290</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022653</ee>
<url>db/journals/ijtm/ijtm45.html#Hurmelinna-Laukkanen09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PerrAS10">
<author>Jon Perr</author>
<author>Melissa M. Appleyard</author>
<author>Patrick Sullivan</author>
<title>Open for business: emerging business models in open source software.</title>
<pages>432-456</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035984</ee>
<url>db/journals/ijtm/ijtm52.html#PerrAS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CiappiniCP08">
<author>Alessia Ciappini</author>
<author>Mariano Corso</author>
<author>Alessandro Perego</author>
<title>From ICT outsourcing to strategic sourcing: managing customer-supplier relations for continuous innovation capabilities.</title>
<pages>185-203</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.018067</ee>
<url>db/journals/ijtm/ijtm42.html#CiappiniCP08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Malik17">
<author>Omar R. Malik</author>
<title>When Davids start becoming Goliaths: unique capabilities of emerging-market multinational enterprises and how they foster growth in developed markets?</title>
<pages>45-69</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004268</ee>
<url>db/journals/ijtm/ijtm74.html#Malik17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Inuzuka10">
<author>Atsushi Inuzuka</author>
<title>Management by the cognitive range: a perspective on knowledge management.</title>
<pages>384-400</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2010.030165</ee>
<url>db/journals/ijtm/ijtm49.html#Inuzuka10</url>
</article><article mdate="2018-01-12" key="journals/ijtm/Gjelsvik18">
<author>Martin Gjelsvik</author>
<title>Universities, innovation and competitiveness in regional economies.</title>
<pages>10-31</pages>
<year>2018</year>
<volume>76</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2018.10009596</ee>
<url>db/journals/ijtm/ijtm76.html#Gjelsvik18</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/Marcus02">
<author>Phillip R. Marcus</author>
<title>The World Wide Web: an effective vehicle for global procurement documentation dissemination.</title>
<pages>201-206</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003006</ee>
<url>db/journals/ijtm/ijtm23.html#Marcus02</url>
</article><article mdate="2017-06-06" key="journals/ijtm/VaqueroGR00">
<author>Celina Vaquero</author>
<author>M. Isabel Garces</author>
<author orcid="0000-0002-5341-4042">Jesus Rodriguez-Pomeda</author>
<title>Impact of organisation and management on complex technological systems safety: the nuclear lessons.</title>
<pages>214-241</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002862</ee>
<url>db/journals/ijtm/ijtm20.html#VaqueroGR00</url>
</article><article mdate="2017-06-14" key="journals/ijtm/YuanWT05">
<author>Benjamin J. C. Yuan</author>
<author>Chien-Pin Wang</author>
<author orcid="0000-0003-1856-7497">Gwo-Hshiung Tzeng</author>
<title>An emerging approach for strategy evaluation in fuel cell development.</title>
<pages>302-338</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007336</ee>
<url>db/journals/ijtm/ijtm32.html#YuanWT05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SuHW16">
<author>Yu-Shan Su</author>
<author>Hsin-Yi Hu</author>
<author>Feng-Shang Wu</author>
<title>How can small firms benefit from open innovation? The case of new drug development in Taiwan.</title>
<pages>61-82</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001579</ee>
<url>db/journals/ijtm/ijtm72.html#SuHW16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Metzemaekers00">
<author>Dion A. M. M. Metzemaekers</author>
<title>Critical success factors in technology management.</title>
<pages>583-585</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2000.002836</ee>
<url>db/journals/ijtm/ijtm19.html#Metzemaekers00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/OrttS06">
<author>Roland Ortt</author>
<author>Ruud Smits</author>
<title>Innovation management: different approaches to cope with the same trends.</title>
<pages>296-318</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009461</ee>
<url>db/journals/ijtm/ijtm34.html#OrttS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BessantSM11">
<author>John Bessant</author>
<author>Bettina Von Stamm</author>
<author>Kathrin M. M&ouml;slein</author>
<title>Selection strategies for discontinuous innovation.</title>
<pages>156-170</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041685</ee>
<url>db/journals/ijtm/ijtm55.html#BessantSM11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WischnevskyD08">
<author>J. Daniel Wischnevsky</author>
<author>Fariborz Damanpour</author>
<title>Radical strategic and structural change: occurrence, antecedents and consequences.</title>
<pages>53-80</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020698</ee>
<url>db/journals/ijtm/ijtm44.html#WischnevskyD08</url>
</article>

<article mdate="2017-05-11" key="journals/ijtm/TantaloCV12">
    <author>Caterina Tantalo</author>
    <author>Matteo G. Caroli</author>
    <author>Jeff Vanevenhoven</author>
    <title>Corporate social responsibility and SME's competitiveness.</title>
    <pages>129-151</pages>
    <year>2012</year>
    <volume>58</volume>
    <journal>IJTM</journal>
    <number>1/2</number>
    <ee>https://doi.org/10.1504/IJTM.2012.045792</ee>
    <url>db/journals/ijtm/ijtm58.html#TantaloCV12</url>
</article>

<article mdate="2017-05-11" key="journals/ijtm/PettiZ14">
<author>Claudio Petti</author>
<author>Shujun Zhang</author>
<title>Factors influencing technological entrepreneurship in Chinese firms: evidence from Guangdong.</title>
<pages>70-95</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060948</ee>
<url>db/journals/ijtm/ijtm65.html#PettiZ14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ArthursCDW09">
<author>David Arthurs</author>
<author>Erin Cassidy</author>
<author>Charles H. Davis</author>
<author>David Wolfe</author>
<title>Indicators to support innovation cluster policy.</title>
<pages>263-279</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.023376</ee>
<url>db/journals/ijtm/ijtm46.html#ArthursCDW09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Diez-VialM17">
<author>Isabel Diez-Vial</author>
<author>Angeles Montoro-S&aacute;nchez</author>
<title>From incubation to maturity inside parks: the evolution of local knowledge networks.</title>
<pages>132-150</pages>
<year>2017</year>
<volume>73</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2017.10003244</ee>
<url>db/journals/ijtm/ijtm73.html#Diez-VialM17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PhaalFP04">
<author>Robert Phaal</author>
<author>Clare J. P. Farrukh</author>
<author>David R. Probert</author>
<title>A framework for supporting the management of technological knowledge.</title>
<pages>1-15</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.003878</ee>
<url>db/journals/ijtm/ijtm27.html#PhaalFP04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Davies01">
<author>Howard Davies</author>
<title>The influence of the environment and enterprise reform on commitment to technology development in China: an empirical analysis.</title>
<pages>22-41</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2001.002900</ee>
<url>db/journals/ijtm/ijtm21.html#Davies01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuilhonAR04">
<author>Bernard Guilhon</author>
<author>Raja Attia</author>
<author>Roland Rizoulieres</author>
<title>Markets for technology and firms' strategies: the case of the semiconductor industry.</title>
<pages>123-142</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003948</ee>
<url>db/journals/ijtm/ijtm27.html#GuilhonAR04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CookeE10">
<author>Philip Cooke</author>
<author>Oliver Ehret</author>
<title>Proximities, knowledge and skills and the future of the Welsh aerospace industry.</title>
<pages>356-366</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.032681</ee>
<url>db/journals/ijtm/ijtm50.html#CookeE10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CuhlsB01">
<author>Kerstin Cuhls</author>
<author>Knut Blind</author>
<title>Foresight in Germany: the example of the Delphi '98 or: how can the future be shaped?</title>
<pages>767-780</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002949</ee>
<url>db/journals/ijtm/ijtm21.html#CuhlsB01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RavenBW10">
<author>Rob Raven</author>
<author>Suzanne Van den Bosch</author>
<author>Rob Weterings</author>
<title>Transitions and strategic niche management: towards a competence kit for practitioners.</title>
<pages>57-74</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033128</ee>
<url>db/journals/ijtm/ijtm51.html#RavenBW10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Pulic00">
<author>Ante Pulic</author>
<title>VAIC&#8482; - an accounting tool for IC management.</title>
<pages>702-714</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002891</ee>
<url>db/journals/ijtm/ijtm20.html#Pulic00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim08a">
<author>Junmo Kim</author>
<title>An exit for the IT industry?: Market saturation and the convergence of ubiquitous technology for manufacturing and service sectors.</title>
<pages>407-419</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016790</ee>
<url>db/journals/ijtm/ijtm41.html#Kim08a</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Roinila09">
<author orcid="0000-0002-2456-2740">Markku Roinila</author>
<title>G.W. Leibniz and scientific societies.</title>
<pages>165-179</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022683</ee>
<url>db/journals/ijtm/ijtm46.html#Roinila09</url>
</article><article mdate="2017-06-14" key="journals/ijtm/EdwardsNJ12">
<author orcid="0000-0002-6328-1765">Kasper Edwards</author>
<author>Anders Paarup Nielsen</author>
<author orcid="0000-0003-2165-1286">Peter Jacobsen</author>
<title>Implementing lean in surgery - lessons and implications.</title>
<pages>4-17</pages>
<year>2012</year>
<volume>57</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2012.043948</ee>
<url>db/journals/ijtm/ijtm57.html#EdwardsNJ12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiuQC06">
<author>Jing-Jiang Liu</author>
<author>Ji-Yu Qian</author>
<author>Jin Chen</author>
<title>Technological learning and firm-level technological capability building: analytical framework and evidence from Chinese manufacturing firms.</title>
<pages>190-208</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009968</ee>
<url>db/journals/ijtm/ijtm36.html#LiuQC06</url>
</article><article mdate="2017-06-06" key="journals/ijtm/WadellSBM13">
<author>Carl Wadell</author>
<author>Gunilla &Ouml;lundh Sandstr&ouml;m</author>
<author orcid="0000-0002-9746-4498">Jennie Bj&ouml;rk</author>
<author>Mats Magnusson</author>
<title>Exploring the incorporation of users in an innovating business unit.</title>
<pages>293-308</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.052672</ee>
<url>db/journals/ijtm/ijtm61.html#WadellSBM13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Teng07">
<author>Bing-Sheng Teng</author>
<title>Managing intellectual property in R&amp;D alliances.</title>
<pages>160-177</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.012434</ee>
<url>db/journals/ijtm/ijtm38.html#Teng07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WhiteLX01">
<author>Steven White</author>
<author>Xielin Liu</author>
<author>Wei Xie</author>
<title>A survey of Chinese literature on the management of technology and innovation, 1987-1997.</title>
<pages>130-150</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2001.002907</ee>
<url>db/journals/ijtm/ijtm21.html#WhiteLX01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SoosayH08">
<author orcid="0000-0001-5646-5622">Claudine Soosay</author>
<author>Paul Hyland</author>
<title>Exploration and exploitation: the interplay between knowledge and continuous innovation.</title>
<pages>20-35</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.018058</ee>
<url>db/journals/ijtm/ijtm42.html#SoosayH08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lim00">
<author>Yooncheol Lim</author>
<title>Development of the public sector in the Korean innovation system.</title>
<pages>684-701</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002888</ee>
<url>db/journals/ijtm/ijtm20.html#Lim00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FathelrahmanS10">
<author>Adil Osman Fathelrahman</author>
<author>Mathew Shafaghi</author>
<title>Leveraging organisation data through EII, ETL and data replication: methodologies and implementation.</title>
<pages>208-224</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2010.032273</ee>
<url>db/journals/ijtm/ijtm50.html#FathelrahmanS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RiddellW11">
<author>Sarah Riddell</author>
<author>William A. Wallace</author>
<title>The use of fuzzy logic and expert judgment in the R&amp;D project portfolio selection process.</title>
<pages>238-256</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038592</ee>
<url>db/journals/ijtm/ijtm53.html#RiddellW11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AndrewP05">
<author>Theo N. Andrew</author>
<author>Doncho Petkov</author>
<title>A case study on the initial enquiry stage in a framework for improved planning of rural telecommunications infrastructure in developing countries.</title>
<pages>64-77</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006623</ee>
<url>db/journals/ijtm/ijtm31.html#AndrewP05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SharifBL12">
<author orcid="0000-0002-2496-9938">Naubahar Sharif</author>
<author>Erik Baark</author>
<author>Antonio K. W. Lau</author>
<title>Innovation activities, sources of innovation and R&amp;D cooperation: evidence from firms in Hong Kong and Guangdong Province, China.</title>
<pages>203-234</pages>
<year>2012</year>
<volume>59</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.047244</ee>
<url>db/journals/ijtm/ijtm59.html#SharifBL12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ClementsS10">
<author>Michael D. J. Clements</author>
<author>Andrew J. Sense</author>
<title>Socially shaping supply chain integration through learning.</title>
<pages>92-105</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033130</ee>
<url>db/journals/ijtm/ijtm51.html#ClementsS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MeulenL01">
<author>Barend van der Meulen</author>
<author>Anne Lohnberg</author>
<title>The use of foresight: institutional constraints and conditions.</title>
<pages>680-693</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002943</ee>
<url>db/journals/ijtm/ijtm21.html#MeulenL01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KinkelKAJ11">
<author>Steffen Kinkel</author>
<author>Eva Kirner</author>
<author>Heidi Armbruster</author>
<author>Angela Jager</author>
<title>Relevance and innovation of production-related services in manufacturing industry.</title>
<pages>263-273</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041952</ee>
<url>db/journals/ijtm/ijtm55.html#KinkelKAJ11</url>
</article><article mdate="2017-06-06" key="journals/ijtm/PilkingtonD02">
<author orcid="0000-0002-3880-1757">Alan Pilkington</author>
<author>Romano Dyerson</author>
<title>Extending simultaneous engineering: electric vehicle supply chains and new product development.</title>
<pages>74-88</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.002999</ee>
<url>db/journals/ijtm/ijtm23.html#PilkingtonD02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LinCW11">
<author>Fengyi Lin</author>
<author>Shuching Chou</author>
<author>Wei-Kang Wang</author>
<title>IS practitioners' views on core factors of effective IT governance for Taiwan SMEs.</title>
<pages>252-269</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039314</ee>
<url>db/journals/ijtm/ijtm54.html#LinCW11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AsanPS08">
<author>Umut Asan</author>
<author>Seckin Polat</author>
<author>Ron Sanchez</author>
<title>Scenario-driven modular design in managing market uncertainty.</title>
<pages>459-487</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.019386</ee>
<url>db/journals/ijtm/ijtm42.html#AsanPS08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Yoshida10">
<author>Satoshi Yoshida</author>
<title>Effective reactions against disruptive innovations - the case of Japan's electronics industry.</title>
<pages>119-138</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2010.032269</ee>
<url>db/journals/ijtm/ijtm50.html#Yoshida10</url>
</article><article mdate="2017-06-06" key="journals/ijtm/PassosTFVP04">
<author>Carlos A. S. Passos</author>
<author>Branca Regina Cantisano Terra</author>
<author orcid="0000-0002-6183-192X">Andre T. Furtado</author>
<author>Conceicao Vedovello</author>
<author>Guilherme Plonski</author>
<title>Improving university-industry partnership - the Brazilian experience through the scientific and technological development support program (PADCT III).</title>
<pages>475-487</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2004.004284</ee>
<url>db/journals/ijtm/ijtm27.html#PassosTFVP04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SohalMN00">
<author>Amrik S. Sohal</author>
<author>Simon Moss</author>
<author>Lionel Ng</author>
<title>Using information technology productively: practices and factors that enhance the success of IT.</title>
<pages>340-353</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002872</ee>
<url>db/journals/ijtm/ijtm20.html#SohalMN00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sung07">
<author>Tae Kyung Sung</author>
<title>Incubators and business ventures in Korea: implications for manpower policy.</title>
<pages>248-267</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2007.012713</ee>
<url>db/journals/ijtm/ijtm38.html#Sung07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KaiserL09">
<author>Robert Kaiser</author>
<author>Michael Liecke</author>
<title>Regional knowledge dynamics in the biotechnology industry: a conceptual framework for micro-level analysis.</title>
<pages>371-385</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.023386</ee>
<url>db/journals/ijtm/ijtm46.html#KaiserL09</url>
</article><article mdate="2017-06-06" key="journals/ijtm/MartiniGCML12">
<author orcid="0000-0002-2006-4293">Antonella Martini</author>
<author>Luca Gastaldi</author>
<author>Mariano Corso</author>
<author>Mats Magnusson</author>
<author>Bj&oslash;rge Timenes Laugen</author>
<title>Continuously innovating the study of continuous innovation: from actionable knowledge to universal theory in continuous innovation research.</title>
<pages>157-178</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.049439</ee>
<url>db/journals/ijtm/ijtm60.html#MartiniGCML12</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Quintana-GarciaB06">
<author>Cristina Quintana-Garcia</author>
<author orcid="0000-0003-2208-1174">Carlos A. Benavides-Velasco</author>
<title>Searching for complementary technological knowledge and downstream competences: clustering and cooperation.</title>
<pages>262-283</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009238</ee>
<url>db/journals/ijtm/ijtm35.html#Quintana-GarciaB06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Mir03">
<author>Ronen Mir</author>
<title>Outdoor science centres.</title>
<pages>390-404</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003108</ee>
<url>db/journals/ijtm/ijtm25.html#Mir03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KimBC07">
<author>Changsu Kim</author>
<author>Sam Beldona</author>
<author>Farok J. Contractor</author>
<title>Alliance and technology networks: an empirical study on technology learning.</title>
<pages>29-44</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.012428</ee>
<url>db/journals/ijtm/ijtm38.html#KimBC07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NeirottiPR13">
<author>Paolo Neirotti</author>
<author>Emilio Paolucci</author>
<author>Elisabetta Raguseo</author>
<title>Is it all about size? Comparing organisational and environmental antecedents of IT assimilation in small and medium-sized enterprises.</title>
<pages>82-108</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2013.050245</ee>
<url>db/journals/ijtm/ijtm61.html#NeirottiPR13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Arrow02">
<author>Alexander K. Arrow</author>
<title>Intangible asset deployment in technology-rich companies: how does innovation affect return on assets?</title>
<pages>375-390</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003061</ee>
<url>db/journals/ijtm/ijtm24.html#Arrow02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CortiSGR02">
<author>Eugenio Corti</author>
<author>C. lo Storto</author>
<author>M. Di Giacomo</author>
<author>P. C. Ravasio</author>
<title>Renewal strategies in the IPM Group: the role of the new research centre.</title>
<pages>458-480</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2002.003021</ee>
<url>db/journals/ijtm/ijtm23.html#CortiSGR02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WiggettM13">
<author>Beaven S. J. Wiggett</author>
<author>Gillian Marcelle</author>
<title>Ecodesign in South African firms - how feasible?</title>
<pages>104-124</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2013.055581</ee>
<url>db/journals/ijtm/ijtm63.html#WiggettM13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MacphersonJZ05">
<author>Allan Macpherson</author>
<author>Oswald Jones</author>
<author>Michael Zhang</author>
<title>Virtual reality and innovation networks: opportunity exploitation in dynamic SMEs.</title>
<pages>49-66</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006345</ee>
<url>db/journals/ijtm/ijtm30.html#MacphersonJZ05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZhangR09">
<author>Jingjing Zhang</author>
<author>Juan D. Rogers</author>
<title>The technological innovation performance of Chinese firms: the role of industrial and academic R&amp;D, FDI and the markets in firm patenting.</title>
<pages>518-543</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.026692</ee>
<url>db/journals/ijtm/ijtm48.html#ZhangR09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hu07">
<author>Anne Wan-Ling Hu</author>
<title>An empirical test of a use-diffusion model for Taiwan mobile digital TV.</title>
<pages>248-263</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013494</ee>
<url>db/journals/ijtm/ijtm39.html#Hu07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KotnourB11">
<author>Tim Kotnour</author>
<author>Timothy R. Bollo</author>
<title>Strategic management of a transformation in a multi-program technology program involving convergence and divergence of programs: observations from NASA.</title>
<pages>257-272</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038593</ee>
<url>db/journals/ijtm/ijtm53.html#KotnourB11</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ZolghadriGBA11">
<author>Marc Zolghadri</author>
<author>Philippe Girard</author>
<author orcid="0000-0001-9573-7002">Claude Baron</author>
<author orcid="0000-0003-3715-3214">Michel Aldanondo</author>
<title>A general framework for new product development projects.</title>
<pages>250-262</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041951</ee>
<url>db/journals/ijtm/ijtm55.html#ZolghadriGBA11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GeogheganOF15">
<author>Will Geoghegan</author>
<author>Conor O'Kane</author>
<author>Ciara Fitzgerald</author>
<title>Technology transfer offices as a nexus within the triple helix: the progression of the university's role.</title>
<pages>255-277</pages>
<year>2015</year>
<volume>68</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.069660</ee>
<url>db/journals/ijtm/ijtm68.html#GeogheganOF15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Gilbert00">
<author>Richard J. Gilbert</author>
<title>Antitrust policy for the licensing of intellectual property: an international comparison.</title>
<pages>206-223</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002801</ee>
<url>db/journals/ijtm/ijtm19.html#Gilbert00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChanaronJS02">
<author>Jean-Jacques Chanaron</author>
<author>Dominique R. Jolly</author>
<author>Klas Eric Soderquist</author>
<title>Technological management: a tentative research agenda.</title>
<pages>618-629</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003029</ee>
<url>db/journals/ijtm/ijtm23.html#ChanaronJS02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GrimaldiT03">
<author>Rosa Grimaldi</author>
<author>Nick von Tunzelmann</author>
<title>Sectoral determinants of performance in collaborative R&amp;D projects.</title>
<pages>766-778</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003136</ee>
<url>db/journals/ijtm/ijtm25.html#GrimaldiT03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WuLH07">
<author>Se-Hwa Wu</author>
<author>Liang-Yang Lin</author>
<author>Mu-Yen Hsu</author>
<title>Intellectual capital, dynamic capabilities and innovative performance of organisations.</title>
<pages>279-296</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013496</ee>
<url>db/journals/ijtm/ijtm39.html#WuLH07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HawleyR02">
<author>Robert Hawley</author>
<author>Anna Raath</author>
<title>Future skill requirements for UK engineers and technologists: a review of the current position.</title>
<pages>630-642</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003030</ee>
<url>db/journals/ijtm/ijtm23.html#HawleyR02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BochenekRM01">
<author>Grace M. Bochenek</author>
<author>James M. Ragusa</author>
<author>Linda C. Malone</author>
<title>Integrating virtual 3-D display systems into product design reviews: some insights from empirical testing.</title>
<pages>340-352</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002917</ee>
<url>db/journals/ijtm/ijtm21.html#BochenekRM01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tarn06">
<author>David D. C. Tarn</author>
<title>Industry as the knowledge base: the way Asians integrate knowledge from academic, industrial, and public sectors.</title>
<pages>360-378</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009464</ee>
<url>db/journals/ijtm/ijtm34.html#Tarn06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiouL09">
<author>Dian-Yan Liou</author>
<author>Justin D. Liou</author>
<title>The structure and evolution of knowledge clusters: a system perspective.</title>
<pages>307-325</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.023378</ee>
<url>db/journals/ijtm/ijtm46.html#LiouL09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Laudel01">
<author>Grit Laudel</author>
<title>Collaboration, creativity and rewards: why and how scientists collaborate.</title>
<pages>762-781</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002990</ee>
<url>db/journals/ijtm/ijtm22.html#Laudel01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MaskusY00">
<author>Keith E. Maskus</author>
<author>Guifang Yang</author>
<title>Intellectual property rights, foreign direct investment and competition issues in developing countries.</title>
<pages>22-34</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002806</ee>
<url>db/journals/ijtm/ijtm19.html#MaskusY00</url>
</article><article mdate="2017-06-06" key="journals/ijtm/ErdoganABN10">
<author orcid="0000-0002-0085-9689">Bilge Erdogan</author>
<author>Chimay J. Anumba</author>
<author>Dino Bouchlaghem</author>
<author>Yasemin Nielsen</author>
<title>An innovative integrated framework towards effective collaboration environments in construction.</title>
<pages>139-168</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2010.032270</ee>
<url>db/journals/ijtm/ijtm50.html#ErdoganABN10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kianto08">
<author>Aino Kianto</author>
<title>Development and validation of a survey instrument for measuring organisational renewal capability.</title>
<pages>69-88</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.018061</ee>
<url>db/journals/ijtm/ijtm42.html#Kianto08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BontisS09">
<author>Nick Bontis</author>
<author>Alexander Serenko</author>
<title>Longitudinal knowledge strategising in a long-term healthcare organisation.</title>
<pages>250-271</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024125</ee>
<url>db/journals/ijtm/ijtm47.html#BontisS09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenHWL11">
<author>Wan-Yu Chen</author>
<author>Bi-Fen Hsu</author>
<author>Mei-Ling Wang</author>
<author>Yen-Yu Lin</author>
<title>Fostering knowledge sharing through human resource management in R&amp;D teams.</title>
<pages>309-330</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038596</ee>
<url>db/journals/ijtm/ijtm53.html#ChenHWL11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CassiolatoSL02">
<author>Jos&eacute; Eduardo Cassiolato</author>
<author>Marina H. S. Szapiro</author>
<author>Helena Maria Martins Lastres</author>
<title>Local system of innovation under strain: the impacts of structural change in the telecommunications cluster of Campinas, Brazil.</title>
<pages>680-704</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003078</ee>
<url>db/journals/ijtm/ijtm24.html#CassiolatoSL02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DierkingLB03">
<author>Lynn D. Dierking</author>
<author>Jessica J. Luke</author>
<author>Kirsten S. B&uuml;chner</author>
<title>Science and technology centres - rich resources for free-choice learning in a knowledge-based society.</title>
<pages>441-459</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003112</ee>
<url>db/journals/ijtm/ijtm25.html#DierkingLB03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DelormeC05">
<author>Michel Delorme</author>
<author>L. Martin Cloutier</author>
<title>The growth of Quebec's biotechnology firms and the implications of underinvestment in strategic competencies.</title>
<pages>240-255</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006633</ee>
<url>db/journals/ijtm/ijtm31.html#DelormeC05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sattler03">
<author>Henrik Sattler</author>
<title>Appropriability of product innovations: an empirical analysis for Germany.</title>
<pages>502-516</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003420</ee>
<url>db/journals/ijtm/ijtm26.html#Sattler03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lei03">
<author>David Lei</author>
<title>Competition, cooperation and learning: the new dynamics of strategy and organisation design for the innovation net.</title>
<pages>694-716</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003452</ee>
<url>db/journals/ijtm/ijtm26.html#Lei03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Risso12">
<author orcid="0000-0001-9044-8834">Mario Risso</author>
<title>A horizontal approach to implementing corporate social responsibility in international supply chains.</title>
<pages>64-82</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.045789</ee>
<url>db/journals/ijtm/ijtm58.html#Risso12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Johnston01">
<author>Ron Johnston</author>
<title>Foresight - refining the process.</title>
<pages>711-725</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002945</ee>
<url>db/journals/ijtm/ijtm21.html#Johnston01</url>
</article><article mdate="2017-06-14" key="journals/ijtm/BallestraGP14">
<author orcid="0000-0001-7205-6319">Luca Vincenzo Ballestra</author>
<author orcid="0000-0002-2389-4495">Manlio Del Giudice</author>
<author>Maria Rosaria Della Peruta</author>
<title>An analysis of a model for the diffusion of engineering innovations under multi-firm competition.</title>
<pages>346-357</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2014.064992</ee>
<url>db/journals/ijtm/ijtm66.html#BallestraGP14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Marks01">
<author>Denton Marks</author>
<title>Transition, privatisation and economics as a management technology.</title>
<pages>529-539</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002932</ee>
<url>db/journals/ijtm/ijtm21.html#Marks01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenAXC13">
<author>Yantai Chen</author>
<author>Dimitris Assimakopoulos</author>
<author>Hongming Xie</author>
<author>Renyong Chi</author>
<title>Evolution of regional scientific collaboration networks: China-Europe emerging collaborations on nano-science.</title>
<pages>185-211</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.056898</ee>
<url>db/journals/ijtm/ijtm63.html#ChenAXC13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lee08a">
<author>Cheng-Wen Lee</author>
<title>Market performance and technological knowledge transfer of foreign subsidiaries' network embeddedness in Taiwan's electrical and electronic industry.</title>
<pages>115-139</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020701</ee>
<url>db/journals/ijtm/ijtm44.html#Lee08a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/UnM11">
<author>C. Annique Un</author>
<author>Angeles Montoro-S&aacute;nchez</author>
<title>R&amp;D investment and entrepreneurial technological capabilities: existing capabilities as determinants of new capabilities.</title>
<pages>29-52</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.038828</ee>
<url>db/journals/ijtm/ijtm54.html#UnM11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AbrellD16">
<author>Thomas Abrell</author>
<author>Markus Durstewitz</author>
<title>The role of customer and user knowledge in internal corporate venturing: the viewpoint of the corporate entrepreneur.</title>
<pages>171-185</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2016.078567</ee>
<url>db/journals/ijtm/ijtm71.html#AbrellD16</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SooDM07">
<author>Christine W. Soo</author>
<author orcid="0000-0002-4867-1861">Timothy M. Devinney</author>
<author>David F. Midgley</author>
<title>External knowledge acquisition, creativity and learning in organisational problem solving.</title>
<pages>137-159</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.012433</ee>
<url>db/journals/ijtm/ijtm38.html#SooDM07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Gammeltoft03">
<author>Peter Gammeltoft</author>
<title>Embedded flexible collaboration and development of local capabilities: a case study of the Indonesian electronics industry.</title>
<pages>743-766</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003454</ee>
<url>db/journals/ijtm/ijtm26.html#Gammeltoft03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FrenkelMG00">
<author>Amnon Frenkel</author>
<author>Shlomo Maital</author>
<author>Hariolf Grupp</author>
<title>Measuring dynamic technical change: a technometric approach.</title>
<pages>429-441</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002864</ee>
<url>db/journals/ijtm/ijtm20.html#FrenkelMG00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Fan10">
<author>Peilei Fan</author>
<title>Developing innovation-oriented strategies: lessons from Chinese mobile phone firms.</title>
<pages>168-193</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033801</ee>
<url>db/journals/ijtm/ijtm51.html#Fan10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HarmsRKF10">
<author>Rainer Harms</author>
<author>Carl Henning Reschke</author>
<author>Sascha Kraus</author>
<author>Matthias Fink</author>
<title>Antecedents of innovation and growth: analysing the impact of entrepreneurial orientation and goal-oriented management.</title>
<pages>135-152</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2010.035859</ee>
<url>db/journals/ijtm/ijtm52.html#HarmsRKF10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SloanS11a">
<author>Keith Sloan</author>
<author>Terry Sloan</author>
<title>Firm size and its impact on continuous improvement.</title>
<pages>241-255</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.042985</ee>
<url>db/journals/ijtm/ijtm56.html#SloanS11a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Poulsen01">
<author>Maj-Britt Juhl Poulsen</author>
<title>Competition and cooperation: what roles in scientific dynamics?</title>
<pages>782-793</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002991</ee>
<url>db/journals/ijtm/ijtm22.html#Poulsen01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenFC11">
<author>Yi-Yu Chen</author>
<author>George F. Farris</author>
<author>Yi-Hua Chen</author>
<title>Effects of technology cycles on strategic alliances.</title>
<pages>121-148</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038587</ee>
<url>db/journals/ijtm/ijtm53.html#ChenFC11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NwagwuA09">
<author>Williams E. Nwagwu</author>
<author>Allam Ahmed</author>
<title>Building open access in Africa.</title>
<pages>82-101</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021521</ee>
<url>db/journals/ijtm/ijtm45.html#NwagwuA09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NilssonEB02">
<author>Lars Nilsson</author>
<author>Mattias Elg</author>
<author>Bo Bergman</author>
<title>Managing ideas for the development of new products.</title>
<pages>498-513</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003067</ee>
<url>db/journals/ijtm/ijtm24.html#NilssonEB02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Liao08">
<author>Li-Fen Liao</author>
<title>Impact of manager's social power on R&amp;D employees' knowledge-sharing behaviour.</title>
<pages>169-182</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015990</ee>
<url>db/journals/ijtm/ijtm41.html#Liao08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Enserink00">
<author>Bert Enserink</author>
<title>The entrenchment of controversial technology: a framework for monitoring and mapping strategic alignments.</title>
<pages>397-407</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002818</ee>
<url>db/journals/ijtm/ijtm19.html#Enserink00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HinS09a">
<author>Leo Tan Wee Hin</author>
<author>R. Subramaniam</author>
<title>Role of scientific academies and scientific societies in promoting science and technology: experiences from Singapore.</title>
<pages>38-50</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022674</ee>
<url>db/journals/ijtm/ijtm46.html#HinS09a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YooK05">
<author>Chang Woo Yoo</author>
<author>Junmo Kim</author>
<title>Recovering from science: how far can we push?</title>
<pages>348-361</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006011</ee>
<url>db/journals/ijtm/ijtm29.html#YooK05</url>
</article><article mdate="2017-09-16" key="journals/ijtm/HallikasKL09">
<author>Jukka Hallikas</author>
<author orcid="0000-0003-4753-4416">Hannu K&auml;rkk&auml;inen</author>
<author>Hannele Lampela</author>
<title>Learning in networks: an exploration from innovation perspective.</title>
<pages>229-243</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022650</ee>
<url>db/journals/ijtm/ijtm45.html#HallikasKL09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bart00">
<author>Christopher K. Bart</author>
<title>The relationship between mission and innovativeness in the airline industry: an exploratory investigation.</title>
<pages>475-489</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002878</ee>
<url>db/journals/ijtm/ijtm20.html#Bart00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Barclay06">
<author>Ian Barclay</author>
<title>Benchmarking best practice in SMEs for growth.</title>
<pages>234-254</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008313</ee>
<url>db/journals/ijtm/ijtm33.html#Barclay06</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ChesbroughP08">
<author>Henry Chesbrough</author>
<author orcid="0000-0002-5691-2290">Andrea Prencipe</author>
<title>Networks of innovation and modularity: a dynamic perspective.</title>
<pages>414-425</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.019383</ee>
<url>db/journals/ijtm/ijtm42.html#ChesbroughP08</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Albors-GarrigosHM08">
<author orcid="0000-0003-3669-879X">Jos&eacute; Albors-Garrigos</author>
<author>Jose Hervas-Oliver</author>
<author>Patricia Beatriz Marquez</author>
<title>When technology innovation is not enough, new competitive paradigms, revisiting the Spanish ceramic tile sector.</title>
<pages>406-426</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.021047</ee>
<url>db/journals/ijtm/ijtm44.html#Albors-GarrigosHM08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MeadeRJ06">
<author>Phillip T. Meade</author>
<author>Luis Rabelo</author>
<author>Albert T. Jones</author>
<title>Applications of chaos and complexity theories to the technology adoption life cycle: case studies in the hard-drive, microprocessor, and server high-tech industries.</title>
<pages>318-335</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.010270</ee>
<url>db/journals/ijtm/ijtm36.html#MeadeRJ06</url>
</article><article mdate="2017-06-06" key="journals/ijtm/VolpentestaAP11">
<author orcid="0000-0002-2764-9913">Antonio Volpentesta</author>
<author orcid="0000-0001-6617-3789">Salvatore Ammirato</author>
<author>Roberto Palmieri</author>
<title>Investigating effects of security incident awareness on information risk perception.</title>
<pages>304-320</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039317</ee>
<url>db/journals/ijtm/ijtm54.html#VolpentestaAP11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CahenOB17">
<author>Fernanda Ribeiro Cahen</author>
<author>Moacir De Miranda Oliveira Jr.</author>
<author>Felipe Mendes Borini</author>
<title>The internationalisation of new technology-based firms from emerging markets.</title>
<pages>23-44</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004282</ee>
<url>db/journals/ijtm/ijtm74.html#CahenOB17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SawyERC01">
<author>Omar A. El Sawy</author>
<author>Inger V. Eriksson</author>
<author>Arjan Raven</author>
<author>Sven A. Carlsson</author>
<title>Understanding shared knowledge creation spaces around business processes: precursors to process innovation implementation.</title>
<pages>149-173</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002959</ee>
<url>db/journals/ijtm/ijtm22.html#SawyERC01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BeyhanR15">
<author>Berna Beyhan</author>
<author>Annika Rickne</author>
<title>Motivations of academics to interact with industry: the case of nanoscience.</title>
<pages>159-175</pages>
<year>2015</year>
<volume>68</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.069663</ee>
<url>db/journals/ijtm/ijtm68.html#BeyhanR15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LuLW05">
<author>Iuan-Yuan Lu</author>
<author>Liang-Hung Lin</author>
<author>Guo-Chiang Wu</author>
<title>Applying options to evaluate service innovations in the automotive industry.</title>
<pages>339-349</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007337</ee>
<url>db/journals/ijtm/ijtm32.html#LuLW05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Barry07">
<author orcid="0000-0002-4226-5299">Frank Barry</author>
<title>Third-level education, foreign direct investment and economic boom in Ireland.</title>
<pages>198-219</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2007.012710</ee>
<url>db/journals/ijtm/ijtm38.html#Barry07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Shin14">
<author>Juneseuk Shin</author>
<title>New business model creation through the triple helix of young entrepreneurs, SNSs, and smart devices.</title>
<pages>302-318</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2014.064969</ee>
<url>db/journals/ijtm/ijtm66.html#Shin14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuoC12">
<author>Bin Guo</author>
<author>Xiaoling Chen</author>
<title>Why are the industrial firms of emerging economies short-termistic in innovation? Industry-level evidence from Chinese manufacturing.</title>
<pages>273-299</pages>
<year>2012</year>
<volume>59</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.047247</ee>
<url>db/journals/ijtm/ijtm59.html#GuoC12</url>
</article><article mdate="2017-06-06" key="journals/ijtm/LepakMT04">
<author>David P. Lepak</author>
<author>Jennifer A. Marrone</author>
<author orcid="0000-0001-8386-6640">Riki Takeuchi</author>
<title>The relativity of HR systems: conceptualising the impact of desired employee contributions and HR philosophy.</title>
<pages>639-655</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004907</ee>
<url>db/journals/ijtm/ijtm27.html#LepakMT04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Salo01">
<author>Ahti A. Salo</author>
<title>Incentives in technology foresight.</title>
<pages>694-710</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002944</ee>
<url>db/journals/ijtm/ijtm21.html#Salo01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Myoken10">
<author>Yumiko Myoken</author>
<title>Demand-orientated policy on leading-edge industry and technology: public procurement for innovation.</title>
<pages>196-219</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029418</ee>
<url>db/journals/ijtm/ijtm49.html#Myoken10</url>
</article><article mdate="2017-06-14" key="journals/ijtm/HowellsN03">
<author orcid="0000-0002-8964-9521">Jeremy Howells</author>
<author orcid="0000-0003-0412-8063">Maria Nedeva</author>
<title>The international dimension to industry-academic links.</title>
<pages>5-17</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003086</ee>
<url>db/journals/ijtm/ijtm25.html#HowellsN03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChiangW16">
<author>Tzu-An Chiang</author>
<author>Shen-Tsu Wang</author>
<title>An evaluation and enhancement approach of the carbon footprints-based environmentally sustainable service competitiveness for coffee shops.</title>
<pages>4-24</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2016.074646</ee>
<url>db/journals/ijtm/ijtm70.html#ChiangW16</url>
</article><article mdate="2017-06-06" key="journals/ijtm/AgarwalB15">
<author>Nivedita Agarwal</author>
<author orcid="0000-0002-6901-7498">Alexander Brem</author>
<title>Strategic business transformation through technology convergence: implications from General Electric's industrial internet initiative.</title>
<pages>196-214</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.068224</ee>
<url>db/journals/ijtm/ijtm67.html#AgarwalB15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Suzuki04">
<author>Shigeru Suzuki</author>
<title>Technopolis: science parks in Japan.</title>
<pages>582-601</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005310</ee>
<url>db/journals/ijtm/ijtm28.html#Suzuki04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TsaiFLCY07">
<author>Wen-Hsien Tsai</author>
<author>Yi-Wen Fan</author>
<author>Jun-Der Leu</author>
<author>Li-Wen Chou</author>
<author>Ching-Chien Yang</author>
<title>The relationship between implementation variables and performance improvement of ERP systems.</title>
<pages>350-373</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013406</ee>
<url>db/journals/ijtm/ijtm38.html#TsaiFLCY07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YuWCL07">
<author>Ping Yu</author>
<author>Jing-Jyi Wu</author>
<author>I-Heng Chen</author>
<author>Ying-Tzu Lin</author>
<title>Is playfulness a benefit to work? Empirical evidence of professionals in Taiwan.</title>
<pages>412-429</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013503</ee>
<url>db/journals/ijtm/ijtm39.html#YuWCL07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenFH16">
<author>Chi Chen</author>
<author>Wenchang Fang</author>
<author>Shiuh-Sheng Hsu</author>
<title>A study on technological trajectory of light emitting diode in Taiwan by using patent data.</title>
<pages>83-104</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001574</ee>
<url>db/journals/ijtm/ijtm72.html#ChenFH16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YoussefY15">
<author>Mohamed A. Youssef</author>
<author>Eyad M. Youssef</author>
<title>The synergisitic impact of time-based technologies on manufacturing competitive priorities.</title>
<pages>245-268</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.068213</ee>
<url>db/journals/ijtm/ijtm67.html#YoussefY15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LillrankK01">
<author>Paul Lillrank</author>
<author>Hanna Kostama</author>
<title>Product/process culture and change management in complex organisations.</title>
<pages>73-82</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002955</ee>
<url>db/journals/ijtm/ijtm22.html#LillrankK01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LindelofL05">
<author>Peter Lindelof</author>
<author>Hans Lofsten</author>
<title>Academic versus corporate new technology-based firms in Swedish science parks: an analysis of performance, business networks and financing.</title>
<pages>334-357</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006638</ee>
<url>db/journals/ijtm/ijtm31.html#LindelofL05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BowonderM00">
<author>B. Bowonder</author>
<author>T. Miyake</author>
<title>Technology management: a knowledge ecology perspective.</title>
<pages>662-684</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002841</ee>
<url>db/journals/ijtm/ijtm19.html#BowonderM00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim08">
<author>Junmo Kim</author>
<title>From consortium to e-science: an evolutionary track of organising technology development.</title>
<pages>291-310</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016785</ee>
<url>db/journals/ijtm/ijtm41.html#Kim08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LinLLC14">
<author>Daomi Lin</author>
<author>Jiangyong Lu</author>
<author>Xiaohui Liu</author>
<author>Seong-Jin Choi</author>
<title>Returnee CEO and innovation in Chinese high-tech SMEs.</title>
<pages>151-171</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060947</ee>
<url>db/journals/ijtm/ijtm65.html#LinLLC14</url>
</article><article mdate="2017-06-06" key="journals/ijtm/KonnolaSB11">
<author orcid="0000-0002-3830-7396">Totti K&ouml;nn&ouml;l&auml;</author>
<author>Ahti Salo</author>
<author>Ville Brummer</author>
<title>Foresight for European coordination: developing national priorities for the Forest-Based Sector Technology Platform.</title>
<pages>438-459</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041583</ee>
<url>db/journals/ijtm/ijtm54.html#KonnolaSB11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Latorre-MartinezIP14">
<author>Mar&iacute;a Pilar Latorre-Mart&iacute;nez</author>
<author>Tatiana I&ntilde;&iacute;guez-Berrozpe</author>
<author>Marta Plumed-Lasarte</author>
<title>Image-focused social media for a market analysis of tourism consumption.</title>
<pages>17-30</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.059234</ee>
<url>db/journals/ijtm/ijtm64.html#Latorre-MartinezIP14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SpiveyMS02">
<author>W. Austin Spivey</author>
<author>J. Michael Munson</author>
<author>Donald R. Spoon</author>
<title>A generic value tree for high-technology enterprises.</title>
<pages>219-235</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003053</ee>
<url>db/journals/ijtm/ijtm24.html#SpiveyMS02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MiozzoD04">
<author>Marcela Miozzo</author>
<author>Paul Dewick</author>
<title>Networks and innovation in European construction: benefits from inter-organisational cooperation in a fragmented industry.</title>
<pages>68-92</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.003882</ee>
<url>db/journals/ijtm/ijtm27.html#MiozzoD04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CristaniMS09">
<author>M. Cristani</author>
<author>C. E. Majorana</author>
<author>V. A. Salomoni</author>
<title>Knowledge Representation issues in structural engineering: a framework for application in the case of structures in healthcare.</title>
<pages>207-238</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024123</ee>
<url>db/journals/ijtm/ijtm47.html#CristaniMS09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Baark01">
<author>Erik Baark</author>
<title>The making of science and technology policy in China.</title>
<pages>1-21</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2001.002898</ee>
<url>db/journals/ijtm/ijtm21.html#Baark01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JumaFHHKLAIRS01">
<author>Calestous Juma</author>
<author>Karen Fang</author>
<author>Derya Honca</author>
<author>Jorge Huete-Perez</author>
<author>Victor Konde</author>
<author>Sung H. Lee</author>
<author>Jimena Arenas</author>
<author>Adrian Ivinson</author>
<author>Hilary Robinson</author>
<author>Seema Singh</author>
<title>Global governance of technology: meeting the needs of developing countries.</title>
<pages>629-655</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002982</ee>
<url>db/journals/ijtm/ijtm22.html#JumaFHHKLAIRS01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AbukhaderJ04">
<author>Sajed M. Abukhader</author>
<author>Gunilla Jonson</author>
<title>E-commerce and the environment: a gateway to the renewal of greening supply chains.</title>
<pages>274-288</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2004.005066</ee>
<url>db/journals/ijtm/ijtm28.html#AbukhaderJ04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HinS09b">
<author>Leo Tan Wee Hin</author>
<author>R. Subramaniam</author>
<title>Scientific academies and scientific societies as agents for promoting science culture in developing countries.</title>
<pages>132-145</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022681</ee>
<url>db/journals/ijtm/ijtm46.html#HinS09b</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TangL02">
<author>Victor Tang</author>
<author>Man-Hyung Lee</author>
<title>International joint venture of two giants in the CRT industry: strategy analysis using system dynamics.</title>
<pages>511-535</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003024</ee>
<url>db/journals/ijtm/ijtm23.html#TangL02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McLaughlinBS08">
<author>Patrick McLaughlin</author>
<author>John Bessant</author>
<author>Palie Smart</author>
<title>Developing an organisation culture to facilitate radical innovation.</title>
<pages>298-323</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.021041</ee>
<url>db/journals/ijtm/ijtm44.html#McLaughlinBS08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cabral09">
<author>Regis Cabral</author>
<title>Still digging, still planting: the Royal Swedish Academy of Sciences - knowledge yesterday, knowledge today and knowledge for tomorrow.</title>
<pages>51-70</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022675</ee>
<url>db/journals/ijtm/ijtm46.html#Cabral09</url>
</article><article mdate="2017-11-06" key="journals/ijtm/BaeyensVM06">
<author>Katleen Baeyens</author>
<author orcid="0000-0001-5608-1944">Tom Vanacker</author>
<author orcid="0000-0002-3406-9386">Sophie Manigart</author>
<title>Venture capitalists' selection process: the case of biotechnology proposals.</title>
<pages>28-46</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2006.009446</ee>
<url>db/journals/ijtm/ijtm34.html#BaeyensVM06</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Spender07">
<author orcid="0000-0002-0803-4622">J.-C. Spender</author>
<title>Data, meaning and practice: how the knowledge-based view can clarify technology's relationship with organisations.</title>
<pages>178-196</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.012435</ee>
<url>db/journals/ijtm/ijtm38.html#Spender07</url>
</article><article mdate="2017-06-06" key="journals/ijtm/RoessnerPNJ02">
<author>J. David Roessner</author>
<author orcid="0000-0002-4520-6518">Alan L. Porter</author>
<author>Nils C. Newman</author>
<author>Xiao-Yin Jin</author>
<title>A comparison of recent assessments of the high-tech competitiveness of nations.</title>
<pages>536-557</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003025</ee>
<url>db/journals/ijtm/ijtm23.html#RoessnerPNJ02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JaspersE10">
<author>Ferdinand Jaspers</author>
<author>Jan van den Ende</author>
<title>Open innovation and systems integration: how and why firms know more than they make.</title>
<pages>275-294</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035977</ee>
<url>db/journals/ijtm/ijtm52.html#JaspersE10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Peissl01">
<author>Walter Peissl</author>
<title>Technology foresight - more than fashion?</title>
<pages>653-660</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002941</ee>
<url>db/journals/ijtm/ijtm21.html#Peissl01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiMM04">
<author>Jun Li</author>
<author>Jay Mitra</author>
<author>Harry Matlay</author>
<title>E-commerce and management of channel conflict: evidence from small manufacturing firms in the UK.</title>
<pages>747-766</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005781</ee>
<url>db/journals/ijtm/ijtm28.html#LiMM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RaghavanSR04">
<author>N. R. Srinivasa Raghavan</author>
<author>Bishal B. Shreshtha</author>
<author>S. V. Rajeev</author>
<title>Object-oriented design and implementation of a web-enabled beer game for illustrating the bullwhip effect in supply chains.</title>
<pages>191-205</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2004.005061</ee>
<url>db/journals/ijtm/ijtm28.html#RaghavanSR04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TezukaN04">
<author>Sadaharu Tezuka</author>
<author>Kiyoshi Niwa</author>
<title>Knowledge sharing in inter-organisational intelligence: R&amp;D-based venture alliance community cases in Japan.</title>
<pages>714-728</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005779</ee>
<url>db/journals/ijtm/ijtm28.html#TezukaN04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZedtwitzG02">
<author>Maximilian von Zedtwitz</author>
<author>Oliver Gassmann</author>
<title>Managing customer oriented research.</title>
<pages>165-193</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003050</ee>
<url>db/journals/ijtm/ijtm24.html#ZedtwitzG02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Urbaniak01">
<author>Maciej Urbaniak</author>
<title>The meaning of technological innovation in business-to-business marketing.</title>
<pages>628-636</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002939</ee>
<url>db/journals/ijtm/ijtm21.html#Urbaniak01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/EgbetokunSSOAI09">
<author orcid="0000-0002-2069-7648">Abiodun A. Egbetokun</author>
<author>Willie Siyanbola</author>
<author>M. Sanni</author>
<author>O. O. Olamade</author>
<author>A. A. Adeniyi</author>
<author>I. A. Irefin</author>
<title>What drives innovation? Inferences from an industry-wide survey in Nigeria.</title>
<pages>123-140</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021524</ee>
<url>db/journals/ijtm/ijtm45.html#EgbetokunSSOAI09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Al-KhawaldehS07">
<author>Khleef Al-Khawaldeh</author>
<author>Terry Sloan</author>
<title>Continuous improvement in manufacturing companies in Jordan.</title>
<pages>323-331</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012266</ee>
<url>db/journals/ijtm/ijtm37.html#Al-KhawaldehS07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Burgel07">
<author>Hans Dietmar Burgel</author>
<title>Reorganisation and restructuring methods in R&amp;D.</title>
<pages>278-293</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.015753</ee>
<url>db/journals/ijtm/ijtm40.html#Burgel07</url>
</article><article mdate="2017-06-06" key="journals/ijtm/NakandalaT13">
<author orcid="0000-0003-1535-5288">Dilupa Nakandala</author>
<author>Tim Turpin</author>
<title>Responses of successful local firms to changing foreign partnership characteristics: a model of dynamic technology management strategies.</title>
<pages>156-176</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2013.052153</ee>
<url>db/journals/ijtm/ijtm61.html#NakandalaT13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KylaheikoVT03">
<author>Kalevi Kyl&auml;heiko</author>
<author>Veli-Matti Virolainen</author>
<author>Markku Tuominen</author>
<title>Emergence of the supply network in Finnish industry: experiment in theoretical reconstruction.</title>
<pages>605-613</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003125</ee>
<url>db/journals/ijtm/ijtm25.html#KylaheikoVT03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McCabe01">
<author>Brenda McCabe</author>
<title>Belief networks for engineering applications.</title>
<pages>257-270</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002911</ee>
<url>db/journals/ijtm/ijtm21.html#McCabe01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Galende06">
<author orcid="0000-0003-0550-2555">Jesus Galende</author>
<title>The appropriation of the results of innovative activity.</title>
<pages>107-135</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009231</ee>
<url>db/journals/ijtm/ijtm35.html#Galende06</url>
</article><article mdate="2017-06-14" key="journals/ijtm/KimCC06">
<author>Jai-Beom Kim</author>
<author>Chong Ju Choi</author>
<author orcid="0000-0002-3472-8230">Stephen Chen</author>
<title>Innovation management and intellectual property in knowledge-oriented economies.</title>
<pages>295-304</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.010268</ee>
<url>db/journals/ijtm/ijtm36.html#KimCC06</url>
</article><article mdate="2017-06-14" key="journals/ijtm/WangRVC12">
<author>Yuandi Wang</author>
<author orcid="0000-0001-5475-2222">Nadine Roijakkers</author>
<author orcid="0000-0002-5710-4738">Wim Vanhaverbeke</author>
<author>Jin Chen</author>
<title>How Chinese firms employ open innovation to strengthen their innovative performance.</title>
<pages>235-254</pages>
<year>2012</year>
<volume>59</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.047245</ee>
<url>db/journals/ijtm/ijtm59.html#WangRVC12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FangW06">
<author>Liang-Yuan Fang</author>
<author>Se-Hwa Wu</author>
<title>Accelerating innovation through knowledge co-evolution: a case study in the Taiwan semiconductor industry.</title>
<pages>183-195</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008310</ee>
<url>db/journals/ijtm/ijtm33.html#FangW06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BiondiIM02">
<author>Vittorio Biondi</author>
<author>Fabio Iraldo</author>
<author>Sandra Meredith</author>
<title>Achieving sustainability through environmental innovation: the role of SMEs.</title>
<pages>612-626</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003074</ee>
<url>db/journals/ijtm/ijtm24.html#BiondiIM02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Geisler02">
<author>Eliezer Geisler</author>
<title>On the ubiquitous inadequacy of co-variation design in strategy research.</title>
<pages>558-577</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003026</ee>
<url>db/journals/ijtm/ijtm23.html#Geisler02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JanssenS00">
<author>Terry Janssen</author>
<author>Andrew P. Sage</author>
<title>A support system for multiple perspectives knowledge management and conflict resolution.</title>
<pages>472-490</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002820</ee>
<url>db/journals/ijtm/ijtm19.html#JanssenS00</url>
</article><article mdate="2017-09-16" key="journals/ijtm/Cho10">
<author orcid="0000-0003-0726-8352">Vincent Cho</author>
<title>A study on the impact of Organisational Learning to the effectiveness of Electronic Document Management Systems.</title>
<pages>182-207</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2010.032272</ee>
<url>db/journals/ijtm/ijtm50.html#Cho10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Riis02">
<author>Jens Ove Riis</author>
<title>Orchestrating industrial development.</title>
<pages>246-260</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003009</ee>
<url>db/journals/ijtm/ijtm23.html#Riis02</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ShapiraF03">
<author orcid="0000-0003-2488-5985">Philip Shapira</author>
<author>Ryuzo Furukawa</author>
<title>Evaluating a large-scale research and development program in Japan: methods, findings and insights.</title>
<pages>166-190</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003368</ee>
<url>db/journals/ijtm/ijtm26.html#ShapiraF03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChangC07">
<author>Shuchih Ernest Chang</author>
<author>Ying Chen Chou</author>
<title>A virtual enterprise based information system architecture for the tourism industry.</title>
<pages>374-391</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013407</ee>
<url>db/journals/ijtm/ijtm38.html#ChangC07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Stocklmayer03">
<author>Susan M. Stocklmayer</author>
<title>What makes a successful outreach program? An outline of the Shell Questacon Science Circus.</title>
<pages>405-412</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003109</ee>
<url>db/journals/ijtm/ijtm25.html#Stocklmayer03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WubbenBKKO15">
<author>Emiel F. M. Wubben</author>
<author>Maarten Batterink</author>
<author>Christos Kolympiris</author>
<author>Ron G. M. Kemp</author>
<author>Onno S. W. F. Omta</author>
<title>Profiting from external knowledge: the impact of different external knowledge acquisition strategies on innovation performance.</title>
<pages>139-165</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2015.071552</ee>
<url>db/journals/ijtm/ijtm69.html#WubbenBKKO15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Enkel10">
<author>Ellen Enkel</author>
<title>Attributes required for profiting from open innovation in networks.</title>
<pages>344-371</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035980</ee>
<url>db/journals/ijtm/ijtm52.html#Enkel10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wagner13">
<author>Marcus Wagner</author>
<title>Determinants of acquisition value: the role of target and acquirer characteristics.</title>
<pages>56-74</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2013.053031</ee>
<url>db/journals/ijtm/ijtm62.html#Wagner13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RothgangTL03">
<author>Michael Rothgang</author>
<author>Lutz Trettin</author>
<author>Bernhard Lageman</author>
<title>How to regain funds from technology promotion programs. Results from an evaluation of the financial instruments used in public R&amp;D funding of incumbent SME.</title>
<pages>247-269</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003372</ee>
<url>db/journals/ijtm/ijtm26.html#RothgangTL03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HylandMS07">
<author>Paul Hyland</author>
<author>Robert Mellor</author>
<author>Terry Sloan</author>
<title>Performance measurement and continuous improvement: are they linked to manufacturing strategy?</title>
<pages>237-246</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012260</ee>
<url>db/journals/ijtm/ijtm37.html#HylandMS07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LuH07">
<author>Jung-Ho Lu</author>
<author>Der-Juinn Horng</author>
<title>The role of directors' and officers' insurance in corporate governance: evidence from the high-tech industry in Taiwan.</title>
<pages>229-247</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013536</ee>
<url>db/journals/ijtm/ijtm40.html#LuH07</url>
</article><article mdate="2018-01-12" key="journals/ijtm/RoigasMV18">
<author>K&auml;rt R&otilde;igas</author>
<author>Pierre Mohnen</author>
<author>Urmas Varblane</author>
<title>Which firms use universities as cooperation partners? - A comparative view in Europe.</title>
<pages>32-57</pages>
<year>2018</year>
<volume>76</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2018.10009595</ee>
<url>db/journals/ijtm/ijtm76.html#RoigasMV18</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/LytrasSP09">
<author>Miltiadis D. Lytras</author>
<author>Evangelos Sakkopoulos</author>
<author>Patricia Ord&oacute;&ntilde;ez de Pablos</author>
<title>Semantic Web and Knowledge Management for the health domain: state of the art and challenges for the Seventh Framework Programme (FP7) of the European Union (2007-2013).</title>
<pages>239-249</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024124</ee>
<url>db/journals/ijtm/ijtm47.html#LytrasSP09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LytrasP09">
<author>Miltiadis D. Lytras</author>
<author>Patricia Ord&oacute;&ntilde;ez de Pablos</author>
<title>Managing, measuring and reporting knowledge-based resources in hospitals.</title>
<pages>96-113</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024116</ee>
<url>db/journals/ijtm/ijtm47.html#LytrasP09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GhoshS09">
<author>Biswadip Ghosh</author>
<author>Judy E. Scott</author>
<title>Managing clinical knowledge among hospital nurses.</title>
<pages>57-74</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024114</ee>
<url>db/journals/ijtm/ijtm47.html#GhoshS09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MotwaniBP01">
<author>Jaidee Motwani</author>
<author>Sunil Babbar</author>
<author>Sameer Prasad</author>
<title>Operations management in transitional countries.</title>
<pages>586-603</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002936</ee>
<url>db/journals/ijtm/ijtm21.html#MotwaniBP01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HinS09">
<author>Leo Tan Wee Hin</author>
<author>R. Subramaniam</author>
<title>Scientific academies and scientific societies have come of age.</title>
<pages>1-8</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022671</ee>
<url>db/journals/ijtm/ijtm46.html#HinS09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Steiner03">
<author>Michael Steiner</author>
<title>Regional knowledge networks as evolving social technologies.</title>
<pages>326-345</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003385</ee>
<url>db/journals/ijtm/ijtm26.html#Steiner03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TessitoreDF12">
<author>Sara Tessitore</author>
<author>Tiberio Daddi</author>
<author>Marco Frey</author>
<title>Eco-innovation and competitiveness in industrial clusters.</title>
<pages>49-63</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.045788</ee>
<url>db/journals/ijtm/ijtm58.html#TessitoreDF12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kondo05">
<author>Masayuki Kondo</author>
<title>Networking for technology acquisition and transfer.</title>
<pages>154-175</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006822</ee>
<url>db/journals/ijtm/ijtm32.html#Kondo05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZhaoLLC13">
<author>Jie Zhao</author>
<author>Yuan Li</author>
<author>Yi Liu</author>
<author>Haowen Cai</author>
<title>Contingencies in collaborative innovation: matching organisational learning with strategic orientation and environmental munificence.</title>
<pages>193-222</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.055163</ee>
<url>db/journals/ijtm/ijtm62.html#ZhaoLLC13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Harding03">
<author>Rebecca Harding</author>
<title>New challenges for innovation systems: a cross-country comparison.</title>
<pages>226-246</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003371</ee>
<url>db/journals/ijtm/ijtm26.html#Harding03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/VerwaalVR08">
<author>Ernst Verwaal</author>
<author>Antonio J. Verd&uacute;-Jover</author>
<author>Arthur Recter</author>
<title>Transaction costs and organisational learning in strategic outsourcing relationships.</title>
<pages>38-54</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015983</ee>
<url>db/journals/ijtm/ijtm41.html#VerwaalVR08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CantwellZ11">
<author>John Cantwell</author>
<author>Yanli Zhang</author>
<title>Innovation and location in the multinational firm.</title>
<pages>116-132</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.038832</ee>
<url>db/journals/ijtm/ijtm54.html#CantwellZ11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JayawarnaP03">
<author>Dilani Jayawarna</author>
<author>Alan W. Pearson</author>
<title>Application of Integrated Quality Management Systems to promote CI and learning in R&amp;D organisations.</title>
<pages>828-842</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003392</ee>
<url>db/journals/ijtm/ijtm26.html#JayawarnaP03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/RegazzoniRN11">
<author>Daniele Regazzoni</author>
<author orcid="0000-0002-1779-5183">Caterina Rizzi</author>
<author>Roberto Nani</author>
<title>A TRIZ-based approach to manage innovation and intellectual property.</title>
<pages>274-285</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041953</ee>
<url>db/journals/ijtm/ijtm55.html#RegazzoniRN11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lei00">
<author>David Lei</author>
<title>Industry evolution and competence development: the imperatives of technological convergence.</title>
<pages>699-738</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002848</ee>
<url>db/journals/ijtm/ijtm19.html#Lei00</url>
</article><article mdate="2017-06-06" key="journals/ijtm/RaynaS10">
<author orcid="0000-0003-0144-6031">Thierry Rayna</author>
<author>Ludmila Striukova</author>
<title>Large-scale open innovation: open source vs. patent pools.</title>
<pages>477-496</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035986</ee>
<url>db/journals/ijtm/ijtm52.html#RaynaS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BragaF00">
<author>Carlos A. Primo Braga</author>
<author>Carsten Fink</author>
<title>International transactions in intellectual property and developing countries.</title>
<pages>35-56</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002800</ee>
<url>db/journals/ijtm/ijtm19.html#BragaF00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Chalmers00">
<author>Ove Granstrand Chalmers</author>
<title>Corporate management of intellectual property in Japan.</title>
<pages>121-148</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002804</ee>
<url>db/journals/ijtm/ijtm19.html#Chalmers00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SnyderMW00">
<author>Charles A. Snyder</author>
<author>Denise Johnson McManus</author>
<author>Larry T. Wilson</author>
<title>Corporate memory management: a knowledge management process model.</title>
<pages>752-764</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002894</ee>
<url>db/journals/ijtm/ijtm20.html#SnyderMW00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hakkinen05">
<author>Lotta H&auml;kkinen</author>
<title>Impacts of international mergers and acquisitions on the logistics operations of manufacturing companies.</title>
<pages>362-385</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006012</ee>
<url>db/journals/ijtm/ijtm29.html#Hakkinen05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/StefanB16">
<author>Ioana Stefan</author>
<author>Lars Bengtsson</author>
<title>Appropriability: a key to opening innovation internationally?</title>
<pages>232-252</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2016.078570</ee>
<url>db/journals/ijtm/ijtm71.html#StefanB16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Salmi03">
<author>Hannu Salmi</author>
<title>Science centres as learning laboratories: experiences of Heureka, the Finnish Science Centre.</title>
<pages>460-476</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003113</ee>
<url>db/journals/ijtm/ijtm25.html#Salmi03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bokov07">
<author>Vladimir B. Bokov</author>
<title>Mechanistic-statistical concurrent modelling techniques.</title>
<pages>50-71</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.011803</ee>
<url>db/journals/ijtm/ijtm37.html#Bokov07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McKayP01">
<author>Alison McKay</author>
<author>Alan de Pennington</author>
<title>Towards an integrated description of product, process and supply chain.</title>
<pages>203-220</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002908</ee>
<url>db/journals/ijtm/ijtm21.html#McKayP01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Maini05">
<author>Chetan Kumaar Maini</author>
<title>REVA Electric car: a case study of innovation at RECC.</title>
<pages>199-212</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006824</ee>
<url>db/journals/ijtm/ijtm32.html#Maini05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Eto00">
<author>Hajime Eto</author>
<title>Market analysis of mathematics-based software in an expert-founded venture.</title>
<pages>739-759</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002843</ee>
<url>db/journals/ijtm/ijtm19.html#Eto00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/XuML15">
<author>Yusen Xu</author>
<author>Jia Ma</author>
<author>Yaodi Lu</author>
<title>Innovation catch-up enabled by the window of opportunity in high-velocity markets and the intrinsic capabilities of an enterprise: the case of HTC.</title>
<pages>93-116</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2015.071550</ee>
<url>db/journals/ijtm/ijtm69.html#XuML15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SloanS11">
<author>Keith Sloan</author>
<author>Terry Sloan</author>
<title>Dispersion of continuous improvement and its impact on continuous improvement.</title>
<pages>43-55</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041679</ee>
<url>db/journals/ijtm/ijtm55.html#SloanS11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BigandDY11">
<author>Michel Bigand</author>
<author>Carine Deslee</author>
<author>Pascal Yim</author>
<title>Innovative product design for students-enterprises linked projects.</title>
<pages>238-249</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041950</ee>
<url>db/journals/ijtm/ijtm55.html#BigandDY11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NakamuraN04">
<author>Alice Nakamura</author>
<author>Masao Nakamura</author>
<title>Firm performance, knowledge transfer and international joint ventures.</title>
<pages>731-746</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2004.004991</ee>
<url>db/journals/ijtm/ijtm27.html#NakamuraN04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RonchiCC03">
<author>Stefano Ronchi</author>
<author>Ross Chapman</author>
<author>Mariano Corso</author>
<title>Knowledge management in continuous product innovation: a contingent approach.</title>
<pages>871-886</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003395</ee>
<url>db/journals/ijtm/ijtm26.html#RonchiCC03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kuo04">
<author>Hsien-Chang Kuo</author>
<title>Strategic change for the banking industry under financial deregulation: implications from Taiwan evidence.</title>
<pages>331-342</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2004.004270</ee>
<url>db/journals/ijtm/ijtm27.html#Kuo04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Islo01">
<author>Henry E. Islo</author>
<title>Simulation models of organisational systems.</title>
<pages>393-419</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002921</ee>
<url>db/journals/ijtm/ijtm21.html#Islo01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wang10">
<author>Wen-Pai Wang</author>
<title>Determining product differentiation strategies under uncertain environment.</title>
<pages>169-181</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2010.032271</ee>
<url>db/journals/ijtm/ijtm50.html#Wang10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HerzogL10">
<author>Philipp Herzog</author>
<author>Jens Leker</author>
<title>Open and closed innovation - different innovation cultures for different strategies.</title>
<pages>322-343</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035979</ee>
<url>db/journals/ijtm/ijtm52.html#HerzogL10</url>
</article><article mdate="2017-06-06" key="journals/ijtm/RaynaS15">
<author orcid="0000-0003-0144-6031">Thierry Rayna</author>
<author>Ludmila Striukova</author>
<title>Open innovation 2.0: is co-creation the ultimate challenge?</title>
<pages>38-53</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2015.071030</ee>
<url>db/journals/ijtm/ijtm69.html#RaynaS15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BirchallT02">
<author>David William Birchall</author>
<author>George Tovstiga</author>
<title>Assessing the firm's strategic knowledge portfolio: a framework and methodology.</title>
<pages>419-434</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003063</ee>
<url>db/journals/ijtm/ijtm24.html#BirchallT02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Oravec04">
<author>Jo Ann Oravec</author>
<title>The transparent knowledge worker: weblogs and reputation mechanisms in KM systems.</title>
<pages>767-775</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005782</ee>
<url>db/journals/ijtm/ijtm28.html#Oravec04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Dutrenit06">
<author>Gabriela Dutrenit</author>
<title>Instability of the technology strategy and building of the first strategic capabilities in a large Mexican firm.</title>
<pages>43-61</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009961</ee>
<url>db/journals/ijtm/ijtm36.html#Dutrenit06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DhandaH05">
<author>Kanwalroop Kathy Dhanda</author>
<author>Ronald Paul Hill</author>
<title>The role of information technology and systems in reverse logistics: a case study.</title>
<pages>140-151</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006628</ee>
<url>db/journals/ijtm/ijtm31.html#DhandaH05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Medina-BorjaT07">
<author orcid="0000-0002-4163-6553">Alexandra Medina-Borja</author>
<author>Konstantinos P. Triantis</author>
<title>A conceptual framework to evaluate performance of non-profit social service organisations.</title>
<pages>147-161</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.011808</ee>
<url>db/journals/ijtm/ijtm37.html#Medina-BorjaT07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Chukwu02">
<author>Ethelbert Nwakuche Chukwu</author>
<title>Control under scarcity of the growth of wealth of nations: with examples from Austria and the USA.</title>
<pages>675-690</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003033</ee>
<url>db/journals/ijtm/ijtm23.html#Chukwu02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sheather02">
<author>Graeme Sheather</author>
<title>Transforming Australian manufacturing enterprises for global competitiveness.</title>
<pages>514-541</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003068</ee>
<url>db/journals/ijtm/ijtm24.html#Sheather02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WuLC07">
<author>Hsueh-Liang Wu</author>
<author>Bou-Wen Lin</author>
<author>Chung-Jen Chen</author>
<title>Examining governance-innovation relationship in the high-tech industries: monitoring, incentive and a fit with strategic posture.</title>
<pages>86-104</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013442</ee>
<url>db/journals/ijtm/ijtm39.html#WuLC07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NeubertOB04">
<author>Gilles Neubert</author>
<author>Yacine Ouzrout</author>
<author>Abdelaziz Bouras</author>
<title>Collaboration and integration through information technologies in supply chains.</title>
<pages>259-273</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2004.005065</ee>
<url>db/journals/ijtm/ijtm28.html#NeubertOB04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tsai15">
<author>Shu-pei Tsai</author>
<title>Dynamic marketing capabilities and radical innovation commercialisation.</title>
<pages>174-195</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.068223</ee>
<url>db/journals/ijtm/ijtm67.html#Tsai15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChauhanB04">
<author>Neel Chauhan</author>
<author>Nick Bontis</author>
<title>Organisational learning via groupware: a path to discovery or disaster?</title>
<pages>591-610</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004904</ee>
<url>db/journals/ijtm/ijtm27.html#ChauhanB04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Granstrand04">
<author>Ove Granstrand</author>
<title>The economics and management of technology trade: towards a pro-licensing era?</title>
<pages>209-240</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003953</ee>
<url>db/journals/ijtm/ijtm27.html#Granstrand04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tsao09">
<author>Yu-Chung Tsao</author>
<title>Production and payment policies for an imperfect manufacturing system with machine maintenance and credit policies.</title>
<pages>240-257</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024918</ee>
<url>db/journals/ijtm/ijtm48.html#Tsao09</url>
</article><article mdate="2017-06-06" key="journals/ijtm/BengtssonLD13">
<author>Lars Bengtsson</author>
<author orcid="0000-0002-5427-3560">Nicolette Lakemond</author>
<author>Mandar Dabhilkar</author>
<title>Exploiting supplier innovativeness through knowledge integration.</title>
<pages>237-253</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.052669</ee>
<url>db/journals/ijtm/ijtm61.html#BengtssonLD13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TsujimotoMS14">
<author>Masaharu Tsujimoto</author>
<author>Yoichi Matsumoto</author>
<author>Kiyonori Sakakibara</author>
<title>Finding the 'boundary mediators': network analysis of the joint R&amp;D project between Toyota and Panasonic.</title>
<pages>120-133</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2014.064598</ee>
<url>db/journals/ijtm/ijtm66.html#TsujimotoMS14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hanna07">
<author>Victoria Hanna</author>
<title>Exploiting complementary competencies via inter-firm cooperation.</title>
<pages>247-258</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012261</ee>
<url>db/journals/ijtm/ijtm37.html#Hanna07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TeubalA03">
<author>Morris Teubal</author>
<author>Gil Avnimelech</author>
<title>Foreign acquisitions and R&amp;D leverage in High Tech industries of peripheral economies. Lessons and policy issues from the Israeli experiences.</title>
<pages>362-385</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003387</ee>
<url>db/journals/ijtm/ijtm26.html#TeubalA03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiaoTH15">
<author>Wen-Chih Liao</author>
<author>Chun-Chou Tseng</author>
<author>Mei Hsiu-Ching Ho</author>
<title>The effects of integrating innovative resources on organisational performance: the moderating role of innovation life cycle.</title>
<pages>215-244</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.068220</ee>
<url>db/journals/ijtm/ijtm67.html#LiaoTH15</url>
</article><article mdate="2017-06-06" key="journals/ijtm/MaineG07">
<author orcid="0000-0003-1887-5756">Elicia Maine</author>
<author>Elizabeth Garnsey</author>
<title>The commercialisation environment of advanced materials ventures.</title>
<pages>49-71</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013440</ee>
<url>db/journals/ijtm/ijtm39.html#MaineG07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MininQZ17">
<author>Alberto Di Minin</author>
<author>Xiaohong Quan</author>
<author>Jieyin Zhang</author>
<title>A comparison of international R&amp;D strategies of Chinese companies in Europe and the USA.</title>
<pages>185-213</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004270</ee>
<url>db/journals/ijtm/ijtm74.html#MininQZ17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BevanW03">
<author>Bronwyn Bevan</author>
<author>Noel Wanner</author>
<title>Science centre on a screen.</title>
<pages>427-440</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003111</ee>
<url>db/journals/ijtm/ijtm25.html#BevanW03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ClarkD02">
<author>Woodrow W. Clark II</author>
<author>Istemi Demrig</author>
<title>Investment and capitalisation of firms in the USA.</title>
<pages>391-418</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003062</ee>
<url>db/journals/ijtm/ijtm24.html#ClarkD02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Montoro-SanchezMG06">
<author>Angeles Montoro-S&aacute;nchez</author>
<author>Eva M. Mora-Valent&iacute;n</author>
<author>Luis &Aacute;ngel Guerras-Mart&iacute;n</author>
<title>R&amp;D cooperative agreements between firms and research organisations: a comparative analysis of the characteristics and reasons depending on the nature of the partner.</title>
<pages>156-181</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009233</ee>
<url>db/journals/ijtm/ijtm35.html#Montoro-SanchezMG06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PalcicP15">
<author>Iztok Palcic</author>
<author>Krsto Pandza</author>
<title>Managing technologies within an industrial cluster: a case from a toolmakers cluster of Slovenia.</title>
<pages>301-317</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.072974</ee>
<url>db/journals/ijtm/ijtm69.html#PalcicP15</url>
</article><article mdate="2017-06-14" key="journals/ijtm/GineviciusPA07">
<author orcid="0000-0003-2067-4398">Romualdas Ginevicius</author>
<author>Valentinas Podvezko</author>
<author>Algirdas Andruskevicius</author>
<title>Quantitative evaluation of building technology.</title>
<pages>192-214</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013534</ee>
<url>db/journals/ijtm/ijtm40.html#GineviciusPA07</url>
</article><article mdate="2017-06-14" key="journals/ijtm/LiuCXW16">
<author>Xuefeng Liu</author>
<author>Jin Chen</author>
<author orcid="0000-0002-7710-3425">Yuying Xie</author>
<author>Dan Wu</author>
<title>Strategic transformation through innovation in emerging industry: a case study.</title>
<pages>192-209</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001554</ee>
<url>db/journals/ijtm/ijtm72.html#LiuCXW16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WangT05">
<author>Jiann-Chyuan Wang</author>
<author>Kuen-Hung Tsai</author>
<title>Development strategies and prospects for Taiwan's R&amp;D service industry.</title>
<pages>308-326</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006013</ee>
<url>db/journals/ijtm/ijtm29.html#WangT05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PettersenBT13">
<author>Ida Nilstad Pettersen</author>
<author>Casper Boks</author>
<author>Arnold Tukker</author>
<title>Framing the role of design in transformation of consumption practices: beyond the designer-product-user triad.</title>
<pages>70-103</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2013.055580</ee>
<url>db/journals/ijtm/ijtm63.html#PettersenBT13</url>
</article><article mdate="2017-06-06" key="journals/ijtm/LeeLS05">
<author orcid="0000-0002-0403-6348">Keun Lee</author>
<author>Chaisung Lim</author>
<author>Wichin Song</author>
<title>Emerging digital technology as a window of opportunity and technological leapfrogging: catch-up in digital TV by the Korean firms.</title>
<pages>40-63</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006004</ee>
<url>db/journals/ijtm/ijtm29.html#LeeLS05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sherwood00">
<author>Robert M. Sherwood</author>
<title>The TRIPS Agreement: benefits and costs for developing countries.</title>
<pages>57-76</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002809</ee>
<url>db/journals/ijtm/ijtm19.html#Sherwood00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/James02">
<author>Jeffrey James</author>
<title>The human development report 2001 and information technology for developing countries: an evaluation.</title>
<pages>643-652</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003031</ee>
<url>db/journals/ijtm/ijtm23.html#James02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Liu09">
<author>Shunzhong Liu</author>
<title>Determinants of service innovative dimensions in Knowledge Intensive Business Services: evidence from PR China.</title>
<pages>95-114</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2009.024602</ee>
<url>db/journals/ijtm/ijtm48.html#Liu09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DemiragD07">
<author>Istemi S. Demirag</author>
<author>Noriyuki Doi</author>
<title>R&amp;D management under short term pressures: a comparative study of the UK and Japan.</title>
<pages>249-277</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.015752</ee>
<url>db/journals/ijtm/ijtm40.html#DemiragD07</url>
</article><article mdate="2017-06-06" key="journals/ijtm/BilgenO04">
<author orcid="0000-0002-2361-0413">Bilge Bilgen</author>
<author>Irem Ozkarahan</author>
<title>Strategic tactical and operational production-distribution models: a review.</title>
<pages>151-171</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2004.005059</ee>
<url>db/journals/ijtm/ijtm28.html#BilgenO04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BergPPS06">
<author>Pekka Berg</author>
<author>Jussi Pihlajamaa</author>
<author>Jarno Poskela</author>
<author>Anssi Smedlund</author>
<title>Benchmarking of quality and maturity of innovation activities in a networked environment.</title>
<pages>255-278</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008314</ee>
<url>db/journals/ijtm/ijtm33.html#BergPPS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Agassi09">
<author>Joseph Agassi</author>
<title>On the decline of scientific societies.</title>
<pages>180-194</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022684</ee>
<url>db/journals/ijtm/ijtm46.html#Agassi09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wang08">
<author>Ben-Jeng Wang</author>
<title>Analysis of efficiency of lean production implemented in multi-national optic enterprises.</title>
<pages>304-319</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.020553</ee>
<url>db/journals/ijtm/ijtm43.html#Wang08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Subrahmanya07">
<author>M. H. Bala Subrahmanya</author>
<title>The process of technological innovations in small enterprises: the Indian way.</title>
<pages>396-411</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013502</ee>
<url>db/journals/ijtm/ijtm39.html#Subrahmanya07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YangMC14">
<author>Enyan Yang</author>
<author>Guangrong Ma</author>
<author>James Chu</author>
<title>The impact of financial constraints on firm R&amp;D investments: empirical evidence from China.</title>
<pages>172-188</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060949</ee>
<url>db/journals/ijtm/ijtm65.html#YangMC14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShihTWL06">
<author>Meng-Hsun Shih</author>
<author>Hsien-Tang Tsai</author>
<author>Chi-Cheng Wu</author>
<author>Chung-Han Lu</author>
<title>A holistic knowledge sharing framework in high-tech firms: game and co-opetition perspectives.</title>
<pages>354-367</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.010272</ee>
<url>db/journals/ijtm/ijtm36.html#ShihTWL06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Abt01">
<author>Stefan Abt</author>
<title>Necessity of logistics in the economic development of Poland.</title>
<pages>429-439</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002923</ee>
<url>db/journals/ijtm/ijtm21.html#Abt01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Alfonso-GilV10">
<author orcid="0000-0002-9170-3507">Javier Alfonso-Gil</author>
<author>Antonio Vazquez-Barquero</author>
<title>Networking and innovation: lessons from the aeronautical clusters of Madrid.</title>
<pages>337-355</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.032680</ee>
<url>db/journals/ijtm/ijtm50.html#Alfonso-GilV10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CorsoP01">
<author>Mariano Corso</author>
<author>Emilio Paolucci</author>
<title>Fostering innovation and knowledge transfer in product development through information technology.</title>
<pages>126-148</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002958</ee>
<url>db/journals/ijtm/ijtm22.html#CorsoP01</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Edwards-SchachterCSAF13">
<author orcid="0000-0002-9063-0916">M&oacute;nica Edwards-Schachter</author>
<author orcid="0000-0003-3540-4315">Elena Castro-Mart&iacute;nez</author>
<author>Mabel S&aacute;nchez-Barrioluengo</author>
<author>Guillermo Anll&oacute;</author>
<author>Ignacio Fern&aacute;ndez-de-Lucio</author>
<title>Motives for international cooperation on R&amp;D and innovation: empirical evidence from Argentinean and Spanish firms.</title>
<pages>128-151</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.055162</ee>
<url>db/journals/ijtm/ijtm62.html#Edwards-SchachterCSAF13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/VeldmanK09">
<author>Jasper Veldman</author>
<author>Warse Klingenberg</author>
<title>Applicability of the capability maturity model for engineer-to-order firms.</title>
<pages>219-239</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024917</ee>
<url>db/journals/ijtm/ijtm48.html#VeldmanK09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Miller04">
<author>William Miller</author>
<title>Fostering and sustaining entrepreneurial regions.</title>
<pages>324-335</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005291</ee>
<url>db/journals/ijtm/ijtm28.html#Miller04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tenkasi00">
<author>Ramkrishnan V. Tenkasi</author>
<title>The dynamics of cognitive oversimplification processes in R&amp;D environments: an empirical assessment of some consequences.</title>
<pages>782-798</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002896</ee>
<url>db/journals/ijtm/ijtm20.html#Tenkasi00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Moussouri03">
<author>Theano Moussouri</author>
<title>Negotiated agendas: families in science and technology museums.</title>
<pages>477-489</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003114</ee>
<url>db/journals/ijtm/ijtm25.html#Moussouri03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wolff00">
<author>Edward N. Wolff</author>
<title>How persistent is industry specialisation over time in industrialised countries?</title>
<pages>194-205</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002811</ee>
<url>db/journals/ijtm/ijtm19.html#Wolff00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LindskogJ05">
<author>Helena Lindskog</author>
<author>Magnus Johansson</author>
<title>Broadband: a municipal information platform: Swedish experience.</title>
<pages>47-63</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006622</ee>
<url>db/journals/ijtm/ijtm31.html#LindskogJ05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Smeds01">
<author>Riitta Smeds</author>
<title>Implementation of business process innovations: an agenda for research and action.</title>
<pages>1-12</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002951</ee>
<url>db/journals/ijtm/ijtm22.html#Smeds01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MagnussonV08">
<author>Mats Magnusson</author>
<author>Emanuele Vinciguerra</author>
<title>Key factors in small group improvement work: an empirical study at SKF.</title>
<pages>324-337</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.021042</ee>
<url>db/journals/ijtm/ijtm44.html#MagnussonV08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JooOL16">
<author>Si Hyung Joo</author>
<author>Chul Oh</author>
<author>Keun Lee</author>
<title>Catch-up strategy of an emerging firm in an emerging country: analysing the case of Huawei vs. Ericsson with patent data.</title>
<pages>19-42</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001555</ee>
<url>db/journals/ijtm/ijtm72.html#JooOL16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HuWY04">
<author>Baomin Hu</author>
<author>Lili Wang</author>
<author>Xinkai Yu</author>
<title>Stochastic diffusion models for substitutable technological innovations.</title>
<pages>654-666</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005775</ee>
<url>db/journals/ijtm/ijtm28.html#HuWY04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RathnappuligeD13">
<author>Sasikala Rathnappulige</author>
<author>Lisa Daniel</author>
<title>Creating value through social processes: an exploration of knowledge dynamics in expert communities of practice.</title>
<pages>169-184</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.056897</ee>
<url>db/journals/ijtm/ijtm63.html#RathnappuligeD13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JorgensenHK08">
<author>Frances J&oslash;rgensen</author>
<author>Paul Hyland</author>
<author>Lise Busk Kofoed</author>
<title>Examining the role of human resource management in continuous improvement.</title>
<pages>127-142</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.018064</ee>
<url>db/journals/ijtm/ijtm42.html#JorgensenHK08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Angelis02">
<author>Diana Angelis</author>
<title>An option model for R&amp;D valuation.</title>
<pages>44-56</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2002.003043</ee>
<url>db/journals/ijtm/ijtm24.html#Angelis02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DurugboRP14">
<author>Christopher Durugbo</author>
<author>Johann c. k. h. Riedel</author>
<author>Kulwant S. Pawar</author>
<title>Overcoming barriers to participation during requirements elicitation.</title>
<pages>81-103</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.064025</ee>
<url>db/journals/ijtm/ijtm66.html#DurugboRP14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TangM09">
<author>Puay Tang</author>
<author>Jordi Molas-Gallart</author>
<title>Intellectual Property in collaborative projects: navigating the maze.</title>
<pages>371-391</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.024435</ee>
<url>db/journals/ijtm/ijtm47.html#TangM09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Matuszak-FlejszmanB01">
<author>Alina Matuszak-Flejszman</author>
<author>Tom Bramorski</author>
<title>Factors influencing the implementation of environmental management system at Amica-Wronki SA.</title>
<pages>463-474</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002926</ee>
<url>db/journals/ijtm/ijtm21.html#Matuszak-FlejszmanB01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CombergV17">
<author>Christian Comberg</author>
<author>Vivek K. Velamuri</author>
<title>The introduction of a competing business model: the case of eBay.</title>
<pages>39-64</pages>
<year>2017</year>
<volume>73</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2017.10003240</ee>
<url>db/journals/ijtm/ijtm73.html#CombergV17</url>
</article><article mdate="2017-06-14" key="journals/ijtm/DeyHH07">
<author orcid="0000-0002-9984-5374">Prasanta Kumar Dey</author>
<author>S. Hariharan</author>
<author>William Ho</author>
<title>Managing healthcare technology in quality management framework.</title>
<pages>45-68</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013526</ee>
<url>db/journals/ijtm/ijtm40.html#DeyHH07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BozemanDG01">
<author>Barry Bozeman</author>
<author>James Scott Dietz</author>
<author>Monica Gaughan</author>
<title>Scientific and technical human capital: an alternative model for research evaluation.</title>
<pages>716-740</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002988</ee>
<url>db/journals/ijtm/ijtm22.html#BozemanDG01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TorresM10">
<author>Mar&iacute;a del Roc&iacute;o Mart&iacute;nez Torres</author>
<author>Sergio L. Toral Mar&iacute;n</author>
<title>International comparison of R&amp;D investment by European, US and Japanese companies.</title>
<pages>107-122</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029413</ee>
<url>db/journals/ijtm/ijtm49.html#TorresM10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GunawanIR02">
<author>Gunawan</author>
<author>Barbara Igel</author>
<author>K. Ramanathan</author>
<title>Innovation networks in a complex product system project: the case of the ISDN project in Indonesia.</title>
<pages>583-599</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003072</ee>
<url>db/journals/ijtm/ijtm24.html#GunawanIR02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShrivastavaII16">
<author>Paul Shrivastava</author>
<author>Silvester Ivanaj</author>
<author>Vera Ivanaj</author>
<title>Strategic technological innovation for sustainable development.</title>
<pages>76-107</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2016.074672</ee>
<url>db/journals/ijtm/ijtm70.html#ShrivastavaII16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChoH04">
<author>Eunseong Cho</author>
<author>Minhi Hahn</author>
<title>Antecedents and consequences of the sociocultural differences between R&amp;D and marketing in Korean high-tech firms.</title>
<pages>801-819</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005784</ee>
<url>db/journals/ijtm/ijtm28.html#ChoH04</url>
</article><article mdate="2017-06-06" key="journals/ijtm/RamaC02">
<author orcid="0000-0003-0193-473X">Ruth Rama</author>
<author>Ascension Calatrava</author>
<title>The advantages of clustering: the case of Spanish electronics subcontractors.</title>
<pages>764-791</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003082</ee>
<url>db/journals/ijtm/ijtm24.html#RamaC02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KastelliCI04">
<author>Ioanna Kastelli</author>
<author>Yannis Caloghirou</author>
<author>Stavros Ioannides</author>
<title>Cooperative R&amp;D as a means for knowledge creation. Experience from European publicly funded partnerships.</title>
<pages>712-730</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2004.004990</ee>
<url>db/journals/ijtm/ijtm27.html#KastelliCI04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Belussi00">
<author>Fiorenza Belussi</author>
<title>Towards the post-Fordist economy: emerging organisational models.</title>
<pages>20-43</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002854</ee>
<url>db/journals/ijtm/ijtm20.html#Belussi00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TasseyGR09">
<author>Gregory Tassey</author>
<author>Michael P. Gallaher</author>
<author>Brent R. Rowe</author>
<title>Complex standards and innovation in the digital economy: the Internet Protocol.</title>
<pages>448-472</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.026689</ee>
<url>db/journals/ijtm/ijtm48.html#TasseyGR09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lan00">
<author>Ping Lan</author>
<title>Changing production paradigm and the transformation of knowledge existing form.</title>
<pages>44-57</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002857</ee>
<url>db/journals/ijtm/ijtm20.html#Lan00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tanskanen01">
<author>Kari Tanskanen</author>
<title>Supply project planning in a networked environment.</title>
<pages>362-372</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002919</ee>
<url>db/journals/ijtm/ijtm21.html#Tanskanen01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HarrysonKD07">
<author>Sigvald Harryson</author>
<author>Sandra Kliknaite</author>
<author>Rafal Dudkowski</author>
<title>Making innovative use of academic knowledge to enhance corporate technology innovation impact.</title>
<pages>131-157</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013504</ee>
<url>db/journals/ijtm/ijtm39.html#HarrysonKD07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DivineSC11">
<author>Marc Divin&eacute;</author>
<author>Marinita Schumacher</author>
<author>Julie Stal-Le Cardinal</author>
<title>Learning virtual teams: how to design a set of Web 2.0 tools?</title>
<pages>297-308</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041955</ee>
<url>db/journals/ijtm/ijtm55.html#DivineSC11</url>
</article><article mdate="2017-06-06" key="journals/ijtm/BowenB09">
<author orcid="0000-0002-8748-6140">Jonathan P. Bowen</author>
<author>Ann Borda</author>
<title>Communicating the public understanding of science: the Royal Society website.</title>
<pages>146-164</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022682</ee>
<url>db/journals/ijtm/ijtm46.html#BowenB09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Luczak01">
<author>Jacek Luczak</author>
<title>Know-how transfer on creating and developing QS-9000 Quality System in American-Polish joint venture company on the example of WIX Filtration Products, Division of Dana Corporation and WIX-Filtron Ltd.</title>
<pages>440-452</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002924</ee>
<url>db/journals/ijtm/ijtm21.html#Luczak01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MoynihanRBN01">
<author>Gary P. Moynihan</author>
<author>Paul S. Ray</author>
<author>Robert G. Batson</author>
<author>William G. Nichols</author>
<title>Application of total quality management techniques to safety analysis in software product development.</title>
<pages>353-361</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002918</ee>
<url>db/journals/ijtm/ijtm21.html#MoynihanRBN01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sandmeier09">
<author>Patricia Sandmeier</author>
<title>Customer integration strategies for innovation projects: anticipation and brokering.</title>
<pages>1-23</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2009.024597</ee>
<url>db/journals/ijtm/ijtm48.html#Sandmeier09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DingP00">
<author>Hung-bin Ding</author>
<author>Lois Peters</author>
<title>Inter-firm knowledge management practices for technology and new product development in discontinuous innovation.</title>
<pages>588-600</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002883</ee>
<url>db/journals/ijtm/ijtm20.html#DingP00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WenK01">
<author>Jiang Wen</author>
<author>Shinichi Kobayashi</author>
<title>An organisational approach to coping with the paradox between individual career and collective research in Japan.</title>
<pages>794-810</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002992</ee>
<url>db/journals/ijtm/ijtm22.html#WenK01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim11">
<author>Sangkyun Kim</author>
<title>Linking information engineering and security engineering with a problem solving perspective.</title>
<pages>135-146</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039309</ee>
<url>db/journals/ijtm/ijtm54.html#Kim11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WuDGH14">
<author>Xiaobo Wu</author>
<author>Wei Dou 0003</author>
<author>Yu Gao</author>
<author>Fangli Huang</author>
<title>How to implement secondary product innovations for the domestic market: a case from Haier washing machines.</title>
<pages>232-254</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.059930</ee>
<url>db/journals/ijtm/ijtm64.html#WuDGH14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ForesC11">
<author>Beatriz For&eacute;s</author>
<author>C&eacute;sar Camis&oacute;n</author>
<title>The complementary effect of internal learning capacity and absorptive capacity on performance: the mediating role of innovation capacity.</title>
<pages>56-81</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041680</ee>
<url>db/journals/ijtm/ijtm55.html#ForesC11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChengCL08">
<author>Pao-Ching Cheng</author>
<author>Chi-Hsiang Chen</author>
<author>Ming-Ji James Lin</author>
<title>The transformation of a traditional salt company into a biotech business through innovations and reforms: a case study of Taiyen.</title>
<pages>107-122</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019410</ee>
<url>db/journals/ijtm/ijtm43.html#ChengCL08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HalsemaW12">
<author>Alex Halsema</author>
<author>Cees Withagen</author>
<title>Cartel-fringe models of the oil market: a quantitative assessment.</title>
<pages>60-82</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.049106</ee>
<url>db/journals/ijtm/ijtm60.html#HalsemaW12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Iggland02">
<author>Benny Iggland</author>
<title>Change from a combinate structure to a streamlined company in an emerging market by means of spin-off of peripheral functions in ex-state owned companies.</title>
<pages>262-273</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003055</ee>
<url>db/journals/ijtm/ijtm24.html#Iggland02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChaiGS03">
<author>Kah-Hin Chai</author>
<author>Mike Gregory</author>
<author>Yongjiang Shi</author>
<title>Bridging islands of knowledge: a framework of knowledge sharing mechanisms.</title>
<pages>703-727</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003133</ee>
<url>db/journals/ijtm/ijtm25.html#ChaiGS03</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Griffy-BrownNWZ02">
<author>Charla Griffy-Brown</author>
<author>Akira Nagamatsu</author>
<author orcid="0000-0002-6676-5685">Chihiro Watanabe</author>
<author>Bing Zhu</author>
<title>Technology spillovers and economic vitality: an analysis of institutional flexibility in Japan with comparisons to the USA.</title>
<pages>746-768</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003036</ee>
<url>db/journals/ijtm/ijtm23.html#Griffy-BrownNWZ02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Park00">
<author>June S. Park</author>
<title>A new revolutionary paradigm of software development for mainstream business operations.</title>
<pages>272-286</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002868</ee>
<url>db/journals/ijtm/ijtm20.html#Park00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZimmerCYCPB14">
<author>Benjamin Zimmer</author>
<author>Julie Stal-Le Cardinal</author>
<author>Bernard Yannou</author>
<author>Gilles Le Cardinal</author>
<author>Fran&ccedil;ois Piette</author>
<author>Vincent Boly</author>
<title>A methodology for the development of innovation clusters: application in the healthcare sector.</title>
<pages>57-80</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.064017</ee>
<url>db/journals/ijtm/ijtm66.html#ZimmerCYCPB14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Papadopoulos12">
<author>Thanos Papadopoulos</author>
<title>Continuous innovation through lean thinking in healthcare: the role of dynamic actor associations.</title>
<pages>266-280</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.049442</ee>
<url>db/journals/ijtm/ijtm60.html#Papadopoulos12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MaLS13">
<author>Rongkang Ma</author>
<author>Fengchao Liu</author>
<author>Yutao Sun</author>
<title>Collaboration partner portfolio along the growth of Chinese firms' innovation capability: configuration, evolution and pattern.</title>
<pages>152-176</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.055165</ee>
<url>db/journals/ijtm/ijtm62.html#MaLS13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MastakarB05">
<author>Nrupesh Mastakar</author>
<author>B. Bowonder</author>
<title>Transformation of an entrepreneurial firm to a global service provider: the case study of Infosys.</title>
<pages>34-56</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006817</ee>
<url>db/journals/ijtm/ijtm32.html#MastakarB05</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ChenLH16">
<author>Jian Chen</author>
<author>Xielin Liu</author>
<author orcid="0000-0002-7499-1797">Yimei Hu</author>
<title>Establishing a CoPs-based innovation ecosystem to enhance competence - the case of CGN in China.</title>
<pages>144-170</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001576</ee>
<url>db/journals/ijtm/ijtm72.html#ChenLH16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChoiBK11">
<author>Chong Ju Choi</author>
<author>Ron Berger</author>
<author>Jai Boem Kim</author>
<title>Globalisation, property rights and knowledge networks.</title>
<pages>53-72</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.042493</ee>
<url>db/journals/ijtm/ijtm56.html#ChoiBK11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NgT05">
<author>Linda Fung-Yee Ng</author>
<author>Chyau Tuan</author>
<title>Industry technology performance of manufacturing FDI: micro-level evidence from joint ventures in China.</title>
<pages>246-263</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007332</ee>
<url>db/journals/ijtm/ijtm32.html#NgT05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KimKP15">
<author>Jungin Kim</author>
<author>Sooyoung Kim</author>
<author>Hyunseok Park</author>
<title>Factors affecting product innovation performance according to dynamics of environment: evidence from Korean high-tech enterprises in manufacturing sector.</title>
<pages>269-288</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.068219</ee>
<url>db/journals/ijtm/ijtm67.html#KimKP15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PunL00">
<author>K. F. Pun</author>
<author>Matthew K. O. Lee</author>
<title>A proposed management model for the development of strategic information systems.</title>
<pages>304-325</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002869</ee>
<url>db/journals/ijtm/ijtm20.html#PunL00</url>
</article><article mdate="2017-06-06" key="journals/ijtm/LevinB08">
<author>Daniel Z. Levin</author>
<author orcid="0000-0002-5690-5023">Helena Barnard</author>
<title>Technology management routines that matter to technology managers.</title>
<pages>22-37</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015982</ee>
<url>db/journals/ijtm/ijtm41.html#LevinB08</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Jardim-GoncalvesFS06">
<author orcid="0000-0002-3703-6854">Ricardo Jardim-Gon&ccedil;alves</author>
<author>Nicolas Figay</author>
<author orcid="0000-0002-5134-2794">Adolfo Steiger-Gar&ccedil;&atilde;o</author>
<title>Enabling interoperability of STEP Application Protocols at meta-data and knowledge level.</title>
<pages>402-421</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.010275</ee>
<url>db/journals/ijtm/ijtm36.html#Jardim-GoncalvesFS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HacklinMF10">
<author>Fredrik Hacklin</author>
<author>Christian Marxt</author>
<author>Fritz Fahrni</author>
<title>An evolutionary perspective on convergence: inducing a stage model of inter-industry innovation.</title>
<pages>220-249</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029419</ee>
<url>db/journals/ijtm/ijtm49.html#HacklinMF10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KleinTB10">
<author>Juan-Luis Klein</author>
<author>Diane-Gabrielle Tremblay</author>
<author>Denis R. Bussieres</author>
<title>Social economy-based local initiatives and social innovation: a Montreal case study.</title>
<pages>121-138</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033132</ee>
<url>db/journals/ijtm/ijtm51.html#KleinTB10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tschirky00">
<author>Hugo Tschirky</author>
<title>On the path of enterprise science? An approach to establishing the correspondence of theory and reality in technology-intensive companies.</title>
<pages>405-428</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002875</ee>
<url>db/journals/ijtm/ijtm20.html#Tschirky00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Liu10">
<author>Xielin Liu</author>
<title>China's catch-up and innovation model in IT industry.</title>
<pages>194-216</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033802</ee>
<url>db/journals/ijtm/ijtm51.html#Liu10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Coman00">
<author>Alexander Coman</author>
<title>IPVM: IT support of concurrent product development teams.</title>
<pages>388-404</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002863</ee>
<url>db/journals/ijtm/ijtm20.html#Coman00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenZW15">
<author>Jin Chen</author>
<author>Xiaoting Zhao</author>
<author>Yuandi Wang</author>
<title>A new measurement of intellectual capital and its impact on innovation performance in an open innovation paradigm.</title>
<pages>1-25</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2015.065885</ee>
<url>db/journals/ijtm/ijtm67.html#ChenZW15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bidault04">
<author>Francis Bidault</author>
<title>Global licensing strategies and technology pricing.</title>
<pages>295-305</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003959</ee>
<url>db/journals/ijtm/ijtm27.html#Bidault04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hung03">
<author>Shih-Chang Hung</author>
<title>The Taiwanese system of innovation in the information industry.</title>
<pages>788-800</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003456</ee>
<url>db/journals/ijtm/ijtm26.html#Hung03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiuWZ10">
<author>Jingjiang Liu</author>
<author>Yi Wang 0005</author>
<author>Gang Zheng</author>
<title>Driving forces and organisational configurations of international R&amp;D: the case of technology-intensive Chinese multinationals.</title>
<pages>409-426</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033812</ee>
<url>db/journals/ijtm/ijtm51.html#LiuWZ10</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ChenEC15">
<author orcid="0000-0003-2612-2535">Shih-Hsin Chen</author>
<author>Abiodun A. Egbetokun</author>
<author>Duen-Kai Chen</author>
<title>Brokering knowledge in networks: institutional intermediaries in the Taiwanese biopharmaceutical innovation system.</title>
<pages>189-209</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.072978</ee>
<url>db/journals/ijtm/ijtm69.html#ChenEC15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TsaiCCC05">
<author>Chien-Tzu Tsai</author>
<author>Pao-Long Chang</author>
<author>Tzu-Chuan Chou</author>
<author>Yih-Ping Cheng</author>
<title>An integration framework of innovation assessment for the knowledge-intensive service industry.</title>
<pages>85-104</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006346</ee>
<url>db/journals/ijtm/ijtm30.html#TsaiCCC05</url>
</article><article mdate="2017-09-04" key="journals/ijtm/LiuONBZ14">
<author>Chang Liu 0005</author>
<author>Yacine Ouzrout</author>
<author>Antoine Nongaillard</author>
<author>Abdelaziz Bouras</author>
<author>Jiliu Zhou</author>
<title>Evaluation model for e-tourism product: a hidden Markov model-based algorithm.</title>
<pages>45-63</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.059235</ee>
<url>db/journals/ijtm/ijtm64.html#LiuONBZ14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/OjanenV06">
<author>Ville Ojanen</author>
<author>Olli Vuola</author>
<title>Coping with the multiple dimensions of R&amp;D performance analysis.</title>
<pages>279-290</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008315</ee>
<url>db/journals/ijtm/ijtm33.html#OjanenV06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kianto11">
<author>Aino Kianto</author>
<title>The influence of knowledge management on continuous innovation.</title>
<pages>110-121</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041682</ee>
<url>db/journals/ijtm/ijtm55.html#Kianto11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FilippiT03">
<author>Maryline Filippi</author>
<author>Andre Torre</author>
<title>Local organisations and institutions. How can geographical proximity be activated by collective projects?</title>
<pages>386-400</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003388</ee>
<url>db/journals/ijtm/ijtm26.html#FilippiT03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CohendetP09">
<author>Patrick Cohendet</author>
<author>Emilie Pawlak</author>
<title>Diversity of entrepreneurs and diversity of clusters in nanotechnologies.</title>
<pages>386-403</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.023387</ee>
<url>db/journals/ijtm/ijtm46.html#CohendetP09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MotheN13">
<author>Caroline Mothe</author>
<author>Thuc Uyen Nguyen-Thi</author>
<title>Sources of information for organisational innovation: a sector comparative approach.</title>
<pages>125-144</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2013.055596</ee>
<url>db/journals/ijtm/ijtm63.html#MotheN13</url>
</article><article mdate="2017-06-06" key="journals/ijtm/LococoYC01">
<author>Anthony Lococo</author>
<author orcid="0000-0001-7093-0877">David C. Yen</author>
<author>David C. Chou</author>
<title>Telecommuting: its structure, options and business implications.</title>
<pages>475-486</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002927</ee>
<url>db/journals/ijtm/ijtm21.html#LococoYC01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GammeltoftF17">
<author>Peter Gammeltoft</author>
<author>Kirsten Fasshauer</author>
<title>Characteristics and host country drivers of Chinese FDI in Europe: a company-level analysis.</title>
<pages>140-166</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004277</ee>
<url>db/journals/ijtm/ijtm74.html#GammeltoftF17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WaltersM11">
<author>Andrew T. Walters</author>
<author>Huw Millward</author>
<title>Challenges in managing the convergence of information and product design technology in a small company.</title>
<pages>190-215</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038590</ee>
<url>db/journals/ijtm/ijtm53.html#WaltersM11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Stoelhorst02">
<author>J. W. Stoelhorst</author>
<title>Transition strategies for managing technological discontinuities: lessons from the history of the semiconductor industry.</title>
<pages>261-286</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003010</ee>
<url>db/journals/ijtm/ijtm23.html#Stoelhorst02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TienCCT07">
<author>Shiaw-Wen Tien</author>
<author>Chung-Ching Chiu</author>
<author>Yi-Chan Chung</author>
<author>Chih-Hung Tsai</author>
<title>The impact of innovation management implementation on enterprise competitiveness among Taiwan's high-tech manufacturers.</title>
<pages>7-44</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013525</ee>
<url>db/journals/ijtm/ijtm40.html#TienCCT07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MotheM04">
<author>John De La Mothe</author>
<author>Geoff Mallory</author>
<title>Local knowledge and the strategy of constructing advantage: the role of community alliances.</title>
<pages>809-820</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2004.004995</ee>
<url>db/journals/ijtm/ijtm27.html#MotheM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lichtenstein11">
<author>Sharman Lichtenstein</author>
<title>Ethical issues for internet use policy: balancing employer and employee perspectives.</title>
<pages>288-303</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039316</ee>
<url>db/journals/ijtm/ijtm54.html#Lichtenstein11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Pohl12">
<author>Hans Pohl</author>
<title>Japanese automakers' approach to electric and hybrid electric vehicles: from incremental to radical innovation.</title>
<pages>266-288</pages>
<year>2012</year>
<volume>57</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2012.045546</ee>
<url>db/journals/ijtm/ijtm57.html#Pohl12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lall06">
<author>Sanjaya Lall</author>
<title>Some insights to reinvent industrial strategy in developing countries.</title>
<pages>16-20</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009981</ee>
<url>db/journals/ijtm/ijtm36.html#Lall06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChongC08">
<author>P. Pete Chong</author>
<author>Jason Chou-Hong Chen</author>
<title>Infomemes and infonomes: in search of knowledge DNA.</title>
<pages>18-29</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019404</ee>
<url>db/journals/ijtm/ijtm43.html#ChongC08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bader08">
<author>Martin A. Bader</author>
<title>Managing intellectual property in inter-firm R&amp;D collaborations in knowledge-intensive industries.</title>
<pages>311-335</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016786</ee>
<url>db/journals/ijtm/ijtm41.html#Bader08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ketola12">
<author>Tarja Ketola</author>
<title>Fair Business as a corporate responsibility and competitiveness factor? Fashion design company Globe Hope as an example.</title>
<pages>109-128</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.045791</ee>
<url>db/journals/ijtm/ijtm58.html#Ketola12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MarkowskiD16">
<author>Peter Markowski</author>
<author>Mandar Dabhilkar</author>
<title>Collaboration for continuous innovation: routines for knowledge integration in healthcare.</title>
<pages>212-231</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2016.078569</ee>
<url>db/journals/ijtm/ijtm71.html#MarkowskiD16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Berger01">
<author>Anders Berger</author>
<title>Developing multi-functional teams in public service - from prescribed helplessness to perceived self-esteem.</title>
<pages>108-125</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002957</ee>
<url>db/journals/ijtm/ijtm22.html#Berger01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ConstantelouTC04">
<author>Anastasia Constantelou</author>
<author>Aggelos Tsakanikas</author>
<author>Yannis Caloghirou</author>
<title>Inter-country technological linkages in European Framework Programmes: a spur to European integration?</title>
<pages>773-790</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2004.004993</ee>
<url>db/journals/ijtm/ijtm27.html#ConstantelouTC04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FosterGD02">
<author>Roger S. Foster</author>
<author>Amar Gupta</author>
<author>Sawan Deshpande</author>
<title>Evolution of the high-end computing market in the USA.</title>
<pages>274-295</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003056</ee>
<url>db/journals/ijtm/ijtm24.html#FosterGD02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KuusistoR11">
<author>Arja Kuusisto</author>
<author>Mikko Riepula</author>
<title>Customer interaction in service innovation: seldom intensive but often decisive. Case studies in three business service sectors.</title>
<pages>171-186</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041686</ee>
<url>db/journals/ijtm/ijtm55.html#KuusistoR11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LinW07">
<author>Chinho Lin</author>
<author>Chuni Wu</author>
<title>Case study of knowledge creation contributed by ISO 9001: 2000.</title>
<pages>193-213</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.011811</ee>
<url>db/journals/ijtm/ijtm37.html#LinW07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Broring10">
<author>Stefanie Broring</author>
<title>Developing innovation strategies for convergence - is 'open innovation' imperative?</title>
<pages>272-294</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029421</ee>
<url>db/journals/ijtm/ijtm49.html#Broring10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/OrmeYE09">
<author>Anthony Mark Orme</author>
<author>Haining Yao</author>
<author>Letha H. Etzkorn</author>
<title>Complexity metrics for ontology based information.</title>
<pages>161-173</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024120</ee>
<url>db/journals/ijtm/ijtm47.html#OrmeYE09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Quayle02">
<author>Michael Quayle</author>
<title>Supplier development and supply chain management in small and medium size enterprises.</title>
<pages>172-188</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003004</ee>
<url>db/journals/ijtm/ijtm23.html#Quayle02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Serarols08">
<author>Christian Serarols</author>
<title>The process of business start-ups in the internet: a multiple case study.</title>
<pages>142-159</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019412</ee>
<url>db/journals/ijtm/ijtm43.html#Serarols08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sheen03">
<author>Margaret R. Sheen</author>
<title>Evolving relations between the pharmaceutical industry and public sector research.</title>
<pages>268-283</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003101</ee>
<url>db/journals/ijtm/ijtm25.html#Sheen03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TschirkyETB00">
<author>Hugo Tschirky</author>
<author>Jean-Philippe Escher</author>
<author>Deniz Tokdemir</author>
<author>Christian Belz</author>
<title>Technology marketing: a new core competence of technology-intensive enterprises.</title>
<pages>459-474</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002874</ee>
<url>db/journals/ijtm/ijtm20.html#TschirkyETB00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GofmanM09">
<author>Alex Gofman</author>
<author>Howard Moskowitz</author>
<title>Steps towards a consumer-driven innovation machine for 'ordinary' product categories in their later lifecycle stages.</title>
<pages>349-363</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022658</ee>
<url>db/journals/ijtm/ijtm45.html#GofmanM09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BoerG03">
<author>Harry Boer</author>
<author>Frank Gertsen</author>
<title>From continuous improvement to continuous innovation: a (retro)(per)spective.</title>
<pages>805-827</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003391</ee>
<url>db/journals/ijtm/ijtm26.html#BoerG03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LeeKPK16">
<author>Sora Lee</author>
<author>Moon-soo Kim</author>
<author>Yongtae Park</author>
<author>Chulhyun Kim</author>
<title>Identification of a technological chance in product-service system using KeyGraph and text mining on business method patents.</title>
<pages>239-256</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2016.075884</ee>
<url>db/journals/ijtm/ijtm70.html#LeeKPK16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PedrosaVB13">
<author>Alex Da Mota Pedrosa</author>
<author>Margus V&auml;lling</author>
<author>Britta Boyd</author>
<title>Knowledge related activities in open innovation: managers' characteristics and practices.</title>
<pages>254-273</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.052670</ee>
<url>db/journals/ijtm/ijtm61.html#PedrosaVB13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LindstedtLS08">
<author>Mats R. K. Lindstedt</author>
<author>Juuso Liesi&ouml;</author>
<author>Ahti Salo</author>
<title>Participatory development of a strategic product portfolio in a telecommunication company.</title>
<pages>250-266</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2008.018106</ee>
<url>db/journals/ijtm/ijtm42.html#LindstedtLS08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LimCR10">
<author>Kwanghui Lim</author>
<author>Henry Chesbrough</author>
<author>Yi Ruan</author>
<title>Open innovation and patterns of R&amp;D competition.</title>
<pages>295-321</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035978</ee>
<url>db/journals/ijtm/ijtm52.html#LimCR10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tamura12">
<author>Suguru Tamura</author>
<title>Effects of integrating patents and standards on intellectual property management and corporate innovativeness in Japanese electric machine corporations.</title>
<pages>180-202</pages>
<year>2012</year>
<volume>59</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.047242</ee>
<url>db/journals/ijtm/ijtm59.html#Tamura12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Mangiarotti12">
<author>Giovanni Mangiarotti</author>
<title>Knowledge management practices and innovation propensity: a firm-level analysis for Luxembourg.</title>
<pages>261-283</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.046618</ee>
<url>db/journals/ijtm/ijtm58.html#Mangiarotti12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HardakerG08">
<author>Glenn Hardaker</author>
<author>Gary Graham</author>
<title>Community of self-organisation: supply chain perspective of Finnish electronic music.</title>
<pages>93-114</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020700</ee>
<url>db/journals/ijtm/ijtm44.html#HardakerG08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Glass00">
<author>Amy Jocelyn Glass</author>
<title>Costly R&amp;D and intellectual property rights protection.</title>
<pages>179-193</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002802</ee>
<url>db/journals/ijtm/ijtm19.html#Glass00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Narula17">
<author>Rajneesh Narula</author>
<title>Emerging market MNEs as meta-integrators: the importance of internal networks.</title>
<pages>214-220</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.083625</ee>
<url>db/journals/ijtm/ijtm74.html#Narula17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WortmannA09">
<author>Hans Wortmann</author>
<author>Alex Alblas</author>
<title>Product platform life cycles: a multiple case study.</title>
<pages>188-201</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024915</ee>
<url>db/journals/ijtm/ijtm48.html#WortmannA09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DCosta02">
<author>Anthony D'Costa</author>
<title>Software outsourcing and development policy implications: an Indian perspective.</title>
<pages>705-723</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003079</ee>
<url>db/journals/ijtm/ijtm24.html#DCosta02</url>
</article><article mdate="2017-09-16" key="journals/ijtm/Garcia-QuevedoMS11">
<author orcid="0000-0001-8078-1203">Jose Garcia-Quevedo</author>
<author orcid="0000-0002-0902-9462">Francisco Mas-Verdu</author>
<author>Domingo Ribeiro Soriano</author>
<title>The heterogeneity of services and the differential effects on business and territorial innovation.</title>
<pages>80-93</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.038830</ee>
<url>db/journals/ijtm/ijtm54.html#Garcia-QuevedoMS11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LinC15">
<author>Chen-Ju Lin</author>
<author>Ching-Chou Chen</author>
<title>The responsive-integrative framework, outside-in and inside-out mechanisms and ambidextrous innovations.</title>
<pages>148-173</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.068212</ee>
<url>db/journals/ijtm/ijtm67.html#LinC15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TeichertR03">
<author>Thorsten Teichert</author>
<author>Katja Rost</author>
<title>Trust, involvement profile and customer retention - modelling, effects and implications.</title>
<pages>621-639</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003426</ee>
<url>db/journals/ijtm/ijtm26.html#TeichertR03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SandersonNA00">
<author>Stuart M. Sanderson</author>
<author>Adrian W. Nixon</author>
<author>Alan J. Aron</author>
<title>Adding value to a company's selling activity through knowledge management: a case study.</title>
<pages>742-751</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002893</ee>
<url>db/journals/ijtm/ijtm20.html#SandersonNA00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KangL17">
<author>Jingoo Kang</author>
<author>Jeoung Yul Lee</author>
<title>Performance effects of explorative and exploitative knowledge sharing within Korean chaebol MNEs in China.</title>
<pages>70-95</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004271</ee>
<url>db/journals/ijtm/ijtm74.html#KangL17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HacklinIMP09">
<author>Fredrik Hacklin</author>
<author>Martin Inganas</author>
<author>Christian Marxt</author>
<author>Adrian Pluss</author>
<title>Core rigidities in the innovation process: a structured benchmark on knowledge management challenges.</title>
<pages>244-266</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022651</ee>
<url>db/journals/ijtm/ijtm45.html#HacklinIMP09</url>
</article><article mdate="2017-06-06" key="journals/ijtm/HuangSS02">
<author>Xueli Huang</author>
<author orcid="0000-0002-9945-7304">Paul Steffens</author>
<author>Bill Schr&ouml;der</author>
<title>Managing new product development in the Chinese steel industry: an empirical investigation.</title>
<pages>557-568</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003070</ee>
<url>db/journals/ijtm/ijtm24.html#HuangSS02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hanninen07">
<author>Seppo Hanninen</author>
<title>The 'perfect technology syndrome': sources, consequences and solutions.</title>
<pages>20-32</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013438</ee>
<url>db/journals/ijtm/ijtm39.html#Hanninen07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChangCC11">
<author>Shuchih Ernest Chang</author>
<author>Shiou-Yu Chen</author>
<author>Chun-Yen Chen</author>
<title>Exploring the relationships between IT capabilities and information security management.</title>
<pages>147-166</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039310</ee>
<url>db/journals/ijtm/ijtm54.html#ChangCC11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HuangC11">
<author>Chi-Cheng Huang</author>
<author>Pin-Yu Chu</author>
<title>Using the fuzzy analytic network process for selecting technology R&amp;D projects.</title>
<pages>89-115</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.037239</ee>
<url>db/journals/ijtm/ijtm53.html#HuangC11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Verloop06">
<author>Jan Verloop</author>
<title>The Shell way to innovate.</title>
<pages>243-259</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009458</ee>
<url>db/journals/ijtm/ijtm34.html#Verloop06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GassmannSW06">
<author>Oliver Gassmann</author>
<author>Patricia Sandmeier</author>
<author>Christoph Wecht</author>
<title>Extreme customer innovation in the front-end: learning from a new software paradigm.</title>
<pages>46-66</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2006.008191</ee>
<url>db/journals/ijtm/ijtm33.html#GassmannSW06</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Walczak09">
<author orcid="0000-0002-0449-6272">Steven Walczak</author>
<title>Managing personal medical knowledge: agent-based knowledge acquisition.</title>
<pages>22-36</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024112</ee>
<url>db/journals/ijtm/ijtm47.html#Walczak09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Yao04">
<author>Yongling Yao</author>
<title>Spatial overlap of regional innovation capability and high-tech industry.</title>
<pages>615-632</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005312</ee>
<url>db/journals/ijtm/ijtm28.html#Yao04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RochaQTS15">
<author>Angela Machado Rocha</author>
<author>Cristina Maria Quintella</author>
<author>Ednildo Andrade Torres</author>
<author>Marcelo Santana Silva</author>
<title>Biodiesel in Brazil: science, technology and innovation indicators.</title>
<pages>246-260</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.072984</ee>
<url>db/journals/ijtm/ijtm69.html#RochaQTS15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/XieLG14">
<author>Yan Xie</author>
<author>Heng Liu</author>
<author>Shanxing Gao</author>
<title>Innovation generation and appropriation: the dual roles of political ties in Chinese firms' new product development.</title>
<pages>215-239</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060958</ee>
<url>db/journals/ijtm/ijtm65.html#XieLG14</url>
</article><article mdate="2017-06-14" key="journals/ijtm/PihlS13">
<author>Christofer Pihl</author>
<author orcid="0000-0002-8625-8744">Christian Sandstr&ouml;m</author>
<title>Value creation and appropriation in social media - the case of fashion bloggers in Sweden.</title>
<pages>309-323</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.052673</ee>
<url>db/journals/ijtm/ijtm61.html#PihlS13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KearnsG02">
<author>Allan Kearns</author>
<author>Holger G&ouml;rg</author>
<title>Linkages, agglomerations and knowledge spillovers in the Irish electronics industry: the regional dimension.</title>
<pages>743-763</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003081</ee>
<url>db/journals/ijtm/ijtm24.html#KearnsG02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Thissen00">
<author>Wil A. H. Thissen</author>
<title>Systems engineering education for public policy.</title>
<pages>408-419</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002828</ee>
<url>db/journals/ijtm/ijtm19.html#Thissen00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChoungHY06">
<author>Jae-Yong Choung</author>
<author>Hye-Ran Hwang</author>
<author>Heeseung Yang</author>
<title>The co-evolution of technology and institution in the Korean information and communications industry.</title>
<pages>249-266</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009971</ee>
<url>db/journals/ijtm/ijtm36.html#ChoungHY06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BadirBT08">
<author>Yuosre F. Badir</author>
<author>Bettina Buchel</author>
<author>Christopher Tucci</author>
<title>The role of communication and coordination between 'network lead companies' and their strategic partners in determining NPD project performance.</title>
<pages>269-291</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020708</ee>
<url>db/journals/ijtm/ijtm44.html#BadirBT08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SyllaW02">
<author>Cheickna Sylla</author>
<author>H. Joseph Wen</author>
<title>A conceptual framework for evaluation of information technology investments.</title>
<pages>236-261</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003054</ee>
<url>db/journals/ijtm/ijtm24.html#SyllaW02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CollinsonKY05">
<author>Simon Collinson</author>
<author>Hisaharu Kato</author>
<author>Hitomi Yoshihara</author>
<title>Technology strategy revealed: patterns and influences of patent-licensing behaviour in Japanese firms.</title>
<pages>327-350</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006732</ee>
<url>db/journals/ijtm/ijtm30.html#CollinsonKY05</url>
</article><article mdate="2017-06-14" key="journals/ijtm/BerendsGDW11">
<author orcid="0000-0002-3334-2926">Hans Berends</author>
<author>Raghu Garud</author>
<author>Koenraad Debackere</author>
<author>Mathieu Weggeman</author>
<title>Thinking along: a process for tapping into knowledge across boundaries.</title>
<pages>69-88</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.037238</ee>
<url>db/journals/ijtm/ijtm53.html#BerendsGDW11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kuhlmann03">
<author>Stefan Kuhlmann</author>
<title>Evaluation of research and innovation policies: a discussion of trends with examples from Germany.</title>
<pages>131-149</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003366</ee>
<url>db/journals/ijtm/ijtm26.html#Kuhlmann03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SchusterB15">
<author>Gerd Schuster</author>
<author orcid="0000-0002-6901-7498">Alexander Brem</author>
<title>How to benefit from open innovation? An empirical investigation of open innovation, external partnerships and firm capabilities in the automotive industry.</title>
<pages>54-76</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2015.071031</ee>
<url>db/journals/ijtm/ijtm69.html#SchusterB15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Peltokorpi08">
<author>Vesa Peltokorpi</author>
<title>Synthesising the paradox of organisational routine flexibility and stability: a processual view.</title>
<pages>7-21</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015981</ee>
<url>db/journals/ijtm/ijtm41.html#Peltokorpi08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Abetti16">
<author>Pier A. Abetti</author>
<title>Wireless charging of mobile phones: PowerKiss and Powermat (2007-2014).</title>
<pages>218-238</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.075163</ee>
<url>db/journals/ijtm/ijtm70.html#Abetti16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TangLLL14">
<author>Ming Feng Tang</author>
<author>Jaegul Lee</author>
<author>Kun Liu</author>
<author>Yong Lu</author>
<title>Assessing government-supported technology-based business incubators: evidence from China.</title>
<pages>24-48</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060956</ee>
<url>db/journals/ijtm/ijtm65.html#TangLLL14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChuLHL09">
<author>Po-Young Chu</author>
<author>Yu-Ling Lin</author>
<author>Chi-Hung Huang</author>
<author>Tzu-Yar Liu</author>
<title>Externality evaluation: an empirical study of ITRI.</title>
<pages>280-294</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024949</ee>
<url>db/journals/ijtm/ijtm48.html#ChuLHL09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MulauziA09">
<author>Felesia Mulauzi</author>
<author>Kendra S. Albright</author>
<title>Information and Communication Technologies (ICTs) and development information for professional women in Zambia.</title>
<pages>177-195</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021527</ee>
<url>db/journals/ijtm/ijtm45.html#MulauziA09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Glaser01">
<author>Jochen Gl&auml;ser</author>
<title>Macrostructures, careers and knowledge production: a neoinstitutionalist approach.</title>
<pages>698-715</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002987</ee>
<url>db/journals/ijtm/ijtm22.html#Glaser01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MaWZZ15">
<author>Jing Ma</author>
<author>Xuefeng Wang</author>
<author>Donghua Zhu</author>
<author>Xiao Zhou</author>
<title>Analysis on patent collaborative patterns for emerging technologies: a case study of nano-enabled drug delivery.</title>
<pages>210-228</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2015.072972</ee>
<url>db/journals/ijtm/ijtm69.html#MaWZZ15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SteenhuisB03">
<author>Harm-Jan Steenhuis</author>
<author>Sirp de Boer</author>
<title>Agile manufacturing and technology transfer to industrialising countries.</title>
<pages>20-27</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2003.003141</ee>
<url>db/journals/ijtm/ijtm26.html#SteenhuisB03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Gruber03">
<author>Marc Gruber</author>
<title>Research on marketing in emerging firms: key issues and open questions.</title>
<pages>600-620</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003425</ee>
<url>db/journals/ijtm/ijtm26.html#Gruber03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenK10">
<author>Dan Chen</author>
<author>Azhdar Karami</author>
<title>Critical success factors for inter-firm technological cooperation: an empirical study of high-tech SMEs in China.</title>
<pages>282-299</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033806</ee>
<url>db/journals/ijtm/ijtm51.html#ChenK10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sung08">
<author>Tae Kyung Sung</author>
<title>Competitive advantage of IT and effects on strategy and structure: knowledge-intensive vs manufacturing industries.</title>
<pages>359-378</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016788</ee>
<url>db/journals/ijtm/ijtm41.html#Sung08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChoiCECM06">
<author>Chong Ju Choi</author>
<author>Philip Cheng</author>
<author>Tarek Ibrahim Eldomiaty</author>
<author>Robert T. J. Chu</author>
<author>Carla C. J. M. Millar</author>
<title>R&amp;D and industrial districts in Asia: an application to Taiwan.</title>
<pages>291-298</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008316</ee>
<url>db/journals/ijtm/ijtm33.html#ChoiCECM06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LeeHS16">
<author>Suchul Lee</author>
<author>Jongyi Hong</author>
<author>Euiho Suh</author>
<title>Measuring the change in knowledge sharing efficiency of virtual communities of practice: a case study.</title>
<pages>58-75</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2016.074675</ee>
<url>db/journals/ijtm/ijtm70.html#LeeHS16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AdamsFM12">
<author>Pamela Adams</author>
<author>Roberto Fontana</author>
<author>Franco Malerba</author>
<title>User knowledge in innovation in high technologies: an empirical analysis of semiconductors.</title>
<pages>284-299</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.046619</ee>
<url>db/journals/ijtm/ijtm58.html#AdamsFM12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/IchimuraITP03">
<author>Takaya Ichimura</author>
<author>Kazuyoshi Ishii</author>
<author>Markku Tuominen</author>
<author>Petteri Piippo</author>
<title>Comparative study of product innovation systems.</title>
<pages>560-567</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003121</ee>
<url>db/journals/ijtm/ijtm25.html#IchimuraITP03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Motte00">
<author>Bruno Motte</author>
<title>The One-Chip TV way.</title>
<pages>597-609</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2000.002837</ee>
<url>db/journals/ijtm/ijtm19.html#Motte00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShoreZ15">
<author>Barry Shore</author>
<author>Giuseppe Zollo</author>
<title>Managing large-scale science and technology projects at the edge of knowledge: the Manhattan Project as a learning organisation.</title>
<pages>26-46</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2015.065895</ee>
<url>db/journals/ijtm/ijtm67.html#ShoreZ15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LetticeT08">
<author>Fiona Lettice</author>
<author>Peter Thomond</author>
<title>Allocating resources to disruptive innovation projects: challenging mental models and overcoming management resistance.</title>
<pages>140-159</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020702</ee>
<url>db/journals/ijtm/ijtm44.html#LetticeT08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AndersenL01">
<author>Bjorn Andersen</author>
<author>Henrik Sverre Loland</author>
<title>A study of the use and effects of quality improvement tools.</title>
<pages>212-232</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002962</ee>
<url>db/journals/ijtm/ijtm22.html#AndersenL01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WalshLBS02">
<author>Steven T. Walsh</author>
<author>Jonathan D. Linton</author>
<author>Robert Boylan</author>
<author>Cheickna Sylla</author>
<title>The evolution of technology management practice in developing economies: findings from Northern China.</title>
<pages>311-329</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003058</ee>
<url>db/journals/ijtm/ijtm24.html#WalshLBS02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GrevesenD07">
<author>Chris W. Grevesen</author>
<author>Fariborz Damanpour</author>
<title>Performance implications of organisational structure and knowledge sharing in multinational R&amp;D networks.</title>
<pages>113-136</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.012432</ee>
<url>db/journals/ijtm/ijtm38.html#GrevesenD07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HsuT10">
<author>Sheng-Hsun Hsu</author>
<author>Shiou-Fen Tzeng</author>
<title>A dyadic perspective on knowledge exchange.</title>
<pages>370-383</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2010.030164</ee>
<url>db/journals/ijtm/ijtm49.html#HsuT10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HoeberS17">
<author>Bjoern Hoeber</author>
<author>Mario Schaarschmidt</author>
<title>Transforming from service providers to solution providers: implications for provider-customer relationships and customer-induced solution innovation.</title>
<pages>65-90</pages>
<year>2017</year>
<volume>73</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2017.10003241</ee>
<url>db/journals/ijtm/ijtm73.html#HoeberS17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Das04">
<author>Ajay Das</author>
<title>E-provider evaluation: an exploratory study.</title>
<pages>46-61</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.005052</ee>
<url>db/journals/ijtm/ijtm28.html#Das04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AllenTH08">
<author>Thomas J. Allen</author>
<author>Breffni Tomlin</author>
<author>Oscar Hauptman</author>
<title>Combining organisational and physical location to manage knowledge dissemination.</title>
<pages>234-250</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020706</ee>
<url>db/journals/ijtm/ijtm44.html#AllenTH08</url>
</article><article mdate="2017-11-06" key="journals/ijtm/WielBM12">
<author>Aleid Van Der Wiel</author>
<author orcid="0000-0001-9809-5121">Bart Bossink</author>
<author>Enno Masurel</author>
<title>Reverse logistics for waste reduction in cradle-to-cradle-oriented firms: waste management strategies in the Dutch metal industry.</title>
<pages>96-113</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.049108</ee>
<url>db/journals/ijtm/ijtm60.html#WielBM12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cabello-MedinaCV06">
<author>Carmen Cabello-Medina</author>
<author>Antonio Carmona-Lavado</author>
<author>Ram&oacute;n Valle-Cabrera</author>
<title>Identifying the variables associated with types of innovation, radical or incremental: strategic flexibility, organisation and context.</title>
<pages>80-106</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009230</ee>
<url>db/journals/ijtm/ijtm35.html#Cabello-MedinaCV06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MelloR04">
<author>Jose Manoel Carvalho de Mello</author>
<author>Flavia Cristina Alves Rocha</author>
<title>Networking for regional innovation and economic growth: the Brazilian Petropolis technopole.</title>
<pages>488-497</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2004.004285</ee>
<url>db/journals/ijtm/ijtm27.html#MelloR04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/EppingerV13">
<author>Elisabeth Eppinger</author>
<author>Gergana Vladova</author>
<title>Intellectual property management practices at small and medium-sized enterprises.</title>
<pages>64-81</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2013.050244</ee>
<url>db/journals/ijtm/ijtm61.html#EppingerV13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PiippoIKT02">
<author>Petteri Piippo</author>
<author>Takaya Ichimura</author>
<author>Hannu K&auml;rkk&auml;inen</author>
<author>Markku Tuominen</author>
<title>Development needs and means of product innovation management in Finnish manufacturing companies.</title>
<pages>489-510</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2002.003023</ee>
<url>db/journals/ijtm/ijtm23.html#PiippoIKT02</url>
</article><article mdate="2017-06-14" key="journals/ijtm/TaiL07">
<author>Chun-Ling Tai</author>
<author orcid="0000-0003-4443-5826">Jen-Fang Lee</author>
<title>Maintenance of persistent creativity and innovation in university laboratories.</title>
<pages>177-197</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013445</ee>
<url>db/journals/ijtm/ijtm39.html#TaiL07</url>
</article><article mdate="2017-06-06" key="journals/ijtm/MortaraKPP09a">
<author orcid="0000-0003-0461-5339">Letizia Mortara</author>
<author>Clive I. V. Kerr</author>
<author>Robert Phaal</author>
<author>David R. Probert</author>
<title>A toolbox of elements to build Technology Intelligence systems.</title>
<pages>322-345</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.024433</ee>
<url>db/journals/ijtm/ijtm47.html#MortaraKPP09a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/EnsignLCP14">
<author>Prescott C. Ensign</author>
<author>Chen-Dong Lin</author>
<author>Samia Chreim</author>
<author>Ajax Persaud</author>
<title>Proximity, knowledge transfer, and innovation in technology-based mergers and acquisitions.</title>
<pages>1-31</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.064018</ee>
<url>db/journals/ijtm/ijtm66.html#EnsignLCP14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DahlgrenS10">
<author>Jorgen Dahlgren</author>
<author>Jonas Soderlund</author>
<title>Modes and mechanisms of control in Multi-Project Organisations: the R&amp;D case.</title>
<pages>1-22</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.031915</ee>
<url>db/journals/ijtm/ijtm50.html#DahlgrenS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LynnM00">
<author>Frances M. Lynn</author>
<author>Melissa Malkin</author>
<title>Citizens, engineers and air toxics: citizen participation in technology based standard setting.</title>
<pages>288-300</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002823</ee>
<url>db/journals/ijtm/ijtm19.html#LynnM00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CaiYLN15">
<author>Li Cai</author>
<author>Xiaoyu Yu</author>
<author>Qing Liu</author>
<author>Bang Nguyen</author>
<title>Radical innovation, market orientation, and risk-taking in Chinese new ventures: an exploratory study.</title>
<pages>47-76</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2015.065896</ee>
<url>db/journals/ijtm/ijtm67.html#CaiYLN15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Brockhoff03">
<author>Klaus Brockhoff</author>
<title>Customers' perspectives of involvement in new product development.</title>
<pages>464-481</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003418</ee>
<url>db/journals/ijtm/ijtm26.html#Brockhoff03</url>
</article><article mdate="2017-06-14" key="journals/ijtm/GustavssonMM05">
<author>Leif Gustavsson</author>
<author orcid="0000-0003-4405-1056">Krushna Mahapatra</author>
<author>Reinhard Madlener</author>
<title>Energy systems in transition: perspectives for the diffusion of small-scale wood pellet heating technology.</title>
<pages>327-347</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006010</ee>
<url>db/journals/ijtm/ijtm29.html#GustavssonMM05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RongLSY13">
<author>Ke Rong</author>
<author>Yong Lin</author>
<author>Yongjiang Shi</author>
<author>Jiang Yu</author>
<title>Linking business ecosystem lifecycle with platform strategy: a triple view of technology, application and organisation.</title>
<pages>75-94</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2013.053042</ee>
<url>db/journals/ijtm/ijtm62.html#RongLSY13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BongLG04">
<author>Sun-Hark Bong</author>
<author>Jinjoo Lee</author>
<author>Youngjoon Gil</author>
<title>Effective team processes for technology internalisation with special emphasis on knowledge management: successful late starter, Samsung case.</title>
<pages>16-39</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.003879</ee>
<url>db/journals/ijtm/ijtm27.html#BongLG04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lopez-SaezCN08">
<author>Pedro L&oacute;pez-S&aacute;ez</author>
<author>Gregorio Martin de Castro</author>
<author>Jos&eacute; Emilio Navas-L&oacute;pez</author>
<title>Organisational learning dynamics in the software publishing industry.</title>
<pages>138-154</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015988</ee>
<url>db/journals/ijtm/ijtm41.html#Lopez-SaezCN08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiLDL08">
<author>Yuan Li</author>
<author>Yi Liu</author>
<author>Yi Duan</author>
<author>Mingfang Li</author>
<title>Entrepreneurial orientation, strategic flexibilities and indigenous firm innovation in transitional China.</title>
<pages>223-246</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015993</ee>
<url>db/journals/ijtm/ijtm41.html#LiLDL08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SheuP09">
<author>Her-Jiun Sheu</author>
<author>Chao-Yi Pan</author>
<title>Cost-system choice in a multidimensional knowledge space: traditional versus activity-based costing.</title>
<pages>358-388</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024953</ee>
<url>db/journals/ijtm/ijtm48.html#SheuP09</url>
</article><article mdate="2018-01-12" key="journals/ijtm/GeislerT18">
<author>Eliezer Geisler</author>
<author>Giuseppe Turchetti</author>
<title>Conduit versus content: a model of the firm's market involvement and organisational competitiveness.</title>
<pages>137-162</pages>
<year>2018</year>
<volume>76</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2018.088741</ee>
<url>db/journals/ijtm/ijtm76.html#GeislerT18</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/Nielsen10">
<author>Anders Paarup Nielsen</author>
<title>Developing an organisational capability: dimensions, situations and managerial challenges.</title>
<pages>23-42</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.031916</ee>
<url>db/journals/ijtm/ijtm50.html#Nielsen10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Dossani03">
<author>Rafiq Dossani</author>
<title>Reforming venture capital in India: creating the enabling environment for information technology.</title>
<pages>151-164</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003095</ee>
<url>db/journals/ijtm/ijtm25.html#Dossani03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Verworn06">
<author>Birgit Verworn</author>
<title>How German measurement and control firms integrate market and technological knowledge into the front end of new product development.</title>
<pages>379-389</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009465</ee>
<url>db/journals/ijtm/ijtm34.html#Verworn06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GotoG16">
<author>Yoshimasa Goto</author>
<author>Kiminori Gemba</author>
<title>Implicit patent alliance acquiring the appropriability of innovation.</title>
<pages>186-211</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2016.078568</ee>
<url>db/journals/ijtm/ijtm71.html#GotoG16</url>
</article><article mdate="2017-06-06" key="journals/ijtm/WuT05">
<author>Wann-Yih Wu</author>
<author orcid="0000-0003-1208-2333">Hsin-Ju Tsai</author>
<title>Impact of social capital and business operation mode on intellectual capital and knowledge management.</title>
<pages>147-171</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006353</ee>
<url>db/journals/ijtm/ijtm30.html#WuT05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Yang07">
<author>Jie Yang</author>
<title>The contingency value of knowledge in new product creativity.</title>
<pages>101-113</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013529</ee>
<url>db/journals/ijtm/ijtm40.html#Yang07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuptaCSK09">
<author>Amar Gupta</author>
<author>Igor Crk</author>
<author>Surendra Sarnikar</author>
<author>Bipin Karunakaran</author>
<title>Drug effectiveness reporting and monitoring systems: discussion and prototype development.</title>
<pages>174-190</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024121</ee>
<url>db/journals/ijtm/ijtm47.html#GuptaCSK09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cooke07">
<author>Phil Cooke</author>
<title>How benchmarking can lever cluster competitiveness.</title>
<pages>292-320</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2007.012715</ee>
<url>db/journals/ijtm/ijtm38.html#Cooke07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DaimK09">
<author>Tugrul U. Daim</author>
<author>Dundar F. Kocaoglu</author>
<title>Exploring the role of technology evaluation in the competitiveness of US electronics manufacturing companies.</title>
<pages>77-94</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2009.024601</ee>
<url>db/journals/ijtm/ijtm48.html#DaimK09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Anttila02">
<author>Mai Anttila</author>
<title>The role of marketing and innovation management in the Finnish electrical and electronics industry.</title>
<pages>417-430</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2002.003018</ee>
<url>db/journals/ijtm/ijtm23.html#Anttila02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WardFJCC09">
<author>Robert Edward Thomas Ward</author>
<author>Joann Fong</author>
<author>Bernard Eric Michael Jones</author>
<author>Lorna Ann Casselton</author>
<author>Stephen James Cox</author>
<title>How national science academies in developed countries can assist development in sub-Saharan Africa.</title>
<pages>9-26</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022672</ee>
<url>db/journals/ijtm/ijtm46.html#WardFJCC09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lee08">
<author>Les Tien-Shang Lee</author>
<title>The influences of leadership style and market orientation on export performance: an empirical study of small and medium enterprises in Taiwan.</title>
<pages>404-424</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.020558</ee>
<url>db/journals/ijtm/ijtm43.html#Lee08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YamadaK05">
<author>Hideo Yamada</author>
<author>Sam Kurokawa</author>
<title>How to profit from de facto standard-based competition: learning from Japanese firms' experiences.</title>
<pages>299-326</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006710</ee>
<url>db/journals/ijtm/ijtm30.html#YamadaK05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RylanderJR00">
<author>Anna Rylander</author>
<author>Kristine Jacobsen</author>
<author>Goran Roos</author>
<title>Towards improved information disclosure on intellectual capital.</title>
<pages>715-741</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002892</ee>
<url>db/journals/ijtm/ijtm20.html#RylanderJR00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Alasoini01">
<author>Tuomo Alasoini</author>
<title>Promoting network-based organisational innovations: a new approach in Finnish labour and technology policies.</title>
<pages>174-188</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002960</ee>
<url>db/journals/ijtm/ijtm22.html#Alasoini01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AhmedGK09">
<author>Allam Ahmed</author>
<author>Sherine Ghoneim</author>
<author>Ronald Kim</author>
<title>Knowledge management as an enabler of change and innovation in Africa.</title>
<pages>10-26</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021517</ee>
<url>db/journals/ijtm/ijtm45.html#AhmedGK09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CampbellG05">
<author>David F. J. Campbell</author>
<author>Wolfgang H. G&uuml;ttel</author>
<title>Knowledge production of firms: research networks and the "scientification" of business R&amp;D.</title>
<pages>152-175</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006629</ee>
<url>db/journals/ijtm/ijtm31.html#CampbellG05</url>
</article><article mdate="2017-08-09" key="journals/ijtm/BerglundS17">
<author>Henrik Berglund</author>
<author>Christian Sandstr&ouml;m</author>
<title>A new perspective on the innovator's dilemma - exploring the role of entrepreneurial incentives.</title>
<pages>142-156</pages>
<year>2017</year>
<volume>75</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10006144</ee>
<url>db/journals/ijtm/ijtm75.html#BerglundS17</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/Marti00">
<author>Josep Maria Viedma Marti</author>
<title>ICBS: Intellectual Capital Benchmarking Systems.</title>
<pages>799-818</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002890</ee>
<url>db/journals/ijtm/ijtm20.html#Marti00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AntonelliGS00">
<author>Cristiano Antonelli</author>
<author>Aldo Geuna</author>
<author>W. Edward Steinmueller</author>
<title>Information and communication technologies and the production, distribution and use of knowledge.</title>
<pages>72-94</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002853</ee>
<url>db/journals/ijtm/ijtm20.html#AntonelliGS00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/UslayMC04">
<author>Can Uslay</author>
<author>Naresh K. Malhotra</author>
<author>Alka V. Citrin</author>
<title>Unique marketing challenges at the frontiers of technology: an integrated perspective.</title>
<pages>8-30</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.005050</ee>
<url>db/journals/ijtm/ijtm28.html#UslayMC04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RitalaAAG13">
<author>Paavo Ritala</author>
<author>Vassilis Agouridas</author>
<author>Dimitris Assimakopoulos</author>
<author>Otto Gies</author>
<title>Value creation and capture mechanisms in innovation ecosystems: a comparative case study.</title>
<pages>244-267</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.056900</ee>
<url>db/journals/ijtm/ijtm63.html#RitalaAAG13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuanZY17">
<author>Jiancheng Guan</author>
<author>Jingjing Zhang</author>
<author>Yan Yan</author>
<title>A dynamic perspective on diversities and network change: partner entry, exit and persistence.</title>
<pages>221-242</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004289</ee>
<url>db/journals/ijtm/ijtm74.html#GuanZY17</url>
</article><article mdate="2018-01-12" key="journals/ijtm/KestingGB18">
<author>Tobias Kesting</author>
<author>Wolfgang Gerstlberger</author>
<author>Thomas Baaken</author>
<title>A benefit segmentation approach for innovation-oriented university-business collaboration.</title>
<pages>58-80</pages>
<year>2018</year>
<volume>76</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2018.10009594</ee>
<url>db/journals/ijtm/ijtm76.html#KestingGB18</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/TestaBB12">
<author>Francesco Testa</author>
<author>Massimo Battaglia</author>
<author>Lara Bianchi</author>
<title>The diffusion of CSR initiatives among SMEs in industrial clusters: some findings from Italian experiences.</title>
<pages>152-170</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.045793</ee>
<url>db/journals/ijtm/ijtm58.html#TestaBB12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Subrahmanya05">
<author>M. H. Bala Subrahmanya</author>
<title>Technological innovations in Indian small enterprises: dimensions, intensity and implications.</title>
<pages>188-204</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006350</ee>
<url>db/journals/ijtm/ijtm30.html#Subrahmanya05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShrivastavaII12">
<author>Paul Shrivastava</author>
<author>Vera Ivanaj</author>
<author>Silvester Ivanaj</author>
<title>Sustainable development and the arts.</title>
<pages>23-43</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.049104</ee>
<url>db/journals/ijtm/ijtm60.html#ShrivastavaII12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JonesT03">
<author>Gary K. Jones</author>
<author>Hildy Teegen</author>
<title>Factors affecting foreign R&amp;D location decisions: management and host policy implications.</title>
<pages>791-813</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003138</ee>
<url>db/journals/ijtm/ijtm25.html#JonesT03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ClarkJ01">
<author>Woodrow W. Clark Jr.</author>
<author>J. Dan Jensen</author>
<title>The role of government in privatisation: an economic model from Denmark.</title>
<pages>540-555</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002933</ee>
<url>db/journals/ijtm/ijtm21.html#ClarkJ01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/MagnussonM08">
<author>Mats Magnusson</author>
<author orcid="0000-0002-2006-4293">Antonella Martini</author>
<title>Dual organisational capabilities: from theory to practice - the next challenge for continuous innovation.</title>
<pages>1-19</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.018073</ee>
<url>db/journals/ijtm/ijtm42.html#MagnussonM08</url>
</article><article mdate="2017-06-14" key="journals/ijtm/GranstrandH14">
<author>Ove Granstrand</author>
<author orcid="0000-0002-3332-3004">Marcus Holgersson</author>
<title>Multinational technology and intellectual property management - is there global convergence and/or specialisation?</title>
<pages>117-147</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.059931</ee>
<url>db/journals/ijtm/ijtm64.html#GranstrandH14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HaapasaloK02">
<author>Harri Haapasalo</author>
<author>Pekka Kess</author>
<title>Managing creativity: is it possible to control the birth of innovation in product design?</title>
<pages>57-69</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2002.003044</ee>
<url>db/journals/ijtm/ijtm24.html#HaapasaloK02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GeschkaLV02">
<author>Horst Geschka</author>
<author>Thorsten Lenk</author>
<author>Jens Vietor</author>
<title>The idea and project database of WELLA AG.</title>
<pages>410-416</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2002.003017</ee>
<url>db/journals/ijtm/ijtm23.html#GeschkaLV02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DhillonF05">
<author>Gurpreet Dhillon</author>
<author>Frances Hauge Fabian</author>
<title>A fractal perspective on competencies necessary for managing information systems.</title>
<pages>129-139</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006627</ee>
<url>db/journals/ijtm/ijtm31.html#DhillonF05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HuangW05">
<author>Liang-Chih Huang</author>
<author>Ray Yen-Hui Wu</author>
<title>Applying fuzzy analytic hierarchy process in the managerial talent assessment model - an empirical study in Taiwan's semiconductor industry.</title>
<pages>105-130</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006347</ee>
<url>db/journals/ijtm/ijtm30.html#HuangW05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Komninos04">
<author>Nicos Komninos</author>
<title>Regional intelligence: distributed localised information systems for innovation and development.</title>
<pages>483-506</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005306</ee>
<url>db/journals/ijtm/ijtm28.html#Komninos04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CarayannisC09">
<author>Elias G. Carayannis</author>
<author>David F. J. Campbell</author>
<title>'Mode 3' and 'Quadruple Helix': toward a 21st century fractal innovation ecosystem.</title>
<pages>201-234</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.023374</ee>
<url>db/journals/ijtm/ijtm46.html#CarayannisC09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AcharyaM07">
<author>Padmanav Acharya</author>
<author>Biswajit Mahanty</author>
<title>Manpower shortage crisis in Indian information technology industry.</title>
<pages>235-247</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2007.012712</ee>
<url>db/journals/ijtm/ijtm38.html#AcharyaM07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZhangLGC14">
<author>Hong Zhang</author>
<author>Yaobin Lu</author>
<author>Ping Gao</author>
<author>Zhenxiang Chen</author>
<title>Social shopping communities as an emerging business model of youth entrepreneurship: exploring the effects of website characteristics.</title>
<pages>319-345</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2014.064987</ee>
<url>db/journals/ijtm/ijtm66.html#ZhangLGC14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ColosimoGP07">
<author>Bianca Maria Colosimo</author>
<author>F. Godio</author>
<author>L. Palmieri</author>
<title>Comparative studies of control charts for torque data in automotive component assembling.</title>
<pages>72-85</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.011804</ee>
<url>db/journals/ijtm/ijtm37.html#ColosimoGP07</url>
</article><article mdate="2017-09-16" key="journals/ijtm/Moyano-FuentesMMC12">
<author orcid="0000-0002-8702-6419">Jos&eacute; Moyano-Fuentes</author>
<author orcid="0000-0002-0627-0795">Pedro Jos&eacute; Mart&iacute;nez-Jurado</author>
<author orcid="0000-0001-5159-5970">Juan Manuel Maqueira-Mar&iacute;n</author>
<author orcid="0000-0002-7330-6639">Sebasti&aacute;n Bruque C&aacute;mara</author>
<title>Impact of use of information technology on lean production adoption: evidence from the automotive industry.</title>
<pages>132-148</pages>
<year>2012</year>
<volume>57</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2012.043955</ee>
<url>db/journals/ijtm/ijtm57.html#Moyano-FuentesMMC12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PaikPK09">
<author>Eui-Sun Paik</author>
<author>Sangmoon Park</author>
<author>Ji Soo Kim</author>
<title>Knowledge transfer of government research institute: the case of ETRI in Korea.</title>
<pages>392-411</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.024436</ee>
<url>db/journals/ijtm/ijtm47.html#PaikPK09</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SjodinEF11">
<author orcid="0000-0001-5464-2007">David R&ouml;nnberg Sj&ouml;din</author>
<author>Per-Erik Eriksson</author>
<author>Johan Frishammar</author>
<title>Open innovation in process industries: a lifecycle perspective on development of process equipment.</title>
<pages>225-240</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.042984</ee>
<url>db/journals/ijtm/ijtm56.html#SjodinEF11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ehrhardt04">
<author>Marcus Ehrhardt</author>
<title>Network effects, standardisation and competitive strategy: how companies influence the emergence of dominant designs.</title>
<pages>272-294</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003956</ee>
<url>db/journals/ijtm/ijtm27.html#Ehrhardt04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RajalaWRL08">
<author>Risto Rajala</author>
<author>Mika Westerlund</author>
<author>Arto Rajala</author>
<author>Seppo Leminen</author>
<title>Knowledge-intensive service activities in software business.</title>
<pages>273-290</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016784</ee>
<url>db/journals/ijtm/ijtm41.html#RajalaWRL08</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ChangCL08">
<author>Yi-Hsing Chang</author>
<author>J. Wey Chen</author>
<author orcid="0000-0002-8481-302X">Binshan Lin</author>
<title>KMsharer: an information technology approach to enable knowledge management services.</title>
<pages>252-265</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019418</ee>
<url>db/journals/ijtm/ijtm43.html#ChangCL08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Figueiredo03">
<author>Paulo N. Figueiredo</author>
<title>Learning processes features: how do they influence inter-firm differences in technological capability-accumulation paths and operational performance improvement? [1].</title>
<pages>655-693</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003451</ee>
<url>db/journals/ijtm/ijtm26.html#Figueiredo03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ouyang08">
<author>Hongwu Ouyang</author>
<title>Resources, absorptive capacity, and technology sourcing.</title>
<pages>183-202</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015991</ee>
<url>db/journals/ijtm/ijtm41.html#Ouyang08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AvnimelechF15">
<author>Gil Avnimelech</author>
<author>Maryann P. Feldman</author>
<title>The stickiness of university spin-offs: a study of formal and informal spin-offs and their location from 124 US academic institutions.</title>
<pages>122-149</pages>
<year>2015</year>
<volume>68</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2015.068755</ee>
<url>db/journals/ijtm/ijtm68.html#AvnimelechF15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kiernan00">
<author>Annabel K. Kiernan</author>
<title>Technocratic policy partnerships: a new descriptor for public administration?</title>
<pages>384-396</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002822</ee>
<url>db/journals/ijtm/ijtm19.html#Kiernan00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Fuller10">
<author>Douglas B. Fuller</author>
<title>Networks and nations: the interplay of transnational networks and domestic institutions in China's chip design industry.</title>
<pages>239-257</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033804</ee>
<url>db/journals/ijtm/ijtm51.html#Fuller10</url>
</article><article mdate="2017-06-06" key="journals/ijtm/MuellerPG14">
<author>Jens Mueller</author>
<author>Maria Rosaria Della Peruta</author>
<author orcid="0000-0002-2389-4495">Manlio Del Giudice</author>
<title>Social media platforms and technology education: Facebook on the way to graduate school.</title>
<pages>358-370</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2014.065005</ee>
<url>db/journals/ijtm/ijtm66.html#MuellerPG14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WustenhagenT06">
<author>Rolf Wustenhagen</author>
<author>Tarja Teppo</author>
<title>Do venture capitalists really invest in good industries? Risk-return perceptions and path dependence in the emerging European energy VC market.</title>
<pages>63-87</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2006.009448</ee>
<url>db/journals/ijtm/ijtm34.html#WustenhagenT06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BusserN04">
<author>Maurus B&uuml;sser</author>
<author>Andreas Ninck</author>
<title>BrainSpace: a virtual environment for collaboration and innovation.</title>
<pages>702-713</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005778</ee>
<url>db/journals/ijtm/ijtm28.html#BusserN04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Meijer06">
<author>Emmo M. Meijer</author>
<title>DSM and innovation: a case study.</title>
<pages>260-277</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009459</ee>
<url>db/journals/ijtm/ijtm34.html#Meijer06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PineY01">
<author>Ray Pine</author>
<author>Ming Xi Yu</author>
<title>Technology transfer to hotels in China by multinational hotel enterprises in Hong Kong.</title>
<pages>183-197</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2001.002905</ee>
<url>db/journals/ijtm/ijtm21.html#PineY01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KeizerH09">
<author>Jimme A. Keizer</author>
<author>Johannes I. M. Halman</author>
<title>Risks in major innovation projects, a multiple case study within a world's leading company in the fast moving consumer goods.</title>
<pages>499-517</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.026691</ee>
<url>db/journals/ijtm/ijtm48.html#KeizerH09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Takahashi01">
<author>Takuma Takahashi</author>
<title>The role of knowledge and organisation in the competitiveness of Japanese high-tech industry.</title>
<pages>480-502</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002974</ee>
<url>db/journals/ijtm/ijtm22.html#Takahashi01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuilhonM06">
<author>Bernard Guilhon</author>
<author>Sandra Montchaud</author>
<title>The dynamics of venture capital industry.</title>
<pages>146-160</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2006.009452</ee>
<url>db/journals/ijtm/ijtm34.html#GuilhonM06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MiddelCCBM06">
<author>Rick Middel</author>
<author>David Coghlan</author>
<author>Paul Coughlan</author>
<author>Louis Brennan</author>
<author>Timothy McNichols</author>
<title>Action research in collaborative improvement.</title>
<pages>67-91</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2006.008192</ee>
<url>db/journals/ijtm/ijtm33.html#MiddelCCBM06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wingerden01">
<author>Robert G. Van Wingerden</author>
<title>Managing change.</title>
<pages>487-495</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002928</ee>
<url>db/journals/ijtm/ijtm21.html#Wingerden01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HeringOS06">
<author>Thomas Hering</author>
<author>Michael Olbrich</author>
<author>Martin Steinrucke</author>
<title>Valuation of start-up internet companies.</title>
<pages>406-419</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009252</ee>
<url>db/journals/ijtm/ijtm33.html#HeringOS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Baranson01">
<author>Jack Baranson</author>
<title>East-West ventures in Belarus.</title>
<pages>523-528</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002931</ee>
<url>db/journals/ijtm/ijtm21.html#Baranson01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MiyajimaAK02">
<author>Hideaki Miyajima</author>
<author>Yasuhiro Arikawa</author>
<author>Atsushi Kato</author>
<title>Corporate governance, relational banking and R&amp;D: evidence from Japanese large firms in the 1980s and 1990s.</title>
<pages>769-787</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003037</ee>
<url>db/journals/ijtm/ijtm23.html#MiyajimaAK02</url>
</article><article mdate="2017-06-14" key="journals/ijtm/SchiavoneMA14">
<author orcid="0000-0001-9219-6714">Francesco Schiavone</author>
<author>Concetta Metallo</author>
<author>Rocco Agrifoglio</author>
<title>Extending the DART model for social media.</title>
<pages>271-287</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2014.064967</ee>
<url>db/journals/ijtm/ijtm66.html#SchiavoneMA14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LeungTWZD01">
<author>Susan Leung</author>
<author>Jerry Tse</author>
<author>Mark Williams</author>
<author>Jianhua Zhong</author>
<author>Howard Davies</author>
<title>The legal framework for technology development and technology import in China.</title>
<pages>42-60</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2001.002901</ee>
<url>db/journals/ijtm/ijtm21.html#LeungTWZD01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RiisHAJ01">
<author>Jens O. Riis</author>
<author>Steen Hildebrandt</author>
<author>Mogens Myrup Andreasen</author>
<author>John Johansen</author>
<title>Implementing change: lessons from five development projects.</title>
<pages>13-27</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002952</ee>
<url>db/journals/ijtm/ijtm22.html#RiisHAJ01</url>
</article><article mdate="2017-09-16" key="journals/ijtm/DawsonD10">
<author orcid="0000-0002-3175-1275">Patrick Dawson</author>
<author>Lisa Daniel</author>
<title>Understanding social innovation: a provisional framework.</title>
<pages>9-21</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033125</ee>
<url>db/journals/ijtm/ijtm51.html#DawsonD10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MarquesS05">
<author>Daniel Palacios Marqu&eacute;s</author>
<author>Fernando Jos&eacute; Garrig&oacute;s Sim&oacute;n</author>
<title>A measurement scale for knowledge management in the biotechnology and telecommunications industries.</title>
<pages>358-374</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006639</ee>
<url>db/journals/ijtm/ijtm31.html#MarquesS05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LoLY05">
<author>Ta-Hsien Lo</author>
<author>Shyhnan Liou</author>
<author>Benjamin Yuan</author>
<title>Organisation innovation and entrepreneurship: the role of the national laboratories in promoting industrial development.</title>
<pages>67-84</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006352</ee>
<url>db/journals/ijtm/ijtm30.html#LoLY05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ErnstS03">
<author>Holger Ernst</author>
<author>Jan Henrik Soll</author>
<title>An integrated portfolio approach to support market-oriented R&amp;D planning.</title>
<pages>540-560</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003422</ee>
<url>db/journals/ijtm/ijtm26.html#ErnstS03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wu0DJ15">
<author>Xiaobo Wu</author>
<author>Wei Dou 0003</author>
<author>Jian Du</author>
<author>Yuanlin Jiang</author>
<title>Production network positions, innovation orientation and environmental dynamics: an empirical analysis of Chinese firms.</title>
<pages>77-102</pages>
<year>2015</year>
<volume>67</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2015.065888</ee>
<url>db/journals/ijtm/ijtm67.html#Wu0DJ15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kissling-Naf09">
<author>Ingrid Kissling-Naf</author>
<title>From a learned society to a 21st-century science broker: the Swiss Academy of Sciences as a partner in the dialogue with society.</title>
<pages>120-131</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022680</ee>
<url>db/journals/ijtm/ijtm46.html#Kissling-Naf09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SohalCM04">
<author>Amrik S. Sohal</author>
<author>Walter W. C. Chung</author>
<author>Michael Morrison</author>
<title>In search of learning organisations: case experiences from Hong Kong.</title>
<pages>656-673</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004908</ee>
<url>db/journals/ijtm/ijtm27.html#SohalCM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ThornHMPP11">
<author>Valerie Thorn</author>
<author>Francis Hunt</author>
<author>Rick Mitchell</author>
<author>David Probert</author>
<author>Robert Phaal</author>
<title>Internal technology valuation: real world issues.</title>
<pages>149-160</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038588</ee>
<url>db/journals/ijtm/ijtm53.html#ThornHMPP11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MuRSC10">
<author>Rongping Mu</author>
<author>Zhongbao Ren</author>
<author>Hefa Song</author>
<author>Fang Chen</author>
<title>Innovative development and innovation capacity-building in China.</title>
<pages>427-452</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033813</ee>
<url>db/journals/ijtm/ijtm51.html#MuRSC10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Delgado-VerdeCC15">
<author>Miriam Delgado-Verde</author>
<author>Sarah Cooper</author>
<author>Gregorio Martin de Castro</author>
<title>The moderating role of social networks within the radical innovation process: a multidimensionality of human capital-based analysis.</title>
<pages>117-138</pages>
<year>2015</year>
<volume>69</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2015.071551</ee>
<url>db/journals/ijtm/ijtm69.html#Delgado-VerdeCC15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hara05">
<author>Takuji Hara</author>
<title>Innovation management of Japanese pharmaceutical companies: the case of an antibiotic developed by Takeda.</title>
<pages>351-364</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006711</ee>
<url>db/journals/ijtm/ijtm30.html#Hara05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/KuckertzKD10">
<author orcid="0000-0002-1733-0706">Andreas Kuckertz</author>
<author orcid="0000-0003-2094-7974">Marko Kohtamaki</author>
<author>Cornelia Dr&ouml;ge</author>
<title>The fast eat the slow - the impact of strategy and innovation timing on the success of technology-oriented ventures.</title>
<pages>175-188</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2010.035861</ee>
<url>db/journals/ijtm/ijtm52.html#KuckertzKD10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SalibW05">
<author>Sandy A. Salib</author>
<author>Khaled Wahba</author>
<title>The acceptance of "self-service" technology in the Egyptian telecom industry.</title>
<pages>20-38</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006620</ee>
<url>db/journals/ijtm/ijtm31.html#SalibW05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Pitkethly12">
<author>Robert H. Pitkethly</author>
<title>Intellectual property awareness.</title>
<pages>163-179</pages>
<year>2012</year>
<volume>59</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.047243</ee>
<url>db/journals/ijtm/ijtm59.html#Pitkethly12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BasP06">
<author>Christian Le Bas</author>
<author>Fabienne Picard</author>
<title>Models for allocating public venture capital to innovation projects: lessons from a French public agency.</title>
<pages>185-198</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2006.009454</ee>
<url>db/journals/ijtm/ijtm34.html#BasP06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sanz-MenendezCG01">
<author>Luis Sanz-Men&eacute;ndez</author>
<author>Cecilia Cabello</author>
<author>Clara Eugenia Garcia</author>
<title>Understanding technology foresight: the relevance of its S&amp;T policy context [1].</title>
<pages>661-679</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002942</ee>
<url>db/journals/ijtm/ijtm21.html#Sanz-MenendezCG01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MotohashiT16">
<author>Kazuyuki Motohashi</author>
<author>Takanori Tomozawa</author>
<title>Differences in science based innovation by technology life cycles: the case of solar cell technology.</title>
<pages>5-18</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001553</ee>
<url>db/journals/ijtm/ijtm72.html#MotohashiT16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SicottePRB04">
<author>H&eacute;l&egrave;ne Sicotte</author>
<author>Lise Pr&eacute;fontaine</author>
<author>Line Ricard</author>
<author>Mario Bourgault</author>
<title>New product development: customers' and suppliers' assessment of the same project.</title>
<pages>176-192</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003951</ee>
<url>db/journals/ijtm/ijtm27.html#SicottePRB04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lofqvist12">
<author>Lars L&ouml;fqvist</author>
<title>Motivation for innovation in small enterprises.</title>
<pages>242-265</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.049441</ee>
<url>db/journals/ijtm/ijtm60.html#Lofqvist12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Chiaromonte03">
<author>Ferdinando Chiaromonte</author>
<title>From R&amp;D management to strategic technology management: evolution and perspectives.</title>
<pages>538-552</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003119</ee>
<url>db/journals/ijtm/ijtm25.html#Chiaromonte03</url>
</article><article mdate="2017-06-14" key="journals/ijtm/AlaezBCL08">
<author>Ricardo Alaez</author>
<author orcid="0000-0001-6770-406X">Javier Bilbao</author>
<author>Vicente Camino</author>
<author>Juan-Carlos Longas</author>
<title>Technology and inter-firm relationships in the automotive industry: the case of the Basque Country and Navarre (Spain).</title>
<pages>267-289</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2008.018107</ee>
<url>db/journals/ijtm/ijtm42.html#AlaezBCL08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YoonI08">
<author>YongKi Yoon</author>
<author>Kun Shin Im</author>
<title>Evaluating IT outsourcing customer satisfaction and its impact on firm performance in Korea.</title>
<pages>160-175</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019413</ee>
<url>db/journals/ijtm/ijtm43.html#YoonI08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PillaiR00">
<author>A. Sivathanu Pillai</author>
<author>K. Srinivasa Rao</author>
<title>High technology product development: technical and management review system.</title>
<pages>685-698</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002850</ee>
<url>db/journals/ijtm/ijtm19.html#PillaiR00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Dziura01">
<author>Marek J. Dziura</author>
<title>Innovation: sources and strategies.</title>
<pages>612-627</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002938</ee>
<url>db/journals/ijtm/ijtm21.html#Dziura01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Post00">
<author>Henk Post</author>
<title>Built to last: why BAAN continues to be successful.</title>
<pages>638-658</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2000.002838</ee>
<url>db/journals/ijtm/ijtm19.html#Post00</url>
</article><article mdate="2017-06-14" key="journals/ijtm/LeeHC08">
<author orcid="0000-0002-0307-0042">Chia-Ling Lee</author>
<author>Chin-Tsang Ho</author>
<author>Yun-Lin Chiu</author>
<title>The impact of knowledge management enablers on non-financial performance in small and medium enterprises.</title>
<pages>266-283</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019419</ee>
<url>db/journals/ijtm/ijtm43.html#LeeHC08</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Garcia-SabaterM11">
<author>Julio J. Garcia-Sabater</author>
<author orcid="0000-0001-5416-3938">Juan A. Marin-Garcia</author>
<title>Can we still talk about continuous improvement? Rethinking enablers and inhibitors for successful implementation.</title>
<pages>28-42</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041678</ee>
<url>db/journals/ijtm/ijtm55.html#Garcia-SabaterM11</url>
</article><article mdate="2017-06-06" key="journals/ijtm/CorsoGMP07">
<author>Mariano Corso</author>
<author>Andrea Giacobbe</author>
<author orcid="0000-0002-2006-4293">Antonella Martini</author>
<author>Luisa Pellegrini</author>
<title>Tools and abilities for continuous improvement: what are the drivers of performance?</title>
<pages>348-365</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012268</ee>
<url>db/journals/ijtm/ijtm37.html#CorsoGMP07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AssimakopoulosY08">
<author>Dimitris Assimakopoulos</author>
<author>Jie Yan</author>
<title>An innovative model of a computer-mediated professional community: China software developer net.</title>
<pages>238-251</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019417</ee>
<url>db/journals/ijtm/ijtm43.html#AssimakopoulosY08</url>
</article><article mdate="2017-06-14" key="journals/ijtm/AposporiZM12">
<author>Eleni Apospori</author>
<author orcid="0000-0002-5779-1419">Konstantinos G. Zografos</author>
<author orcid="0000-0002-6578-6927">Solon Magrizos</author>
<title>SME corporate social responsibility and competitiveness: a literature review.</title>
<pages>10-31</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.045786</ee>
<url>db/journals/ijtm/ijtm58.html#AposporiZM12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tolentino17">
<author>Paz Estrella Tolentino</author>
<title>Technological innovation and emerging economy multinationals: the product cycle model revisited.</title>
<pages>122-139</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004285</ee>
<url>db/journals/ijtm/ijtm74.html#Tolentino17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MillarC09">
<author>Carla C. J. M. Millar</author>
<author>Chong Ju Choi</author>
<title>Reverse knowledge and technology transfer: imbalances caused by cognitive barriers in asymmetric relationships.</title>
<pages>389-402</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024954</ee>
<url>db/journals/ijtm/ijtm48.html#MillarC09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HinS03">
<author>Leo Tan Wee Hin</author>
<author>R. Subramaniam</author>
<title>Science and technology centres as agents for promoting science culture in developing nations.</title>
<pages>413-426</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003110</ee>
<url>db/journals/ijtm/ijtm25.html#HinS03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kollmann06">
<author>Tobias Kollmann</author>
<title>What is e-entrepreneurship? - fundamentals of company founding in the net economy.</title>
<pages>322-340</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009247</ee>
<url>db/journals/ijtm/ijtm33.html#Kollmann06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/StephanPS08">
<author>Michael Stephan</author>
<author>Eric Pfaffmann</author>
<author>Ron Sanchez</author>
<title>Modularity in cooperative product development: the case of the MCC 'smart' car.</title>
<pages>439-458</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.019385</ee>
<url>db/journals/ijtm/ijtm42.html#StephanPS08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiZXH16">
<author>Xin Li</author>
<author>Yuan Zhou</author>
<author>Lan Xue</author>
<author>Lucheng Huang</author>
<title>Roadmapping for industrial emergence and innovation gaps to catch-up: a patent-based analysis of OLED industry in China.</title>
<pages>105-143</pages>
<year>2016</year>
<volume>72</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.10001552</ee>
<url>db/journals/ijtm/ijtm72.html#LiZXH16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CaiCLL14">
<author>Haowen Cai</author>
<author>Haowen Chen</author>
<author>Yuan Li</author>
<author>Yi Liu</author>
<title>External dynamic capabilities, reconfiguration of cooperation mechanism and new product development: contingent effect of technological resource base.</title>
<pages>240-261</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060952</ee>
<url>db/journals/ijtm/ijtm65.html#CaiCLL14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShiHM03">
<author>Jianhuai Shi</author>
<author>George Q. Huang</author>
<author>Kai-Ling Mak</author>
<title>Synchronised Design for X platform for performance measurement on the WWW.</title>
<pages>28-44</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2003.003142</ee>
<url>db/journals/ijtm/ijtm26.html#ShiHM03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AmbosA09">
<author>Bjorn Ambos</author>
<author>Tina C. Ambos</author>
<title>Location choice, management and performance of international R&amp;D investments in peripheral economies.</title>
<pages>24-41</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2009.024598</ee>
<url>db/journals/ijtm/ijtm48.html#AmbosA09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ahmed09">
<author>Allam Ahmed</author>
<title>Managing knowledge and technology for sustainable development in Africa.</title>
<pages>1-9</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021762</ee>
<url>db/journals/ijtm/ijtm45.html#Ahmed09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TranekjerS13">
<author>Tina Lund&oslash; Tranekjer</author>
<author>Helle Alsted S&oslash;ndergaard</author>
<title>Sources of innovation, their combinations and strengths - benefits at the NPD project level.</title>
<pages>205-236</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.052668</ee>
<url>db/journals/ijtm/ijtm61.html#TranekjerS13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WuH01">
<author>Se-Hwa Wu</author>
<author>Frederick B. Hsu</author>
<title>Towards a knowledge-based view of OEM relationship building: sharing of industrial experiences in Taiwan.</title>
<pages>503-524</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002975</ee>
<url>db/journals/ijtm/ijtm22.html#WuH01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Wink03">
<author>R&uuml;diger Wink</author>
<title>Transregional effects of knowledge management: implications for policy and evaluation design.</title>
<pages>421-438</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003390</ee>
<url>db/journals/ijtm/ijtm26.html#Wink03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McGill07">
<author>Joseph P. McGill</author>
<title>Technological knowledge and governance in alliances among competitors.</title>
<pages>69-89</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.012430</ee>
<url>db/journals/ijtm/ijtm38.html#McGill07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NeyensFS10">
<author>Inge Neyens</author>
<author>Dries Faems</author>
<author>Luc Sels</author>
<title>The impact of continuous and discontinuous alliance strategies on startup innovation performance.</title>
<pages>392-410</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035982</ee>
<url>db/journals/ijtm/ijtm52.html#NeyensFS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SpringS02">
<author>Martin Spring</author>
<author>Robert C. Sweeting</author>
<title>Empowering customers: portals, supply networks and assemblers.</title>
<pages>113-128</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003001</ee>
<url>db/journals/ijtm/ijtm23.html#SpringS02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HelanderBSM15">
<author>Max Helander</author>
<author>Robert Bergqvist</author>
<author>Katarina Lund Stetler</author>
<author>Mats Magnusson</author>
<title>Applying lean in product development - enabler or inhibitor of creativity?</title>
<pages>49-69</pages>
<year>2015</year>
<volume>68</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2015.068774</ee>
<url>db/journals/ijtm/ijtm68.html#HelanderBSM15</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChorafakisL09">
<author>George Chorafakis</author>
<author>Patrice Laget</author>
<title>Technological cognition and co-adaptation in mesoeconomic plexuses.</title>
<pages>235-262</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.023375</ee>
<url>db/journals/ijtm/ijtm46.html#ChorafakisL09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LoveBT03">
<author>Doug Love</author>
<author>Jeff Barton</author>
<author>G. Don Taylor</author>
<title>Evaluating approaches to product design and sourcing decisions in multinational companies.</title>
<pages>103-119</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2003.003147</ee>
<url>db/journals/ijtm/ijtm26.html#LoveBT03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/LiW10">
<author orcid="0000-0001-7686-310X">Xibao Li</author>
<author>Guisheng Wu</author>
<title>In-house R&amp;D, technology purchase and innovation: empirical evidences from Chinese hi-tech industries, 1995-2004.</title>
<pages>217-238</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033803</ee>
<url>db/journals/ijtm/ijtm51.html#LiW10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GassmannKE10">
<author>Oliver Gassmann</author>
<author>Christoph Kausch</author>
<author>Ellen Enkel</author>
<title>Negative side effects of customer integration.</title>
<pages>43-63</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.031917</ee>
<url>db/journals/ijtm/ijtm50.html#GassmannKE10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChoiK05">
<author>Don Oh Choi</author>
<author>Ji Soo Kim</author>
<title>Productivity measurement and evaluation models with application to a military Ramp;D organisation.</title>
<pages>408-436</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007339</ee>
<url>db/journals/ijtm/ijtm32.html#ChoiK05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Montoro-SanchezS11">
<author>Angeles Montoro-S&aacute;nchez</author>
<author>Domingo Ribeiro Soriano</author>
<title>Editorial.</title>
<pages>1-11</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.038882</ee>
<url>db/journals/ijtm/ijtm54.html#Montoro-SanchezS11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SunL14">
<author>Yutao Sun</author>
<author>Fengchao Liu</author>
<title>New trends in Chinese innovation policies since 2009 - a system framework of policy analysis.</title>
<pages>6-23</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060953</ee>
<url>db/journals/ijtm/ijtm65.html#SunL14</url>
</article><article mdate="2017-09-16" key="journals/ijtm/NiLCF14">
<author orcid="0000-0001-8054-4523">He Ni</author>
<author>Tianhong Luan</author>
<author>Yu Cao</author>
<author>Donald C. Finlay</author>
<title>Can venture capital trigger innovation? New evidence from China.</title>
<pages>189-214</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060957</ee>
<url>db/journals/ijtm/ijtm65.html#NiLCF14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SchroderJ03">
<author>Hans-Horst Schr&ouml;der</author>
<author>Antonie Jetter</author>
<title>Integrating market and technological knowledge in the fuzzy front end: an FCM-based action support system.</title>
<pages>517-539</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003421</ee>
<url>db/journals/ijtm/ijtm26.html#SchroderJ03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JuZZJ16">
<author>Hailong Ju</author>
<author>Shaojie Zhang</author>
<author>Shukuan Zhao</author>
<author>Xiaowei Ju</author>
<title>Knowledge transfer capacity of universities and knowledge transfer success: evidence from university - industry collaborations in China.</title>
<pages>278-300</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2016.078572</ee>
<url>db/journals/ijtm/ijtm71.html#JuZZJ16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Price04">
<author>Russ Price</author>
<title>The role of service providers in establishing networked regional business accelerators in Utah.</title>
<pages>465-474</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2004.004283</ee>
<url>db/journals/ijtm/ijtm27.html#Price04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Keski-Seppala01">
<author>Sven Keski-Seppala</author>
<title>Managing CFD simulation: reflections around a questionnaire.</title>
<pages>298-314</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002914</ee>
<url>db/journals/ijtm/ijtm21.html#Keski-Seppala01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DaviesR00">
<author>C. Anne Davies</author>
<author>Desmond Roche</author>
<title>Information processes in support of innovation.</title>
<pages>556-568</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002881</ee>
<url>db/journals/ijtm/ijtm20.html#DaviesR00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Waters00">
<author>John Waters</author>
<title>Achieving innovation or the Holy Grail: managing knowledge or managing commitment?</title>
<pages>819-838</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002897</ee>
<url>db/journals/ijtm/ijtm20.html#Waters00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lorenzen03">
<author>Hans-Peter Lorenzen</author>
<title>The significance of communication networks for the success of system evaluations.</title>
<pages>150-165</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003367</ee>
<url>db/journals/ijtm/ijtm26.html#Lorenzen03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/NumprasertchaiI04">
<author>Somchai Numprasertchai</author>
<author>Barbara Igel</author>
<title>Managing knowledge in new product and service development: a new management approach for innovative research organisations.</title>
<pages>667-684</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005776</ee>
<url>db/journals/ijtm/ijtm28.html#NumprasertchaiI04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HowellsJM04">
<author>Jeremy Howells</author>
<author>Andrew D. James</author>
<author>Khaleel Malik</author>
<title>Sourcing external technological knowledge: a decision support framework for firms.</title>
<pages>143-154</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003949</ee>
<url>db/journals/ijtm/ijtm27.html#HowellsJM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim05">
<author>Junmo Kim</author>
<title>Are industries destined toward "productivity paradox"? An empirical case of Korea.</title>
<pages>263-279</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.005999</ee>
<url>db/journals/ijtm/ijtm29.html#Kim05</url>
</article><article mdate="2017-08-09" key="journals/ijtm/AzzamAD17">
<author>Jamal Eddine Azzam</author>
<author>C&eacute;cile Ayerbe</author>
<author>Rani Dang</author>
<title>Using patents to orchestrate ecosystem stability: the case of a French aerospace company.</title>
<pages>97-120</pages>
<year>2017</year>
<volume>75</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10006146</ee>
<url>db/journals/ijtm/ijtm75.html#AzzamAD17</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/LuC02">
<author>Iuan-yuan Lu</author>
<author>Tsun-jin Chang</author>
<title>A contingency model for studying R&amp;D-marketing integration in NPD context.</title>
<pages>143-164</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003049</ee>
<url>db/journals/ijtm/ijtm24.html#LuC02</url>
</article><article mdate="2017-06-06" key="journals/ijtm/AloiniMP11">
<author>Davide Aloini</author>
<author orcid="0000-0002-2006-4293">Antonella Martini</author>
<author>Luisa Pellegrini</author>
<title>Effectiveness of different development paths in continuous improvement: empirical results from a (new) methodological approach.</title>
<pages>6-27</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041677</ee>
<url>db/journals/ijtm/ijtm55.html#AloiniMP11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Abetti11">
<author>Pier A. Abetti</author>
<title>General Electric at the crossroads: the end of the last US conglomerate?</title>
<pages>345-368</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041579</ee>
<url>db/journals/ijtm/ijtm54.html#Abetti11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LuthjeLH03">
<author>Christian Luthje</author>
<author>Christopher Lettl</author>
<author>Cornelius Herstatt</author>
<title>Knowledge distribution among market experts: a closer look into the efficiency of information gathering for innovation projects.</title>
<pages>561-577</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003423</ee>
<url>db/journals/ijtm/ijtm26.html#LuthjeLH03</url>
</article><article mdate="2017-06-14" key="journals/ijtm/GoduscheitJ13">
<author orcid="0000-0001-8639-2014">Ren&eacute; Chester Goduscheit</author>
<author>Jacob H&oslash;j J&oslash;rgensen</author>
<title>User toolkits for innovation - a literature review.</title>
<pages>274-292</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.052671</ee>
<url>db/journals/ijtm/ijtm61.html#GoduscheitJ13</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Sandstrom11">
<author orcid="0000-0002-8625-8744">Christian Sandstr&ouml;m</author>
<title>High-end disruptive technologies with an inferior performance.</title>
<pages>109-122</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.042977</ee>
<url>db/journals/ijtm/ijtm56.html#Sandstrom11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KinukawaM16">
<author>Shinya Kinukawa</author>
<author>Kazuyuki Motohashi</author>
<title>What determines the outcome of licensing deals in market for technology? Empirical analysis of sellers and buyers in biotechnology alliances.</title>
<pages>257-280</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2016.075885</ee>
<url>db/journals/ijtm/ijtm70.html#KinukawaM16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cheng05">
<author>Alfred Li-Ping Cheng</author>
<title>ICT industry development strategies and the formation of industrial innovation systems on the two sides of the Taiwan Strait.</title>
<pages>264-276</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007333</ee>
<url>db/journals/ijtm/ijtm32.html#Cheng05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Nursall03">
<author>Alan Nursall</author>
<title>Building public knowledge: collaborations between science centres, universities and industry.</title>
<pages>381-389</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2003.003107</ee>
<url>db/journals/ijtm/ijtm25.html#Nursall03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BeltramoPP01">
<author>Jean-Paul Beltramo</author>
<author>Jean-Jacques Paul</author>
<author>Cathy Perret</author>
<title>The recruitment of researchers and the organisation of scientific activity in industry.</title>
<pages>811-834</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002993</ee>
<url>db/journals/ijtm/ijtm22.html#BeltramoPP01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Frischtak06">
<author>Claudio R. Frischtak</author>
<title>Learning and capability building in industrialising economies: a critical note.</title>
<pages>40-42</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009960</ee>
<url>db/journals/ijtm/ijtm36.html#Frischtak06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChuHHY08">
<author>Po-Young Chu</author>
<author>Hsing-Hwa Hsiung</author>
<author>Chi-Hung Huang</author>
<author>Chuan-Yi Yang</author>
<title>Determinants of the valuation of intangible assets - a contrast between Taiwanese and American IC design houses.</title>
<pages>336-358</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016787</ee>
<url>db/journals/ijtm/ijtm41.html#ChuHHY08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TietzeSH13">
<author>Frank Tietze</author>
<author>Tim Schiederig</author>
<author>Cornelius Herstatt</author>
<title>Firms' transition to green product service system innovators: cases from the mobility sector.</title>
<pages>51-69</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2013.055579</ee>
<url>db/journals/ijtm/ijtm63.html#TietzeSH13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ferrary03">
<author>Michel Ferrary</author>
<title>Managing the disruptive technologies life cycle by externalising the research: social network and corporate venturing in the Silicon Valley.</title>
<pages>165-180</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003096</ee>
<url>db/journals/ijtm/ijtm25.html#Ferrary03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SpenaC12">
<author orcid="0000-0002-1732-6029">Tiziana Russo Spena</author>
<author>Alessandra De Chiara</author>
<title>CSR, innovation strategy and supply chain management: toward an integrated perspective.</title>
<pages>83-108</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.045790</ee>
<url>db/journals/ijtm/ijtm58.html#SpenaC12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/XieW06">
<author>Wei Xie</author>
<author>Steven White</author>
<title>Windows of opportunity, learning strategies and the rise of China's handset makers.</title>
<pages>230-248</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009970</ee>
<url>db/journals/ijtm/ijtm36.html#XieW06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BirchallCTH11">
<author>David William Birchall</author>
<author>Jean-Jacques Chanaron</author>
<author>George Tovstiga</author>
<author>Carola Hillenbrand</author>
<title>Innovation performance measurement: current practices, issues and management challenges.</title>
<pages>1-20</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2011.042492</ee>
<url>db/journals/ijtm/ijtm56.html#BirchallCTH11</url>
</article><article mdate="2017-06-14" key="journals/ijtm/HegdeS07">
<author>Deepak Hegde</author>
<author orcid="0000-0003-2488-5985">Philip Shapira</author>
<title>Knowledge, technology trajectories, and innovation in a developing country context: evidence from a survey of Malaysian firms.</title>
<pages>349-370</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.015757</ee>
<url>db/journals/ijtm/ijtm40.html#HegdeS07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DabhilkarB07">
<author>Mandar Dabhilkar</author>
<author>Lars Bengtsson</author>
<title>Continuous improvement capability in the Swedish engineering industry.</title>
<pages>272-289</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012263</ee>
<url>db/journals/ijtm/ijtm37.html#DabhilkarB07</url>
</article><article mdate="2017-06-06" key="journals/ijtm/McAdamM10">
<author orcid="0000-0001-5503-3385">Rodney McAdam</author>
<author>Neil Mitchell</author>
<title>The influences of critical incidents and lifecycle dynamics on innovation implementation constructs in SMEs: a longitudinal study.</title>
<pages>189-212</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2010.035862</ee>
<url>db/journals/ijtm/ijtm52.html#McAdamM10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SchulzeS12">
<author>Anja Schulze</author>
<author>Thorsten St&ouml;rmer</author>
<title>Lean product development - enabling management factors for waste elimination.</title>
<pages>71-91</pages>
<year>2012</year>
<volume>57</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2012.043952</ee>
<url>db/journals/ijtm/ijtm57.html#SchulzeS12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Pan14">
<author>Wen-Tsao Pan</author>
<title>Using data mining for service satisfaction performance analysis for mainland tourists in Taiwan.</title>
<pages>31-44</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.059236</ee>
<url>db/journals/ijtm/ijtm64.html#Pan14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Crol00">
<author>Johannes B. Crol</author>
<title>Creating support for a change in strategy.</title>
<pages>586-596</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2000.002833</ee>
<url>db/journals/ijtm/ijtm19.html#Crol00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RichardsBHKOSZ09">
<author>Paul Richards</author>
<author>Martien De Bruin-Hoekzema</author>
<author>Stephen G. Hughes</author>
<author>Comfort Kudadjie-Freeman</author>
<author>Samuel Kwame Offei</author>
<author>Paul C. Struik</author>
<author>Afio Zannou</author>
<title>Seed systems for African food security: linking molecular genetic analysis and cultivator knowledge in West Africa.</title>
<pages>196-214</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021528</ee>
<url>db/journals/ijtm/ijtm45.html#RichardsBHKOSZ09</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ChouSL08">
<author>Tung-Hsiang Chou</author>
<author orcid="0000-0002-4981-0093">Jia-Lang Seng</author>
<author orcid="0000-0002-8481-302X">Binshan Lin</author>
<title>eTOM and e-services based trouble-management operations: a large scale telecom case study.</title>
<pages>383-403</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.020557</ee>
<url>db/journals/ijtm/ijtm43.html#ChouSL08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GranataGGGM16">
<author>Julien Granata</author>
<author>Micka&euml;l G&eacute;raudel</author>
<author>Katherine Gundolf</author>
<author>Johanna Gast</author>
<author>Pierre Marqu&egrave;s</author>
<title>Organisational innovation and coopetition between SMEs: a tertius strategies approach.</title>
<pages>81-99</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2016.077975</ee>
<url>db/journals/ijtm/ijtm71.html#GranataGGGM16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MuffattoR02">
<author>Moreno Muffatto</author>
<author>Marco Roveda</author>
<title>Product architecture and platforms: a conceptual framework.</title>
<pages>1-16</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2002.003040</ee>
<url>db/journals/ijtm/ijtm24.html#MuffattoR02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TempletonS00">
<author>Gary F. Templeton</author>
<author>Charles A. Snyder</author>
<title>Precursors, contexts and consequences of organisational learning.</title>
<pages>765-781</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002895</ee>
<url>db/journals/ijtm/ijtm20.html#TempletonS00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KarkkainenETP03">
<author>Hannu K&auml;rkk&auml;inen</author>
<author>Kalle Elfvengren</author>
<author>Markku Tuominen</author>
<author>Petteri Piippo</author>
<title>A tool for systematic assessment of customer needs in industrial markets.</title>
<pages>588-604</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003124</ee>
<url>db/journals/ijtm/ijtm25.html#KarkkainenETP03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/HylandBSJ08">
<author>Paul Hyland</author>
<author orcid="0000-0002-6686-2039">Karen Becker</author>
<author>Terry Sloan</author>
<author>Frances J&oslash;rgensen</author>
<title>CI in the work place: does involving the HRM function make any difference?</title>
<pages>427-440</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.021048</ee>
<url>db/journals/ijtm/ijtm44.html#HylandBSJ08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim10">
<author>Junmo Kim</author>
<title>Balancing industry outlooks and technology policy as response.</title>
<pages>49-65</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029410</ee>
<url>db/journals/ijtm/ijtm49.html#Kim10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BoerD01">
<author>Harry Boer</author>
<author>Willem E. During</author>
<title>Innovation, what innovation? A comparison between product, process and organisational innovation.</title>
<pages>83-107</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002956</ee>
<url>db/journals/ijtm/ijtm22.html#BoerD01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/GonzalezC04">
<author orcid="0000-0003-1091-815X">Eduardo Gonzalez</author>
<author orcid="0000-0001-7487-0031">Ana Carcaba</author>
<title>Efficiency improvement through learning.</title>
<pages>628-638</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004906</ee>
<url>db/journals/ijtm/ijtm27.html#GonzalezC04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuanL05">
<author>Jiancheng Guan</author>
<author>Shunzhong Liu</author>
<title>Comparing regional innovative capacities of PR China based on data analysis of the national patents.</title>
<pages>225-245</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007331</ee>
<url>db/journals/ijtm/ijtm32.html#GuanL05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MerindolV10">
<author>Valerie Merindol</author>
<author>David W. Versailles</author>
<title>Dual-use as Knowledge-Oriented Policy: France during the 1990-2000s.</title>
<pages>80-98</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.031919</ee>
<url>db/journals/ijtm/ijtm50.html#MerindolV10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim11a">
<author>Sangkyun Kim</author>
<title>Auditing methodology on legal compliance of enterprise information systems.</title>
<pages>270-287</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039315</ee>
<url>db/journals/ijtm/ijtm54.html#Kim11a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Zutshi06">
<author>Ravinder K. Zutshi</author>
<title>Confucian value system and its impact on joint venture formation.</title>
<pages>160-182</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008309</ee>
<url>db/journals/ijtm/ijtm33.html#Zutshi06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AntoineFMR03">
<author>Albert Antoine</author>
<author>Carl B. Frank</author>
<author>Hideaki Murata</author>
<author>Edward Roberts</author>
<title>Acquisitions and alliances in the aerospace industry: an unusual triad.</title>
<pages>779-790</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003137</ee>
<url>db/journals/ijtm/ijtm25.html#AntoineFMR03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YuanC02">
<author>Benjamin J. C. Yuan</author>
<author>Pao Cheng Chang</author>
<title>A study forecasting the development tendency of the textile industry in Taiwan.</title>
<pages>296-310</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003057</ee>
<url>db/journals/ijtm/ijtm24.html#YuanC02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lichtenthaler04">
<author>Eckhard Lichtenthaler</author>
<title>Organising the external technology exploitation process: current practices and future challenges.</title>
<pages>255-271</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003955</ee>
<url>db/journals/ijtm/ijtm27.html#Lichtenthaler04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BalanVK07">
<author>S. Balan</author>
<author>Prem Vrat</author>
<author>Pradeep Kumar</author>
<title>A strategic decision model for the justification of supply chain as a means to improve national development index.</title>
<pages>69-86</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013527</ee>
<url>db/journals/ijtm/ijtm40.html#BalanVK07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Shainesh04">
<author>G. Shainesh</author>
<title>Understanding buyer behaviour in software services - strategies for Indian firms.</title>
<pages>118-127</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.005056</ee>
<url>db/journals/ijtm/ijtm28.html#Shainesh04</url>
</article><article mdate="2017-06-06" key="journals/ijtm/EstevaoCT14">
<author orcid="0000-0003-1962-6399">Jo&atilde;o Vaz Est&ecirc;v&atilde;o</author>
<author>Maria Jo&atilde;o Carneiro</author>
<author orcid="0000-0002-7791-1932">Leonor Teixeira</author>
<title>Destination management systems: creation of value for visitors of tourism destinations.</title>
<pages>64-88</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.059233</ee>
<url>db/journals/ijtm/ijtm64.html#EstevaoCT14</url>
</article><article mdate="2017-06-06" key="journals/ijtm/BersonL06">
<author>Yair Berson</author>
<author orcid="0000-0001-9797-1687">Jonathan D. Linton</author>
<title>Leadership style and quality climate perceptions: contrasting project vs. process environments.</title>
<pages>92-110</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2006.008193</ee>
<url>db/journals/ijtm/ijtm33.html#BersonL06</url>
</article><article mdate="2017-06-14" key="journals/ijtm/MartinezLMG14">
<author>Marian Garcia Martinez</author>
<author>Valentina Lazzarotti</author>
<author orcid="0000-0003-2998-2784">Raffaella Manzini</author>
<author orcid="0000-0002-9959-5643">Mercedes S&aacute;nchez Garc&iacute;a</author>
<title>Open innovation strategies in the food and drink industry: determinants and impact on innovation performance.</title>
<pages>212-242</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2014.064588</ee>
<url>db/journals/ijtm/ijtm66.html#MartinezLMG14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sanchez08">
<author>Ron Sanchez</author>
<title>Modularity in the mediation of market and technology change.</title>
<pages>331-364</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.019380</ee>
<url>db/journals/ijtm/ijtm42.html#Sanchez08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GieskesH03">
<author>Jos&eacute; F. B. Gieskes</author>
<author>Paul Hyland</author>
<title>Learning barriers in continuous product innovation.</title>
<pages>857-870</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003394</ee>
<url>db/journals/ijtm/ijtm26.html#GieskesH03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TaclaF06">
<author>Celso L. Tacla</author>
<author>Paulo N. Figueiredo</author>
<title>The dynamics of technological learning inside the latecomer firm: evidence from the capital goods industry in Brazil.</title>
<pages>62-90</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009962</ee>
<url>db/journals/ijtm/ijtm36.html#TaclaF06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Albors-GarrigosH07">
<author>Jos&eacute; Albors-Garrigos</author>
<author>Jose Hervas-Oliver</author>
<title>CI practice in Spain: its role as a strategic tool for the firm. Empirical evidence from the CINet survey analysis.</title>
<pages>332-347</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012267</ee>
<url>db/journals/ijtm/ijtm37.html#Albors-GarrigosH07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LaerumHS09">
<author>Ole Didrik Laerum</author>
<author>Kim Gunnar Helsvig</author>
<author>Reidun Sirevag</author>
<title>The Norwegian Academy of Science and Letters: current revival of a time-honoured institution.</title>
<pages>27-37</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022673</ee>
<url>db/journals/ijtm/ijtm46.html#LaerumHS09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MillarCM08">
<author>Carla C. J. M. Millar</author>
<author>Chong Ju Choi</author>
<author>P. Hartley Millar</author>
<title>Google and global market search: information signals and knowledge indices.</title>
<pages>96-106</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019409</ee>
<url>db/journals/ijtm/ijtm43.html#MillarCM08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ArvanitisZQX06">
<author>Rigas Arvanitis</author>
<author>Wei Zhao</author>
<author>Haixiong Qiu</author>
<author>Jian-niu Xu</author>
<title>Technological learning in six firms in Southern China: success and limits of an industrialisation model.</title>
<pages>108-125</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009964</ee>
<url>db/journals/ijtm/ijtm36.html#ArvanitisZQX06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Katz06">
<author>Jorge Katz</author>
<title>Market-oriented reforms, globalisation and the recent transformation of the production and social structure of developing countries.</title>
<pages>21-24</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009958</ee>
<url>db/journals/ijtm/ijtm36.html#Katz06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CleggB09">
<author>Michael T. Clegg</author>
<author>John P. Boright</author>
<title>Adapting to the future: the role of science academies in capacity building.</title>
<pages>108-119</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022679</ee>
<url>db/journals/ijtm/ijtm46.html#CleggB09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BuenoPS04">
<author>Eduardo Bueno</author>
<author>Patricia Ord&oacute;&ntilde;ez de Pablos</author>
<author>Maria Paz Salmador Sanchez</author>
<title>Towards an integrative model of business, knowledge and organisational learning processes.</title>
<pages>562-574</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004902</ee>
<url>db/journals/ijtm/ijtm27.html#BuenoPS04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GenusK02">
<author>Audley Genus</author>
<author>Maria Kaplani</author>
<title>Managing operations with people and technology.</title>
<pages>189-200</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003005</ee>
<url>db/journals/ijtm/ijtm23.html#GenusK02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TesarML01">
<author>George Tesar</author>
<author>Hamid Moini</author>
<author>Jerome K. Laurent</author>
<title>Expectations before privatisation and market realities after privatisation: technology transfer.</title>
<pages>556-564</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002934</ee>
<url>db/journals/ijtm/ijtm21.html#TesarML01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cooke03a">
<author>Philip Cooke</author>
<title>Economic globalisation and its future challenges for regional development.</title>
<pages>401-420</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003389</ee>
<url>db/journals/ijtm/ijtm26.html#Cooke03a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WangP02">
<author>Tie Wang</author>
<author>Robin Pollard</author>
<title>Selecting a technical strategy for high-tech enterprises in developing countries - a case study.</title>
<pages>648-655</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003076</ee>
<url>db/journals/ijtm/ijtm24.html#WangP02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MiddelFG07">
<author>Rick Middel</author>
<author>Olaf A. M. Fisscher</author>
<author>Aard Groen</author>
<title>Managing and organising collaborative improvement: a system integrator perspective.</title>
<pages>221-236</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012259</ee>
<url>db/journals/ijtm/ijtm37.html#MiddelFG07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ContractorW09">
<author>Farok J. Contractor</author>
<author>James A. Woodley</author>
<title>The influence of asymmetric bargaining power, mutual hostages and task characteristics on the governance structure of cross-border technology alliances.</title>
<pages>403-422</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024955</ee>
<url>db/journals/ijtm/ijtm48.html#ContractorW09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AutierP05">
<author>Fabienne Autier</author>
<author>Thierry Picq</author>
<title>Is the resource-based "view" a useful perspective for SHRM research? The case of the video game industry.</title>
<pages>204-221</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006631</ee>
<url>db/journals/ijtm/ijtm31.html#AutierP05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SpinaVZ02">
<author>Gianluca Spina</author>
<author>Roberto Verganti</author>
<author>Giulio Zotteri</author>
<title>A model of co-design relationships: definitions and contingencies.</title>
<pages>304-321</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003012</ee>
<url>db/journals/ijtm/ijtm23.html#SpinaVZ02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FerrerSSH11">
<author>Mario Ferrer</author>
<author>Ricardo Santa</author>
<author>Maree Storer</author>
<author>Paul Hyland</author>
<title>Competences and capabilities for innovation in supply chain relationships.</title>
<pages>272-289</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.042987</ee>
<url>db/journals/ijtm/ijtm56.html#FerrerSSH11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BowonderM05">
<author>B. Bowonder</author>
<author>Nrupesh Mastakar</author>
<title>Strategic business leadership through innovation and globalisation: a case study of Ranbaxy Limited.</title>
<pages>176-198</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006823</ee>
<url>db/journals/ijtm/ijtm32.html#BowonderM05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WangLX14">
<author>Jian Wang</author>
<author>Zheng Liang</author>
<author>Lan Xue</author>
<title>Multinational R&amp;D in China: differentiation and integration of global R&amp;D networks.</title>
<pages>96-124</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060959</ee>
<url>db/journals/ijtm/ijtm65.html#WangLX14</url>
</article><article mdate="2017-06-06" key="journals/ijtm/MartiniLGC13">
<author orcid="0000-0002-2006-4293">Antonella Martini</author>
<author>Bj&oslash;rge Timenes Laugen</author>
<author>Luca Gastaldi</author>
<author>Mariano Corso</author>
<title>Continuous innovation: towards a paradoxical, ambidextrous combination of exploration and exploitation.</title>
<pages>1-22</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2013.050246</ee>
<url>db/journals/ijtm/ijtm61.html#MartiniLGC13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/OkuyamaM03">
<author>Tetsuya Okuyama</author>
<author>Konomu Matsui</author>
<title>Management of technology through Vision-Driven R&amp;D.</title>
<pages>623-630</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003127</ee>
<url>db/journals/ijtm/ijtm25.html#OkuyamaM03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CaiSL14">
<author>Jing Cai</author>
<author>Alison U. Smart</author>
<author>Xuefeng Liu</author>
<title>Innovation exploitation, exploration and supplier relationship management.</title>
<pages>134-155</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2014.064589</ee>
<url>db/journals/ijtm/ijtm66.html#CaiSL14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Drenth09">
<author>Pieter J. D. Drenth</author>
<title>The role of an academy of sciences and humanities.</title>
<pages>97-107</pages>
<year>2009</year>
<volume>46</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.022678</ee>
<url>db/journals/ijtm/ijtm46.html#Drenth09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Canuto02">
<author>Umberto Del Canuto</author>
<title>Innovation management in Finmeccanica: experiencing a technology matrix.</title>
<pages>431-447</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2002.003019</ee>
<url>db/journals/ijtm/ijtm23.html#Canuto02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GammeltoftH17">
<author>Peter Gammeltoft</author>
<author>Bersant Hobdari</author>
<title>Emerging market multinationals, international knowledge flows and innovation.</title>
<pages>1-22</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.083619</ee>
<url>db/journals/ijtm/ijtm74.html#GammeltoftH17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tichy01">
<author>Gunther Tichy</author>
<title>The decision Delphi as a tool of technology policy - the Austrian experience.</title>
<pages>756-766</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002948</ee>
<url>db/journals/ijtm/ijtm21.html#Tichy01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GarnseyL04">
<author>Elizabeth Garnsey</author>
<author>Christian Longhi</author>
<title>High technology locations and globalisation: converse paths, common processes.</title>
<pages>336-355</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005292</ee>
<url>db/journals/ijtm/ijtm28.html#GarnseyL04</url>
</article><article mdate="2017-08-09" key="journals/ijtm/NaganoIG17">
<author>Hiroyuki Nagano</author>
<author>Shuichi Ishida</author>
<author>Kiminori Gemba</author>
<title>Exploratory research on the mechanism of latecomer advantages in the Asian LCD industry.</title>
<pages>208-233</pages>
<year>2017</year>
<volume>75</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10006147</ee>
<url>db/journals/ijtm/ijtm75.html#NaganoIG17</url>
</article>
<article mdate="2017-06-06" key="journals/ijtm/RiccaboniP03">
<author orcid="0000-0003-4979-8933">Massimo Riccaboni</author>
<author orcid="0000-0001-7056-1303">Fabio Pammolli</author>
<title>Technological regimes and the evolution of networks of innovators. Lessons from biotechnology and pharmaceuticals.</title>
<pages>334-349</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003104</ee>
<url>db/journals/ijtm/ijtm25.html#RiccaboniP03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WuCL17">
<author>Hang Wu</author>
<author>Jin Chen</author>
<author>Yang Liu</author>
<title>The impact of OFDI on firm innovation in an emerging country.</title>
<pages>167-184</pages>
<year>2017</year>
<volume>74</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10004284</ee>
<url>db/journals/ijtm/ijtm74.html#WuCL17</url>
</article><article mdate="2017-06-14" key="journals/ijtm/ChoyLL03">
<author orcid="0000-0001-9252-1476">King Lun Choy</author>
<author orcid="0000-0002-3413-4029">W. B. Lee</author>
<author>Victor Lo</author>
<title>An intelligent supplier relationship management system for selecting and benchmarking suppliers.</title>
<pages>717-742</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003453</ee>
<url>db/journals/ijtm/ijtm26.html#ChoyLL03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZhouTX05">
<author>Ji-zhong Zhou</author>
<author>Chao-ying Tang</author>
<author>Wei Xiong</author>
<title>Interactive relationship between KIBS and knowledge environment.</title>
<pages>288-301</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007335</ee>
<url>db/journals/ijtm/ijtm32.html#ZhouTX05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MotheN12">
<author>Caroline Mothe</author>
<author>Thuc Uyen Nguyen-Thi</author>
<title>Non-technological and technological innovations: do services differ from manufacturing? An empirical analysis of Luxembourg firms.</title>
<pages>227-244</pages>
<year>2012</year>
<volume>57</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2012.045544</ee>
<url>db/journals/ijtm/ijtm57.html#MotheN12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LetticeP10">
<author>Fiona Lettice</author>
<author>Menka Parekh</author>
<title>The social innovation process: themes, challenges and implications for practice.</title>
<pages>139-158</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033133</ee>
<url>db/journals/ijtm/ijtm51.html#LetticeP10</url>
</article><article mdate="2017-06-06" key="journals/ijtm/JorgensenBM11">
<author>Frances J&oslash;rgensen</author>
<author orcid="0000-0002-6686-2039">Karen Becker</author>
<author>Judy Matthews</author>
<title>The HRM practices of innovative knowledge-intensive firms.</title>
<pages>123-137</pages>
<year>2011</year>
<volume>56</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.042978</ee>
<url>db/journals/ijtm/ijtm56.html#JorgensenBM11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Dhanis00">
<author>Wanda D'hanis</author>
<title>Business ethics: myth or reality, tool or essence?</title>
<pages>576-582</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2000.002834</ee>
<url>db/journals/ijtm/ijtm19.html#Dhanis00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MinaD16">
<author>Anna Min&agrave;</author>
<author>Giovanni Battista Dagnino</author>
<title>In search of coopetition consensus: shaping the collective identity of a relevant strategic management community.</title>
<pages>123-154</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2016.077981</ee>
<url>db/journals/ijtm/ijtm71.html#MinaD16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ArnoldW12">
<author>Denis G. Arnold</author>
<author>Laura H. D. Williams</author>
<title>The paradox at the base of the pyramid: environmental sustainability and market-based poverty alleviation.</title>
<pages>44-59</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.049105</ee>
<url>db/journals/ijtm/ijtm60.html#ArnoldW12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Thomas03">
<author>Sandy Thomas</author>
<title>European collaboration in biotechnology: the molecular analysis of genomes.</title>
<pages>81-95</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003091</ee>
<url>db/journals/ijtm/ijtm25.html#Thomas03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GrantH16">
<author>Kevin P. Grant</author>
<author>Cory R. A. Hallam</author>
<title>Team performance in a lean manufacturing operation: it takes the will and a way to succeed.</title>
<pages>177-192</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.075161</ee>
<url>db/journals/ijtm/ijtm70.html#GrantH16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RichirTS01">
<author>Simon Richir</author>
<author>Bernard Taravel</author>
<author>Henry Samier</author>
<title>Information networks and technological innovation for industrial products.</title>
<pages>420-427</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002922</ee>
<url>db/journals/ijtm/ijtm21.html#RichirTS01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Liang09">
<author>Lou Y. Liang</author>
<title>Grouping decomposition under constraints for design/build life cycle in project delivery system.</title>
<pages>168-187</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024914</ee>
<url>db/journals/ijtm/ijtm48.html#Liang09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ElstTS06">
<author>John van den Elst</author>
<author>Ronald Tol</author>
<author>Ruud Smits</author>
<title>Innovation in practice: Philips Applied Technologies.</title>
<pages>217-231</pages>
<year>2006</year>
<volume>34</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009456</ee>
<url>db/journals/ijtm/ijtm34.html#ElstTS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ViswanathanP05">
<author>Nanda K. Viswanathan</author>
<author>James B. Pick</author>
<title>Comparison of e-commerce in India and Mexico: an example of technology diffusion in developing nations.</title>
<pages>2-19</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006619</ee>
<url>db/journals/ijtm/ijtm31.html#ViswanathanP05</url>
</article><article mdate="2017-09-16" key="journals/ijtm/AltGL05">
<author orcid="0000-0002-6395-0658">Rainer Alt</author>
<author>Dimitrios Gizanis</author>
<author>Christine Legner</author>
<title>Collaborative order management: toward standard solutions for interorganisational order management.</title>
<pages>78-97</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006624</ee>
<url>db/journals/ijtm/ijtm31.html#AltGL05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GerybadzeM14">
<author>Alexander Gerybadze</author>
<author>Sebastian Merk</author>
<title>Globalisation of R&amp;D and host-country patenting of multinational corporations in emerging countries.</title>
<pages>148-179</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.059949</ee>
<url>db/journals/ijtm/ijtm64.html#GerybadzeM14</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Tamayo-TorresGH10">
<author>Ignacio Tamayo-Torres</author>
<author orcid="0000-0002-5328-871X">Leopoldo J. Gutierrez Gutierrez</author>
<author>Carmen Haro-Dom&iacute;nguez</author>
<title>Innovation and operative real options as ways to affect organisational learning.</title>
<pages>421-438</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2010.030167</ee>
<url>db/journals/ijtm/ijtm49.html#Tamayo-TorresGH10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/XiaobaoWY13">
<author>Peng Xiaobao</author>
<author>Song Wei</author>
<author>Duan Yuzhen</author>
<title>Framework of open innovation in SMEs in an emerging economy: firm characteristics, network openness, and network information.</title>
<pages>223-250</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.055142</ee>
<url>db/journals/ijtm/ijtm62.html#XiaobaoWY13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FloricelDMI08">
<author>Serghei Floricel</author>
<author>Deborah Dougherty</author>
<author>Roger Miller</author>
<author>Mihai Ibanescu</author>
<title>Network structures and the reproduction of resources for sustainable innovation.</title>
<pages>379-406</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.016789</ee>
<url>db/journals/ijtm/ijtm41.html#FloricelDMI08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Park04">
<author>Sang-Chul Park</author>
<title>The city of brain in South Korea: Daedeok Science Town.</title>
<pages>602-614</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005311</ee>
<url>db/journals/ijtm/ijtm28.html#Park04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SandhyaM02">
<author>G. D. Sandhya</author>
<author>N. Mrinalini</author>
<title>Changing buyer-supplier relationships: reflections of dynamism and innovation in the automotive industry in India.</title>
<pages>155-171</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003003</ee>
<url>db/journals/ijtm/ijtm23.html#SandhyaM02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BenderS00">
<author>Michael J. Bender</author>
<author>Slobodan P. Simonovic</author>
<title>A systems approach for collaborative decision support in water resources planning.</title>
<pages>546-556</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002813</ee>
<url>db/journals/ijtm/ijtm19.html#BenderS00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BaderE14">
<author>Karoline Bader</author>
<author>Ellen Enkel</author>
<title>Understanding a firm's choice for openness: strategy as determinant.</title>
<pages>156-182</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2014.064590</ee>
<url>db/journals/ijtm/ijtm66.html#BaderE14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/VidalMB13">
<author>Ludovic-Alexandre Vidal</author>
<author>Franck Marle</author>
<author>Jean-Claude Bocquet</author>
<title>Building up a project complexity framework using an international Delphi study.</title>
<pages>251-283</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.055158</ee>
<url>db/journals/ijtm/ijtm62.html#VidalMB13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KhalilE05">
<author>Tarek M. Khalil</author>
<author>Hazem A. Ezzat</author>
<title>Management of technology and responsive policies in a new economy.</title>
<pages>88-111</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006820</ee>
<url>db/journals/ijtm/ijtm32.html#KhalilE05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChaturvediR00">
<author>Kalpana J. Chaturvedi</author>
<author>Y. S. Rajan</author>
<title>New product development: challenges of globalisation.</title>
<pages>788-805</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002842</ee>
<url>db/journals/ijtm/ijtm19.html#ChaturvediR00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YangS07">
<author>Chen-Lung Yang</author>
<author>Chwen Sheu</author>
<title>Achieving supply chain environment management: an exploratory study.</title>
<pages>131-156</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013531</ee>
<url>db/journals/ijtm/ijtm40.html#YangS07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HusslerP12">
<author>Caroline Hussler</author>
<author>Julien P&eacute;nin</author>
<title>Proactive versus reactive motivations for patenting and their impact on patent production at universities.</title>
<pages>213-235</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.046616</ee>
<url>db/journals/ijtm/ijtm58.html#HusslerP12</url>
</article><article mdate="2017-06-06" key="journals/ijtm/HsuTTHL06">
<author>Fu-Chiang Hsu</author>
<author>Amy J. C. Trappey</author>
<author orcid="0000-0002-3069-6702">Charles V. Trappey</author>
<author>Jiang-Liang Hou</author>
<author>Shang-Jyh Liu</author>
<title>Technology and knowledge document cluster analysis for enterprise R&amp;D strategic planning.</title>
<pages>336-353</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.010271</ee>
<url>db/journals/ijtm/ijtm36.html#HsuTTHL06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Mogee00">
<author>Mary Ellen Mogee</author>
<title>Foreign patenting behaviour of small and large firms.</title>
<pages>149-164</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002807</ee>
<url>db/journals/ijtm/ijtm19.html#Mogee00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LonghiR10">
<author>Christian Longhi</author>
<author>Michel Rainelli</author>
<title>Poles of competitiveness, a French dangerous obsession?</title>
<pages>66-92</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029411</ee>
<url>db/journals/ijtm/ijtm49.html#LonghiR10</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Serarols-TarresPO06">
<author>Christian Serarols-Tarr&eacute;s</author>
<author orcid="0000-0002-0759-1013">Antonio Padilla-Mel&eacute;ndez</author>
<author orcid="0000-0002-8270-6466">Ana Rosa del Aguila Obra</author>
<title>The influence of entrepreneur characteristics on the success of pure dot.com firms.</title>
<pages>373-388</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009250</ee>
<url>db/journals/ijtm/ijtm33.html#Serarols-TarresPO06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/EhretC10">
<author>Oliver Ehret</author>
<author>Philip Cooke</author>
<title>Conceptualising aerospace outsourcing: Airbus UK and the lean supply approach.</title>
<pages>300-317</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.032678</ee>
<url>db/journals/ijtm/ijtm50.html#EhretC10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BrunoO03">
<author>Giovanni Bruno</author>
<author>Luigi Orsenigo</author>
<title>Variables influencing industrial funding of academic research in Italy: an empirical analysis.</title>
<pages>277-302</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003363</ee>
<url>db/journals/ijtm/ijtm26.html#BrunoO03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KurokawaPF05">
<author>Sam Kurokawa</author>
<author>Karol I. Pelc</author>
<author>Kenzo Fujisue</author>
<title>Strategic management of technology in Japanese firms: literature review.</title>
<pages>223-247</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006708</ee>
<url>db/journals/ijtm/ijtm30.html#KurokawaPF05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/KillenHAJ02">
<author orcid="0000-0002-2370-7856">Catherine P. Killen</author>
<author>Robert Hunt</author>
<author>Bradley Ayres</author>
<author>Christopher Janssen</author>
<title>Strategic alliances for world competitiveness.</title>
<pages>569-582</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003071</ee>
<url>db/journals/ijtm/ijtm24.html#KillenHAJ02</url>
</article><article mdate="2017-06-26" key="journals/ijtm/ZhouM14">
<author orcid="0000-0002-9198-6586">Yuan Zhou 0001</author>
<author orcid="0000-0003-4409-9826">Tim Minshall</author>
<title>Building global products and competing in innovation: the role of Chinese university spin-outs and required innovation capabilities.</title>
<pages>180-209</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.059929</ee>
<url>db/journals/ijtm/ijtm64.html#ZhouM14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BlumK03">
<author>Ulrich Blum</author>
<author>Falk Kalus</author>
<title>Auctioning public financial support incentives.</title>
<pages>270-276</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003361</ee>
<url>db/journals/ijtm/ijtm26.html#BlumK03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FrederiksenHH04">
<author>Lars Frode Frederiksen</author>
<author>Sven Hemlin</author>
<author>Kenneth Husted</author>
<title>The role of knowledge management in R&amp;D: a survey of Danish R&amp;D leaders' perceptions and beliefs.</title>
<pages>820-839</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005785</ee>
<url>db/journals/ijtm/ijtm28.html#FrederiksenHH04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BessantKBF02">
<author>John Bessant</author>
<author>David Knowles</author>
<author>Greg Briffa</author>
<author>David Francis</author>
<title>Developing the agile enterprise.</title>
<pages>484-497</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2002.003066</ee>
<url>db/journals/ijtm/ijtm24.html#BessantKBF02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LynnA00">
<author>Gary S. Lynn</author>
<author>Ali E. Akg&uuml;n</author>
<title>A new product development learning model: antecedents and consequences of declarative and procedural knowledge.</title>
<pages>490-510</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002889</ee>
<url>db/journals/ijtm/ijtm20.html#LynnA00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HsuWY11">
<author>Bi-Fen Hsu</author>
<author>Wei-Li Wu</author>
<author>Ryh-Song Yeh</author>
<title>Team personality composition, affective ties and knowledge sharing: a team-level analysis.</title>
<pages>331-351</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038597</ee>
<url>db/journals/ijtm/ijtm53.html#HsuWY11</url>
</article><article mdate="2017-06-06" key="journals/ijtm/HendersonMP05">
<author>Joan Henderson</author>
<author orcid="0000-0001-5503-3385">Rodney McAdam</author>
<author>Steven Parkinson</author>
<title>An innovative approach to evaluating organisational change.</title>
<pages>11-31</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006343</ee>
<url>db/journals/ijtm/ijtm30.html#HendersonMP05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/CaputoZ02">
<author orcid="0000-0003-3500-4290">Mauro Caputo</author>
<author orcid="0000-0002-7760-8490">Francesco Zirpoli</author>
<title>Supplier involvement in automotive component design: outsourcing strategies and supply chain management.</title>
<pages>129-159</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003002</ee>
<url>db/journals/ijtm/ijtm23.html#CaputoZ02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HabichtT17">
<author>Hagen Habicht</author>
<author>Stefan R. Thallmaier</author>
<title>Understanding the customer value of co-designing individualised products.</title>
<pages>114-131</pages>
<year>2017</year>
<volume>73</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2017.10003243</ee>
<url>db/journals/ijtm/ijtm73.html#HabichtT17</url>
</article><article mdate="2017-09-16" key="journals/ijtm/HaakonssonK16">
<author>Stine Jessen Haakonsson</author>
<author orcid="0000-0001-9340-7202">Julia Kirch Kirkegaard</author>
<title>Configuration of technology networks in the wind turbine industry. A comparative study of technology management models in European and Chinese lead firms.</title>
<pages>281-299</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2016.075892</ee>
<url>db/journals/ijtm/ijtm70.html#HaakonssonK16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kamel09">
<author>Sherif Kamel</author>
<title>Building the African information society.</title>
<pages>62-81</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021520</ee>
<url>db/journals/ijtm/ijtm45.html#Kamel09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RehnA13">
<author>Ulrike Rehn</author>
<author>Pier A. Abetti</author>
<title>Transition of R&amp;D and product development procedures after mergers and acquisitions: a case study of Intermagnetics General and Philips Healthcare.</title>
<pages>109-131</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2013.052167</ee>
<url>db/journals/ijtm/ijtm61.html#RehnA13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChangG08">
<author>Kuo-Hsiung Chang</author>
<author>Donald F. Gotcher</author>
<title>Relationship learning and dyadic knowledge creation in international subcontracting relationships: the supplier's perspective.</title>
<pages>55-74</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015984</ee>
<url>db/journals/ijtm/ijtm41.html#ChangG08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JirachaipravitP07">
<author>Ayuth Jirachaipravit</author>
<author>David Probert</author>
<title>Technology management and broadband internet regulation: the case of Thailand.</title>
<pages>157-175</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013532</ee>
<url>db/journals/ijtm/ijtm40.html#JirachaipravitP07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ElfvengrenKT09">
<author>Kalle Elfvengren</author>
<author>Samuli Kortelainen</author>
<author>Markku Tuominen</author>
<title>A GSS process to generate new product ideas and business concepts.</title>
<pages>337-348</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022657</ee>
<url>db/journals/ijtm/ijtm45.html#ElfvengrenKT09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KarkkainenH06">
<author>Hannu K&auml;rkk&auml;inen</author>
<author>Jukka Hallikas</author>
<title>Decision making in inter-organisational relationships: implications from systems thinking.</title>
<pages>144-159</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008308</ee>
<url>db/journals/ijtm/ijtm33.html#KarkkainenH06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YangLLCC08">
<author>Ming-Hsien Yang</author>
<author>Wen-Shiu Lin</author>
<author>Shang-Chia Liu</author>
<author>Hung-Yi Chao</author>
<author>Shi-Hwang Chen</author>
<title>Developing the partner relationship management system for franchised electronic stores.</title>
<pages>176-193</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019414</ee>
<url>db/journals/ijtm/ijtm43.html#YangLLCC08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DubeW09">
<author>Kudakwashe Dube</author>
<author>Bing Wu</author>
<title>A generic approach to computer-based Clinical Practice Guideline management using the ECA Rule paradigm and active databases.</title>
<pages>75-95</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024115</ee>
<url>db/journals/ijtm/ijtm47.html#DubeW09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KreinerL00">
<author>Kristian Kreiner</author>
<author>Kristina Lee</author>
<title>Competence and community: post-acquisition learning processes in high-tech companies.</title>
<pages>657-669</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002886</ee>
<url>db/journals/ijtm/ijtm20.html#KreinerL00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WangLZGL13">
<author>Xiangyang Wang</author>
<author>Yanqiu Lu</author>
<author>Yingxin Zhao</author>
<author>Shunlong Gong</author>
<author>Bai Li</author>
<title>Organisational unlearning, organisational flexibility and innovation capability: an empirical study of SMEs in China.</title>
<pages>132-155</pages>
<year>2013</year>
<volume>61</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2013.052178</ee>
<url>db/journals/ijtm/ijtm61.html#WangLZGL13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MolineF02">
<author>Elena Moline</author>
<author>Jose Luis de la Fuente</author>
<title>Innovation management: experience from the perspective of the electric power industry.</title>
<pages>481-488</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2002.003022</ee>
<url>db/journals/ijtm/ijtm23.html#MolineF02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiuCHW05">
<author>Tzu-Hsin Liu</author>
<author>Yee-Yeen Chu</author>
<author>Shih-Chang Hung</author>
<author>Shien-Yang Wu</author>
<title>Technology entrepreneurial styles: a comparison of UMC and TSMC.</title>
<pages>92-115</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006006</ee>
<url>db/journals/ijtm/ijtm29.html#LiuCHW05</url>
</article><article mdate="2017-06-06" key="journals/ijtm/HoTT04">
<author>Pei-Shun Ho</author>
<author>Amy J. C. Trappey</author>
<author orcid="0000-0002-3069-6702">Charles V. Trappey</author>
<title>Data interchange services: use of XML hub approach for the aerospace supply chain.</title>
<pages>227-242</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2004.005063</ee>
<url>db/journals/ijtm/ijtm28.html#HoTT04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SakataFO05">
<author>Ichiro Sakata</author>
<author>Kenzo Fujisue</author>
<author>Hirokazu Okumura</author>
<title>Do R&amp;D and IT tax credits work? Evaluation of the Japanese tax reform.</title>
<pages>277-287</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007334</ee>
<url>db/journals/ijtm/ijtm32.html#SakataFO05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JorgensenK02">
<author>Steffen J&oslash;rgensen</author>
<author>Peter M. Kort</author>
<title>Autonomous and induced learning: an optimal control approach.</title>
<pages>655-674</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003032</ee>
<url>db/journals/ijtm/ijtm23.html#JorgensenK02</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Verdu-JoverMG05">
<author orcid="0000-0002-6201-7196">Antonio J. Verd&uacute;-Jover</author>
<author>Francisco Javier Llor&eacute;ns Montes</author>
<author>V&iacute;ctor Jes&uacute;s Garc&iacute;a-Morales</author>
<title>Flexibility, fit and innovative capacity: an empirical examination.</title>
<pages>131-146</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006348</ee>
<url>db/journals/ijtm/ijtm30.html#Verdu-JoverMG05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SloanHB02">
<author>Terry Sloan</author>
<author>Paul Hyland</author>
<author>Ron Beckett</author>
<title>Learning as a competitive advantage: innovative training in the Australian aerospace industry.</title>
<pages>341-352</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003014</ee>
<url>db/journals/ijtm/ijtm23.html#SloanHB02</url>
</article><article mdate="2017-06-06" key="journals/ijtm/WangA04">
<author orcid="0000-0003-4816-8462">Catherine L. Wang</author>
<author>Pervaiz K. Ahmed</author>
<title>Leveraging knowledge in the innovation and learning process at GKN.</title>
<pages>674-688</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004909</ee>
<url>db/journals/ijtm/ijtm27.html#WangA04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BaldwinS00">
<author>John Baldwin</author>
<author>David Sabourin</author>
<title>Innovative activity in Canadian food processing establishments: the importance of engineering practices.</title>
<pages>511-527</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002877</ee>
<url>db/journals/ijtm/ijtm20.html#BaldwinS00</url>
</article><article mdate="2017-06-06" key="journals/ijtm/LauritzenSC13">
<author>Ghita Dragsdahl Lauritzen</author>
<author orcid="0000-0002-2578-3262">S&oslash;ren Salomo</author>
<author>Anders la Cour</author>
<title>Dynamic boundaries of user communities: exploiting synergies rather than managing dilemmas.</title>
<pages>148-168</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.056896</ee>
<url>db/journals/ijtm/ijtm63.html#LauritzenSC13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ran00">
<author>Bin Ran</author>
<title>Using traffic prediction models for providing predictive traveller information.</title>
<pages>326-339</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2000.002870</ee>
<url>db/journals/ijtm/ijtm20.html#Ran00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Prasanth05">
<author>S. Prasanth</author>
<title>Management of technology in an SME: a case study of Hind High Vacuum Co. Pvt. Ltd.</title>
<pages>73-87</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006819</ee>
<url>db/journals/ijtm/ijtm32.html#Prasanth05</url>
</article><article mdate="2017-06-16" key="journals/ijtm/SalomoST03">
<author orcid="0000-0002-2578-3262">S&oslash;ren Salomo</author>
<author>Fee Steinhoff</author>
<author>Volker Trommsdorff</author>
<title>Customer orientation in innovation projects and new product development success - the moderating effect of product innovativeness.</title>
<pages>442-463</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2003.003417</ee>
<url>db/journals/ijtm/ijtm26.html#SalomoST03</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/Akbulut-BaileyMS12">
<author>Asli Akbulut-Bailey</author>
<author>Jaideep Motwani</author>
<author>Everett M. Smedley</author>
<title>When Lean and Six Sigma converge: a case study of a successful implementation of Lean Six Sigma at an aerospace company.</title>
<pages>18-32</pages>
<year>2012</year>
<volume>57</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2012.043949</ee>
<url>db/journals/ijtm/ijtm57.html#Akbulut-BaileyMS12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Gao06">
<author>Ping Gao</author>
<title>R&amp;D knowledge management in a telecommunications consortium: an actor-network perspective.</title>
<pages>387-401</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.010274</ee>
<url>db/journals/ijtm/ijtm36.html#Gao06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/QueyM04">
<author>Timothy M. Quey</author>
<author>Naresh K. Malhotra</author>
<title>Technology transformation and purposed play: model development and implications for high tech product development.</title>
<pages>62-87</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.005053</ee>
<url>db/journals/ijtm/ijtm28.html#QueyM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Motohashi07">
<author>Kazuyuki Motohashi</author>
<title>The changing autarky pharmaceutical R&amp;D process: causes and consequences of growing R&amp;D collaboration in Japanese firms.</title>
<pages>33-48</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013439</ee>
<url>db/journals/ijtm/ijtm39.html#Motohashi07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChengCSL09">
<author>Bor-Wen Cheng</author>
<author>Wen-Hong Chiu</author>
<author>Maw-Liann Shyu</author>
<author>Chih-Ming Luo</author>
<title>Implementation Methodology of Evidence-Based Medicine based on technological diffusion approach: a case of system establishment within the hospital industry.</title>
<pages>37-56</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024113</ee>
<url>db/journals/ijtm/ijtm47.html#ChengCSL09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WongTP02">
<author>Alfred Shiu-ho Wong</author>
<author>Dean Tjosvold</author>
<author>Zhang Pengzhu</author>
<title>Commitment and conflict management for relational marketing in China.</title>
<pages>88-105</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2002.003046</ee>
<url>db/journals/ijtm/ijtm24.html#WongTP02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MendesL02">
<author>Philip Mendes</author>
<author>Shantha Liyanage</author>
<title>Managing sponsored research rewards to industry and universities.</title>
<pages>206-218</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003052</ee>
<url>db/journals/ijtm/ijtm24.html#MendesL02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LeedeLA02">
<author>Jan de Leede</author>
<author>Jan C. Looise</author>
<author>Ben C. M. Alders</author>
<title>Innovation, improvement and operations: an exploration of the management of alignment.</title>
<pages>353-368</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003015</ee>
<url>db/journals/ijtm/ijtm23.html#LeedeLA02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lefebvre13">
<author>Philippe Lefebvre</author>
<title>Organising deliberate innovation in knowledge clusters: from accidental brokering to purposeful brokering processes.</title>
<pages>212-243</pages>
<year>2013</year>
<volume>63</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.056899</ee>
<url>db/journals/ijtm/ijtm63.html#Lefebvre13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KimA06">
<author>Hong Kim</author>
<author>Michael D. Ames</author>
<title>Business incubators as economic development tools: rethinking models based on the Korea experience.</title>
<pages>1-24</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2006.008189</ee>
<url>db/journals/ijtm/ijtm33.html#KimA06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim07">
<author>Junmo Kim</author>
<title>Will technology fusion induce the paradigm change of university education?</title>
<pages>220-234</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2007.012711</ee>
<url>db/journals/ijtm/ijtm38.html#Kim07</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Ramirez05">
<author orcid="0000-0002-2479-3266">Jacobo Ramirez</author>
<title>Neo-contingency analysis of recruitment and selection: an Anglo-French study of high-tech and mid-tech vs. low-tech firms.</title>
<pages>288-316</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006636</ee>
<url>db/journals/ijtm/ijtm31.html#Ramirez05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kondou03">
<author>Shuji Kondou</author>
<title>Striving for Kakushin (continuous innovation) for the 21st century.</title>
<pages>517-530</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003117</ee>
<url>db/journals/ijtm/ijtm25.html#Kondou03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MorelG05">
<author>Laure Morel</author>
<author>Claudine Guidat</author>
<title>Innovation in engineering education: a French sample of design and continuous updating of an engineering school to industrial needs.</title>
<pages>57-72</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006818</ee>
<url>db/journals/ijtm/ijtm32.html#MorelG05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JohnsonJ04">
<author>William H. A. Johnson</author>
<author>David A. Johnston</author>
<title>Organisational knowledge creating processes and the performance of university-industry collaborative R&amp;D projects.</title>
<pages>93-114</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.003883</ee>
<url>db/journals/ijtm/ijtm27.html#JohnsonJ04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BowonderM00a">
<author>B. Bowonder</author>
<author>T. Miyake</author>
<title>Technology strategy of Toshiba Corporation: a knowledge evolution perspective.</title>
<pages>864-895</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002849</ee>
<url>db/journals/ijtm/ijtm19.html#BowonderM00a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SigurdsonC01">
<author>Jon Sigurdson</author>
<author>Alfred Li-Ping Cheng</author>
<title>New technological links between national innovation systems and corporations.</title>
<pages>417-434</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002971</ee>
<url>db/journals/ijtm/ijtm22.html#SigurdsonC01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Tseng09">
<author>Chun-Yao Tseng</author>
<title>Technology development and knowledge spillover in Africa: evidence using patent and citation data.</title>
<pages>50-61</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021519</ee>
<url>db/journals/ijtm/ijtm45.html#Tseng09</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SpaethSK10">
<author orcid="0000-0003-1029-5263">Sebastian Spaeth</author>
<author>Matthias Stuermer</author>
<author>Georg von Krogh</author>
<title>Enabling knowledge creation through outsiders: towards a push model of open innovation.</title>
<pages>411-431</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035983</ee>
<url>db/journals/ijtm/ijtm52.html#SpaethSK10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lin09">
<author>Liang-Hung Lin</author>
<title>Mergers and acquisitions, alliances and technology development: an empirical study of the global auto industry.</title>
<pages>295-307</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2009.024950</ee>
<url>db/journals/ijtm/ijtm48.html#Lin09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ItayaN11">
<author>Kazuhiko Itaya</author>
<author>Kiyoshi Niwa</author>
<title>Trial implementation of a highly autonomous small-team-type R&amp;D management model in a Japanese electronics company.</title>
<pages>273-288</pages>
<year>2011</year>
<volume>53</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.038594</ee>
<url>db/journals/ijtm/ijtm53.html#ItayaN11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Martinez-FernandezL04">
<author>Cristina Martinez-Fernandez</author>
<author>Kim Leevers</author>
<title>Knowledge transfer and industry innovation: the discovery of nanotechnology by South-West Sydney organisations.</title>
<pages>560-581</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005309</ee>
<url>db/journals/ijtm/ijtm28.html#Martinez-FernandezL04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/RuiYHW08">
<author>Mingjie Rui</author>
<author>Jie Yang</author>
<author>Joe Hutchinson</author>
<author>Jinjun Wang</author>
<title>Managing knowledge for new product performance in the high technology industry.</title>
<pages>96-108</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015986</ee>
<url>db/journals/ijtm/ijtm41.html#RuiYHW08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/StephanAH00">
<author>Paula E. Stephan</author>
<author>David Audretsch</author>
<author>Richard Hawkins</author>
<title>The knowledge production function: lessons from biotechnology.</title>
<pages>165-178</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002810</ee>
<url>db/journals/ijtm/ijtm19.html#StephanAH00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HosalkarB00">
<author>Ashish Hosalkar</author>
<author>B. Bowonder</author>
<title>Software development management: critical success factors.</title>
<pages>760-772</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002844</ee>
<url>db/journals/ijtm/ijtm19.html#HosalkarB00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/TuijlK00">
<author>Harrie F. J. M. van Tuijl</author>
<author>Ton. H. van de Kraats</author>
<title>Value people, the missing link in creating high performance organisations.</title>
<pages>559-570</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>6</number>
<ee>https://doi.org/10.1504/IJTM.2000.002840</ee>
<url>db/journals/ijtm/ijtm19.html#TuijlK00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Park01">
<author>Seung-Rok Park</author>
<title>A review of total factor productivity studies in Korea and a discussion of limits to national and corporate technology strategies.</title>
<pages>524-538</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002976</ee>
<url>db/journals/ijtm/ijtm22.html#Park01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kahraman02">
<author>Cengiz Kahraman</author>
<title>An application of fuzzy linear regression to the information technology in Turkey.</title>
<pages>330-339</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003059</ee>
<url>db/journals/ijtm/ijtm24.html#Kahraman02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BaierlAG16">
<author>Ronny Baierl</author>
<author>Sergey Anokhin</author>
<author>Dietmar Grichnik</author>
<title>Coopetition in corporate venture capital: the relationship between network attributes, corporate innovativeness, and financial performance.</title>
<pages>58-80</pages>
<year>2016</year>
<volume>71</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2016.077978</ee>
<url>db/journals/ijtm/ijtm71.html#BaierlAG16</url>
</article><article mdate="2017-06-14" key="journals/ijtm/LiuSCLK08">
<author>John J. Liu</author>
<author orcid="0000-0003-4441-315X">Stuart C. K. So</author>
<author orcid="0000-0001-9252-1476">King Lun Choy</author>
<author>Henry C. W. Lau</author>
<author>S. K. Kwok</author>
<title>Performance improvement of third-party logistics providers - an integrated approach with a logistics information system.</title>
<pages>226-249</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>3</number>
<ee>https://doi.org/10.1504/IJTM.2008.018105</ee>
<url>db/journals/ijtm/ijtm42.html#LiuSCLK08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Belis-BergouignanLH01">
<author>Marie-Claude Belis-Bergouignan</author>
<author>Yannick Lung</author>
<author>Jean-Alain Heraud</author>
<title>Public foresight exercises at an intermediate level: the French national programmes and the experience of Bordeaux.</title>
<pages>726-738</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002946</ee>
<url>db/journals/ijtm/ijtm21.html#Belis-BergouignanLH01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CormierM04">
<author>Denis Cormier</author>
<author>Michel Magnan</author>
<title>The impact of the web on information and communication modes: the case of corporate environmental disclosure.</title>
<pages>393-416</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2004.004278</ee>
<url>db/journals/ijtm/ijtm27.html#CormierM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YangLY06">
<author>Jie Yang</author>
<author>Fujun Lai</author>
<author>Liming Yu</author>
<title>Harnessing value in knowledge acquisition and dissemination: strategic sourcing in product development.</title>
<pages>299-317</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008317</ee>
<url>db/journals/ijtm/ijtm33.html#YangLY06</url>
</article><article mdate="2017-06-14" key="journals/ijtm/HagedoornRK08">
<author>John Hagedoorn</author>
<author orcid="0000-0001-5475-2222">Nadine Roijakkers</author>
<author>Hans Van Kranenburg</author>
<title>The formation of subsequent inter-firm R&amp;D partnerships between large pharmaceutical companies and small, entrepreneurial biotechnology firms - how important is inter-organisational trust?</title>
<pages>81-92</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020699</ee>
<url>db/journals/ijtm/ijtm44.html#HagedoornRK08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GaoYL10">
<author>Xudong Gao</author>
<author>Jiang Yu</author>
<author>Mingfang Li</author>
<title>Developing effective strategies to address complex challenges: evidence from local high-tech firms in China.</title>
<pages>319-341</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033808</ee>
<url>db/journals/ijtm/ijtm51.html#GaoYL10</url>
</article><article mdate="2018-01-12" key="journals/ijtm/BiedenbachMV18">
<author>Thomas Biedenbach</author>
<author>Agneta Marell</author>
<author>Vladimir Vanyushyn</author>
<title>Industry-university collaboration and absorptive capacity: an empirical study in a Swedish context.</title>
<pages>81-103</pages>
<year>2018</year>
<volume>76</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2018.10009599</ee>
<url>db/journals/ijtm/ijtm76.html#BiedenbachMV18</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/Mansfield00">
<author>Edwin Mansfield</author>
<title>Intellectual property protection, direct investment and technology transfer: Germany, Japan and the USA.</title>
<pages>3-21</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002805</ee>
<url>db/journals/ijtm/ijtm19.html#Mansfield00</url>
</article><article mdate="2017-06-06" key="journals/ijtm/RevillaAS06">
<author>Elena Revilla</author>
<author>Juan Acosta</author>
<author orcid="0000-0003-0143-804X">Joseph Sarkis</author>
<title>An empirical assessment of a learning and Knowledge Management typology for Research Joint Ventures.</title>
<pages>329-348</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009241</ee>
<url>db/journals/ijtm/ijtm35.html#RevillaAS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Antony07">
<author>Jiju Antony</author>
<title>Six Sigma: a strategy for supporting innovation in pursuit of business excellence - invited paper.</title>
<pages>8-12</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.011800</ee>
<url>db/journals/ijtm/ijtm37.html#Antony07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KimLA05">
<author>Hong Kim</author>
<author>Yun-Jae Lee</author>
<author>Michael D. Ames</author>
<title>Promoting business incubation for improved competitiveness of small and medium industries in Korea.</title>
<pages>350-370</pages>
<year>2005</year>
<volume>32</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.007338</ee>
<url>db/journals/ijtm/ijtm32.html#KimLA05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cattani08">
<author>Gino Cattani</author>
<title>Leveraging in-house R&amp;D competencies for a new market: how Corning pioneered fibre optics.</title>
<pages>28-52</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020697</ee>
<url>db/journals/ijtm/ijtm44.html#Cattani08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Loveridge01">
<author>Denis Loveridge</author>
<title>Foresight - seven paradoxes.</title>
<pages>781-791</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002950</ee>
<url>db/journals/ijtm/ijtm21.html#Loveridge01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SantaBFSH11">
<author>Ricardo Santa</author>
<author>Phil Bretherton</author>
<author>Mario Ferrer</author>
<author>Claudine Soosay</author>
<author>Paul Hyland</author>
<title>The role of cross-functional teams on the alignment between technology innovation effectiveness and operational effectiveness.</title>
<pages>122-137</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041683</ee>
<url>db/journals/ijtm/ijtm55.html#SantaBFSH11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sohal01">
<author>Amrik S. Sohal</author>
<title>From privatisation to commercialisation: a case study from the Australian aerospace industry.</title>
<pages>513-522</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002930</ee>
<url>db/journals/ijtm/ijtm21.html#Sohal01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/SharifT14">
<author orcid="0000-0002-2496-9938">Naubahar Sharif</author>
<author>Hei-Hang Hayes Tang</author>
<title>New trends in innovation strategy at Chinese universities in Hong Kong and Shenzhen.</title>
<pages>300-318</pages>
<year>2014</year>
<volume>65</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.060951</ee>
<url>db/journals/ijtm/ijtm65.html#SharifT14</url>
</article><article mdate="2017-06-06" key="journals/ijtm/HicksM09">
<author orcid="0000-0001-8628-6772">Christian Hicks</author>
<author>Tom McGovern</author>
<title>Product life cycle management in engineer-to-order industries.</title>
<pages>153-167</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024913</ee>
<url>db/journals/ijtm/ijtm48.html#HicksM09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/IvoryA09">
<author>Chris Ivory</author>
<author>Neil Alderman</author>
<title>Who is the customer? Maintaining a customer orientation in long-term service-focused projects.</title>
<pages>140-152</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024912</ee>
<url>db/journals/ijtm/ijtm48.html#IvoryA09</url>
</article><article mdate="2017-06-14" key="journals/ijtm/WatanabeL08">
<author orcid="0000-0002-6676-5685">Chihiro Watanabe</author>
<author>Shanyu Lei</author>
<title>The role of techno-countervailing power in inducing the development and dissemination of new functionality - an analysis of Canon printers and Japan's personal computers.</title>
<pages>205-233</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.020705</ee>
<url>db/journals/ijtm/ijtm44.html#WatanabeL08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kinder10">
<author>Tony Kinder</author>
<title>Social innovation in services: technologically assisted new care models for people with dementia and their usability.</title>
<pages>106-120</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033131</ee>
<url>db/journals/ijtm/ijtm51.html#Kinder10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LevyP08">
<author>Margi Levy</author>
<author>Philip Powell</author>
<title>Small firm transformation through IS.</title>
<pages>123-141</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019411</ee>
<url>db/journals/ijtm/ijtm43.html#LevyP08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ReadmanB07">
<author>Jeff Readman</author>
<author>John Bessant</author>
<title>What challenges lie ahead for improvement programmes in the UK? Lessons from the CINet Continuous Improvement Survey 2003.</title>
<pages>290-305</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2007.012264</ee>
<url>db/journals/ijtm/ijtm37.html#ReadmanB07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Abetti01">
<author>Pier A. Abetti</author>
<title>General Electric after Jack Welch: succession and success?</title>
<pages>656-669</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002983</ee>
<url>db/journals/ijtm/ijtm22.html#Abetti01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HuangC13">
<author>Xueli Huang</author>
<author>Renyong Chi</author>
<title>Innovation in China's high-tech industries: barriers and their impact on innovation performance.</title>
<pages>35-55</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2013.053044</ee>
<url>db/journals/ijtm/ijtm62.html#HuangC13</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ConnTB09">
<author>Steffen Conn</author>
<author>Marko Torkkeli</author>
<author>Iain Bitran</author>
<title>Assessing the management of innovation with software tools: an application of innovationEnterprizer.</title>
<pages>323-336</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022656</ee>
<url>db/journals/ijtm/ijtm45.html#ConnTB09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HerikV00">
<author>Kees Wim van den Herik</author>
<author>Gert-Jan de Vreede</author>
<title>Experiences with facilitating policy meetings with group support systems.</title>
<pages>246-268</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002819</ee>
<url>db/journals/ijtm/ijtm19.html#HerikV00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SungG05">
<author>Tae Kyung Sung</author>
<author>David V. Gibson</author>
<title>Knowledge and technology transfer grid: empirical assessment.</title>
<pages>216-230</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.005997</ee>
<url>db/journals/ijtm/ijtm29.html#SungG05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Jones02">
<author>Neil Jones</author>
<title>Developing and assessing radical technological changes: lessons from the PBX industry.</title>
<pages>287-303</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2002.003011</ee>
<url>db/journals/ijtm/ijtm23.html#Jones02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bramorski01">
<author>Tom Bramorski</author>
<title>Privatisation and technology transfer in Central and Eastern Europe.</title>
<pages>637-652</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002940</ee>
<url>db/journals/ijtm/ijtm21.html#Bramorski01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Drejer02">
<author>Anders Drejer</author>
<title>Integrating product and technology development.</title>
<pages>124-142</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.003048</ee>
<url>db/journals/ijtm/ijtm24.html#Drejer02</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Becker08">
<author orcid="0000-0002-6686-2039">Karen Becker</author>
<title>Unlearning as a driver of sustainable change and innovation: three Australian case studies.</title>
<pages>89-106</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.018062</ee>
<url>db/journals/ijtm/ijtm42.html#Becker08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HaytonZ05">
<author>James C. Hayton</author>
<author>Shaker A. Zahra</author>
<title>Venture team human capital and absorptive capacity in high technology new ventures.</title>
<pages>256-274</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2005.006634</ee>
<url>db/journals/ijtm/ijtm31.html#HaytonZ05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Neufville00">
<author>Richard de Neufville</author>
<title>Dynamic strategic planning for technology policy.</title>
<pages>225-245</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002825</ee>
<url>db/journals/ijtm/ijtm19.html#Neufville00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LopezPO06">
<author>Susana P&eacute;rez L&oacute;pez</author>
<author>Jos&eacute; Manuel Montes Pe&oacute;n</author>
<author>Camilo Jos&eacute; V&aacute;zquez Ord&aacute;s</author>
<title>The organisational context of learning: an empirical analysis.</title>
<pages>196-223</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009235</ee>
<url>db/journals/ijtm/ijtm35.html#LopezPO06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McGuireFO10">
<author>Steve McGuire</author>
<author>Felicia Fai</author>
<author>Toshiya Ozaki</author>
<title>Path dependence as a political construct, the disruptive influence of technology and Japanese aerospace.</title>
<pages>367-379</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.032682</ee>
<url>db/journals/ijtm/ijtm50.html#McGuireFO10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bond00">
<author>Peter Bond</author>
<title>Knowledge and knowing as structure: a new perspective on the management of technology for the knowledge based economy.</title>
<pages>528-544</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>5/6/7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002879</ee>
<url>db/journals/ijtm/ijtm20.html#Bond00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Lichtenthaler10">
<author>Ulrich Lichtenthaler</author>
<title>Intellectual property and open innovation: an empirical analysis.</title>
<pages>372-391</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035981</ee>
<url>db/journals/ijtm/ijtm52.html#Lichtenthaler10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/VisloskyF00">
<author>D. M. Vislosky</author>
<author>Paul S. Fischbeck</author>
<title>A mental model approach applied to R&amp;D decision-making.</title>
<pages>453-471</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002831</ee>
<url>db/journals/ijtm/ijtm19.html#VisloskyF00</url>
</article><article mdate="2017-08-09" key="journals/ijtm/DalleBMM17">
<author>Jean-Michel Dalle</author>
<author>Matthijs den Besten</author>
<author>Catalina Mart&iacute;nez</author>
<author>St&eacute;phane Maraut</author>
<title>Microwork platforms as enablers to new ecosystems and business models: the challenge of managing difficult tasks.</title>
<pages>55-72</pages>
<year>2017</year>
<volume>75</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2017.10006152</ee>
<url>db/journals/ijtm/ijtm75.html#DalleBMM17</url>
</article>
<article mdate="2017-05-11" key="journals/ijtm/PantanoC14">
<author>Eleonora Pantano</author>
<author>Vincenzo Corvello</author>
<title>Tourists' acceptance of advanced technology-based innovations for promoting arts and culture.</title>
<pages>3-16</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2014.059232</ee>
<url>db/journals/ijtm/ijtm64.html#PantanoC14</url>
</article><article mdate="2017-06-14" key="journals/ijtm/NairJS10">
<author>Anand Nair</author>
<author>L. Allison Jones-Farmer</author>
<author orcid="0000-0002-1725-6024">Paul Swamidass</author>
<title>Modelling the reciprocal and longitudinal effect of return on sales and R&amp;D intensity during economic cycles.</title>
<pages>2-24</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029408</ee>
<url>db/journals/ijtm/ijtm49.html#NairJS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Howes00">
<author>Rodney Howes</author>
<title>Making governance mechanisms effective in a coordinated industry: the case of construction in the United Kingdom.</title>
<pages>194-213</pages>
<year>2000</year>
<volume>20</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2000.002856</ee>
<url>db/journals/ijtm/ijtm20.html#Howes00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Biloslavo08">
<author>Roberto Biloslavo</author>
<title>Management of dualities as a critical dimension of a knowledge-era organisation.</title>
<pages>4-17</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019403</ee>
<url>db/journals/ijtm/ijtm43.html#Biloslavo08</url>
</article><article mdate="2017-06-06" key="journals/ijtm/PratoN13">
<author>Giuditta De Prato</author>
<author orcid="0000-0001-5893-4779">Daniel Nepelski</author>
<title>A framework for assessing innovation collaboration partners and its application to BRICs.</title>
<pages>102-127</pages>
<year>2013</year>
<volume>62</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2013.055164</ee>
<url>db/journals/ijtm/ijtm62.html#PratoN13</url>
</article><article mdate="2017-06-14" key="journals/ijtm/JinWV14">
<author>Jun Jin</author>
<author>Yuandi Wang</author>
<author orcid="0000-0002-5710-4738">Wim Vanhaverbeke</author>
<title>Patterns of R&amp;D internationalisation in developing countries: China as a case.</title>
<pages>276-302</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.059947</ee>
<url>db/journals/ijtm/ijtm64.html#JinWV14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LammingHHKSTLMN02">
<author>Richard Lamming</author>
<author>David Hajee</author>
<author>Mike Horrill</author>
<author>Graham Kay</author>
<author>John Staniforth</author>
<author>Mike Tobyn</author>
<author>Ming Li</author>
<author>Stewart MacGregor</author>
<author>Linda Newnes</author>
<title>Lessons from co-development of a Single Vessel Processor: methodologies for managing innovation in customer-supplier networks.</title>
<pages>21-39</pages>
<year>2002</year>
<volume>23</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2002.002996</ee>
<url>db/journals/ijtm/ijtm23.html#LammingHHKSTLMN02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bao01">
<author>Zhuojun Bao</author>
<title>Computer-supported quality safeguards in the product development process.</title>
<pages>329-339</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002916</ee>
<url>db/journals/ijtm/ijtm21.html#Bao01</url>
</article><article mdate="2017-06-06" key="journals/ijtm/TrappeyTCK09">
<author orcid="0000-0002-3069-6702">Charles V. Trappey</author>
<author>Amy J. C. Trappey</author>
<author>Tzu-An Chiang</author>
<author>Jen-Yau Kuo</author>
<title>A strategic product portfolio management methodology considering R&amp;D resource constraints for engineering-to-order industries.</title>
<pages>258-276</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>2</number>
<ee>https://doi.org/10.1504/IJTM.2009.024919</ee>
<url>db/journals/ijtm/ijtm48.html#TrappeyTCK09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Shibata12">
<author>Tomoatsu Shibata</author>
<title>Managing parallel development towards technological transitions.</title>
<pages>281-301</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.049427</ee>
<url>db/journals/ijtm/ijtm60.html#Shibata12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GregoryS02">
<author>Charles Gregory</author>
<author>Amrik S. Sohal</author>
<title>Global product development in the ceramic tiles industry.</title>
<pages>17-26</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2002.003041</ee>
<url>db/journals/ijtm/ijtm24.html#GregoryS02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/WadhwaR00">
<author>Subhash Wadhwa</author>
<author>K. Srinivasa Rao</author>
<title>Flexibility: an emerging meta-competence for managing high technology.</title>
<pages>820-845</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2000.002851</ee>
<url>db/journals/ijtm/ijtm19.html#WadhwaR00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YehC11">
<author>Quey-Jen Yeh</author>
<author>Arthur Jung-Ting Chang</author>
<title>Technology-push and need-pull roles in information system security diffusion.</title>
<pages>321-343</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2011.039318</ee>
<url>db/journals/ijtm/ijtm54.html#YehC11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Suarez-Villa02">
<author>Luis Suarez-Villa</author>
<title>High technology clustering in the polycentric metropolis: a view from the Los Angeles metropolitan region.</title>
<pages>818-842</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003084</ee>
<url>db/journals/ijtm/ijtm24.html#Suarez-Villa02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CanoC06">
<author>Carmen Perez Cano</author>
<author>Pilar Quevedo Cano</author>
<title>Human resources management and its impact on innovation performance in companies.</title>
<pages>11-28</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009227</ee>
<url>db/journals/ijtm/ijtm35.html#CanoC06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CaffynG03">
<author>Sarah Caffyn</author>
<author>Andrew Grantham</author>
<title>Fostering Continuous Improvement within new product development processes.</title>
<pages>843-856</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003393</ee>
<url>db/journals/ijtm/ijtm26.html#CaffynG03</url>
</article><article mdate="2017-06-06" key="journals/ijtm/StillHRR14">
<author>Kaisa Still</author>
<author orcid="0000-0003-2707-108X">Jukka Huhtam&auml;ki</author>
<author>Martha G. Russell</author>
<author>Neil Rubens</author>
<title>Insights for orchestrating innovation ecosystems: the case of EIT ICT Labs and data-driven network visualisations.</title>
<pages>243-265</pages>
<year>2014</year>
<volume>66</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2014.064606</ee>
<url>db/journals/ijtm/ijtm66.html#StillHRR14</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FellerPS09">
<author>Jan Feller</author>
<author>Annaleena Parhankangas</author>
<author>Riitta Smeds</author>
<title>Inter-partner relationship, knowledge transfer mechanisms, and improved capability to manage R&amp;D alliances: evidence from the telecommunications industry.</title>
<pages>346-370</pages>
<year>2009</year>
<volume>47</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2009.024434</ee>
<url>db/journals/ijtm/ijtm47.html#FellerPS09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SchuringHKRB03">
<author>Roel W. Schuring</author>
<author>Clementine Harbers</author>
<author>Martine Kruiswijk</author>
<author>Sander Rijnders</author>
<author>Harry Boer</author>
<title>The problem of using hierarchy for implementing organisational innovation.</title>
<pages>903-917</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003416</ee>
<url>db/journals/ijtm/ijtm26.html#SchuringHKRB03</url>
</article><article mdate="2017-09-16" key="journals/ijtm/ColesHD03">
<author>Anne-Marie Coles</author>
<author orcid="0000-0002-9586-7453">Lisa Harris</author>
<author>Keith Dickson</author>
<title>Testing goodwill: conflict and cooperation in new product development networks.</title>
<pages>51-64</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003089</ee>
<url>db/journals/ijtm/ijtm25.html#ColesHD03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JuJS08">
<author>Teresa L. Ju</author>
<author>Patricia H. Ju</author>
<author>Szu-Yuan Sun</author>
<title>A strategic examination of Radio Frequency Identification in Supply Chain Management.</title>
<pages>349-362</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.020555</ee>
<url>db/journals/ijtm/ijtm43.html#JuJS08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YangTY05">
<author>Tai-Yih Yang</author>
<author>Lee-Ing Tong</author>
<author>Benjamin J. C. Yuan</author>
<title>An innovative model of multi-project wafer service in the foundry industry.</title>
<pages>172-187</pages>
<year>2005</year>
<volume>30</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006349</ee>
<url>db/journals/ijtm/ijtm30.html#YangTY05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Poti01">
<author>Bianca Poti</author>
<title>Appropriation, tacit knowledge and hybrid social regimes in biotechnology in Europe.</title>
<pages>741-761</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2001.002989</ee>
<url>db/journals/ijtm/ijtm22.html#Poti01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/JonasR17">
<author>Julia Jonas</author>
<author>Angela Roth</author>
<title>Stakeholder integration in service innovation - an exploratory case study in the healthcare industry.</title>
<pages>91-113</pages>
<year>2017</year>
<volume>73</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2017.10003242</ee>
<url>db/journals/ijtm/ijtm73.html#JonasR17</url>
</article><article mdate="2017-05-11" key="journals/ijtm/DingM01">
<author>Junzheng Ding</author>
<author>Jaideep Motwani</author>
<title>Transfer of technology: a critical element in China's privatisation process.</title>
<pages>453-462</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002925</ee>
<url>db/journals/ijtm/ijtm21.html#DingM01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bengtsson08">
<author>Lars Bengtsson</author>
<title>Outsourcing manufacturing and its effect on engineering firm performance.</title>
<pages>373-390</pages>
<year>2008</year>
<volume>44</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2008.021045</ee>
<url>db/journals/ijtm/ijtm44.html#Bengtsson08</url>
</article><article mdate="2017-07-20" key="journals/ijtm/GalvinR08">
<author>Peter Galvin</author>
<author orcid="0000-0002-3923-4424">John L. Rice</author>
<title>A case study of knowledge protection and diffusion for innovation: managing knowledge in the mobile telephone industry.</title>
<pages>426-438</pages>
<year>2008</year>
<volume>42</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2008.019384</ee>
<url>db/journals/ijtm/ijtm42.html#GalvinR08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LiA01">
<author>Haiyang Li</author>
<author>Kwaku Atuahene-Gima</author>
<title>The impact of interaction between R&amp;D and marketing on new product performance: an empirical analysis of Chinese high technology firms.</title>
<pages>61-75</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2001.002902</ee>
<url>db/journals/ijtm/ijtm21.html#LiA01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HalemaneD03">
<author>Murthy D. Halemane</author>
<author>Boudewijn van Dongen</author>
<title>Strategic innovation management of change in the pharmaceutical industry.</title>
<pages>314-333</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003103</ee>
<url>db/journals/ijtm/ijtm25.html#HalemaneD03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AhmedMA09">
<author>Allam Ahmed</author>
<author>Abdelrazig E. Mohamed</author>
<author>Adam E. Ahmed</author>
<title>Inconsistency of food security information in Sudan.</title>
<pages>215-225</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2009.021529</ee>
<url>db/journals/ijtm/ijtm45.html#AhmedMA09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChenW05">
<author>Chung-Jen Chen</author>
<author>Wann-Yih Wu</author>
<title>A comparative study of the alliance experiences between US and Taiwanese firms.</title>
<pages>136-151</pages>
<year>2005</year>
<volume>29</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006008</ee>
<url>db/journals/ijtm/ijtm29.html#ChenW05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Abetti07">
<author>Pier A. Abetti</author>
<title>The globalisation of an Italian family company: Zobele Chemical Industries (1919-2006).</title>
<pages>330-348</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.015756</ee>
<url>db/journals/ijtm/ijtm40.html#Abetti07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Weiss04">
<author>Enno Weiss</author>
<title>Functional market concept for planning technological innovations.</title>
<pages>320-330</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003958</ee>
<url>db/journals/ijtm/ijtm27.html#Weiss04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CarlucciMS04">
<author>Daniela Carlucci</author>
<author>Bernard Marr</author>
<author>Giovanni Schiuma</author>
<title>The knowledge value chain: how intellectual capital impacts on business performance.</title>
<pages>575-590</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004903</ee>
<url>db/journals/ijtm/ijtm27.html#CarlucciMS04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HalilemBCLA12">
<author>Norrin Halilem</author>
<author>Catherine Bertrand</author>
<author>Jean Samuel Cloutier</author>
<author>R&eacute;jean Landry</author>
<author>Nabil Amara</author>
<title>The knowledge value chain as an SME innovation policy instrument framework: an analytical exploration of SMEs public innovation support in OECD countries.</title>
<pages>236-260</pages>
<year>2012</year>
<volume>58</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2012.046617</ee>
<url>db/journals/ijtm/ijtm58.html#HalilemBCLA12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MazzarolRV10">
<author>Tim Mazzarol</author>
<author>Sophie Reboud</author>
<author>Thierry Volery</author>
<title>The influence of size, age and growth on innovation management in small firms.</title>
<pages>98-117</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2010.035857</ee>
<url>db/journals/ijtm/ijtm52.html#MazzarolRV10</url>
</article><article mdate="2017-06-14" key="journals/ijtm/Golubev03">
<author orcid="0000-0003-2929-1932">Konstantin M. Golubev</author>
<title>Adaptive learning with e-knowledge systems.</title>
<pages>553-559</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003120</ee>
<url>db/journals/ijtm/ijtm25.html#Golubev03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Vera-Cruz06">
<author>Alexandre O. Vera-Cruz</author>
<title>Firms' culture and technological behaviour: the case of two breweries in Mexico.</title>
<pages>148-165</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009966</ee>
<url>db/journals/ijtm/ijtm36.html#Vera-Cruz06</url>
</article><article mdate="2017-06-06" key="journals/ijtm/CohnCHW00">
<author>Ruth Cohn</author>
<author orcid="0000-0002-6356-0238">Kathleen M. Carley</author>
<author>John R. Harrald</author>
<author>William A. Wallace</author>
<title>Emotions in crisis management: an analysis of the organisational response of two natural disasters.</title>
<pages>313-335</pages>
<year>2000</year>
<volume>19</volume>
<journal>IJTM</journal>
<number>3/4/5</number>
<ee>https://doi.org/10.1504/IJTM.2000.002817</ee>
<url>db/journals/ijtm/ijtm19.html#CohnCHW00</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CamposAS08">
<author>Eduardo Bueno Campos</author>
<author>Jose Miguel Rodriguez Anton</author>
<author>Ma Paz Salmador S&aacute;nchez</author>
<title>Knowledge creation as a dynamic capability: implications for innovation management and organisational design.</title>
<pages>155-168</pages>
<year>2008</year>
<volume>41</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2008.015989</ee>
<url>db/journals/ijtm/ijtm41.html#CamposAS08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/CoughlanHDD01">
<author>Paul Coughlan</author>
<author>Andy Harbison</author>
<author>Tony Dromgoole</author>
<author>Dermot Duff</author>
<title>Continuous improvement through collaborative action learning.</title>
<pages>285-302</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002965</ee>
<url>db/journals/ijtm/ijtm22.html#CoughlanHDD01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PiachaudM04">
<author>Bianca Piachaud</author>
<author>Elisa Muresan</author>
<title>A study of shareholder reaction to technology motivated joint ventures and strategic alliances: strategic and financial perspectives.</title>
<pages>343-356</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2004.004271</ee>
<url>db/journals/ijtm/ijtm27.html#PiachaudM04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YamLST03">
<author>Richard C. M. Yam</author>
<author>William Lo</author>
<author>H. Y. Sun</author>
<author>Esther P. Y. Tang</author>
<title>Enhancement of global competitiveness for Hong Kong/China manufacturing industries through i-agile virtual enterprising.</title>
<pages>88-102</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2003.003146</ee>
<url>db/journals/ijtm/ijtm26.html#YamLST03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GaoX01">
<author>Shi-Ji Gao</author>
<author>Gang Xu</author>
<title>Learning, combinative capabilities and innovation in developing countries: the case of video compact disc (VCD) and agricultural vehicles in China.</title>
<pages>568-582</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002978</ee>
<url>db/journals/ijtm/ijtm22.html#GaoX01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/IshiiI03">
<author>Kazuyoshi Ishii</author>
<author>Takaya Ichimura</author>
<title>A method of users' needs assessment.</title>
<pages>579-587</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003123</ee>
<url>db/journals/ijtm/ijtm25.html#IshiiI03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/GuillouL10">
<author>Sarah Guillou</author>
<author>Christian Longhi</author>
<title>Defense financing of private R&amp;D: evidences from French firms.</title>
<pages>99-118</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.031920</ee>
<url>db/journals/ijtm/ijtm50.html#GuillouL10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/HalleyNBRB10">
<author>Alain Halley</author>
<author>Jean Nollet</author>
<author>Martin Beaulieu</author>
<author>Jacques Roy</author>
<author>Yvon Bigras</author>
<title>The impact of the supply chain on core competencies and knowledge management: directions for future research.</title>
<pages>297-313</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2010.030160</ee>
<url>db/journals/ijtm/ijtm49.html#HalleyNBRB10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BorzacchielloC12">
<author>Maria Teresa Borzacchiello</author>
<author>Max Craglia</author>
<title>The impact on innovation of open access to spatial environmental information: a research strategy.</title>
<pages>114-129</pages>
<year>2012</year>
<volume>60</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2012.049109</ee>
<url>db/journals/ijtm/ijtm60.html#BorzacchielloC12</url>
</article><article mdate="2017-05-11" key="journals/ijtm/McLoughlinP10">
<author>Ian McLoughlin</author>
<author>David Preece</author>
<title>'Last orders' at the rural 'cyber pub': a failure of 'social learning'?</title>
<pages>75-91</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033129</ee>
<url>db/journals/ijtm/ijtm51.html#McLoughlinP10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SuCS07">
<author>Chao-Ton Su</author>
<author>Yung-Hsin Chen</author>
<author>David Yung-Jye Sha</author>
<title>Managing product and customer knowledge in innovative new product development.</title>
<pages>105-130</pages>
<year>2007</year>
<volume>39</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.013443</ee>
<url>db/journals/ijtm/ijtm39.html#SuCS07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ForssenH01">
<author>Minna Forssen</author>
<author>P&auml;ivi Haho</author>
<title>Participative development and training for business processes in industry: review of 88 simulation games.</title>
<pages>233-262</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2001.002963</ee>
<url>db/journals/ijtm/ijtm22.html#ForssenH01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/IvarssonA09">
<author>Inge Ivarsson</author>
<author>Claes Goran Alvstam</author>
<title>Learning from foreign TNCs: a study of technology upgrading by local suppliers to AB Volvo in Asia and Latin America.</title>
<pages>56-76</pages>
<year>2009</year>
<volume>48</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2009.024600</ee>
<url>db/journals/ijtm/ijtm48.html#IvarssonA09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SmedsHA03">
<author>Riitta Smeds</author>
<author>P&auml;ivi Haho</author>
<author>Jukka Alvesalo</author>
<title>Bottom-up or top-down? Evolutionary change management in NPD processes.</title>
<pages>887-902</pages>
<year>2003</year>
<volume>26</volume>
<journal>IJTM</journal>
<number>8</number>
<ee>https://doi.org/10.1504/IJTM.2003.003415</ee>
<url>db/journals/ijtm/ijtm26.html#SmedsHA03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hiraoka01">
<author>Leslie S. Hiraoka</author>
<title>Foreign development of China's motor vehicle industry.</title>
<pages>496-512</pages>
<year>2001</year>
<volume>21</volume>
<journal>IJTM</journal>
<number>5/6</number>
<ee>https://doi.org/10.1504/IJTM.2001.002929</ee>
<url>db/journals/ijtm/ijtm21.html#Hiraoka01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/AllisonB06">
<author>Mary Ann Allison</author>
<author>Sheila Browning</author>
<title>Competing in the cauldron of the global economy: tools, processes, case studies, and theory supporting economic development.</title>
<pages>130-143</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.008307</ee>
<url>db/journals/ijtm/ijtm33.html#AllisonB06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/LinL07">
<author>Liang-Hung Lin</author>
<author>Iuan-Yuan Lu</author>
<title>Process management and technological innovation: an empirical study of the information and electronic industry in Taiwan.</title>
<pages>178-192</pages>
<year>2007</year>
<volume>37</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2007.011810</ee>
<url>db/journals/ijtm/ijtm37.html#LinL07</url>
</article><article mdate="2017-06-06" key="journals/ijtm/Hervas-OliverAH11">
<author>Jose Hervas-Oliver</author>
<author orcid="0000-0003-3669-879X">Jos&eacute; Albors-Garrigos</author>
<author>Antonio Hidalgo</author>
<title>Global value chain reconfiguration through external linkages and the development of newcomers: a global story of clusters and innovation.</title>
<pages>82-109</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2011.041681</ee>
<url>db/journals/ijtm/ijtm55.html#Hervas-OliverAH11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Etemad04">
<author>Hamid Etemad</author>
<title>E-commerce: the emergence of a field and its knowledge network.</title>
<pages>776-800</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2004.005783</ee>
<url>db/journals/ijtm/ijtm28.html#Etemad04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BowonderTRR03">
<author>B. Bowonder</author>
<author>Manoj. T. Thomas</author>
<author>Vamshi Mohan Rokkam</author>
<author>Artie Rokkam</author>
<title>The global pharmaceutical industry: changing competitive landscape.</title>
<pages>201-226</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2003.003098</ee>
<url>db/journals/ijtm/ijtm25.html#BowonderTRR03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChangC07a">
<author>Chi-Chang Chang</author>
<author>Chuen-Sheng Cheng</author>
<title>A Bayesian decision analysis with fuzzy interpretability for aging chronic disease.</title>
<pages>176-191</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013533</ee>
<url>db/journals/ijtm/ijtm40.html#ChangC07a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Krucken03">
<author>Georg Kr&uuml;cken</author>
<title>Mission impossible? Institutional barriers to the diffusion of the "third academic mission" at German universities.</title>
<pages>18-33</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003087</ee>
<url>db/journals/ijtm/ijtm25.html#Krucken03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ZeschkyWG14">
<author>Marco Zeschky</author>
<author>Bastian Widenmayer</author>
<author>Oliver Gassmann</author>
<title>Organising for reverse innovation in Western MNCs: the role of frugal product innovation capabilities.</title>
<pages>255-275</pages>
<year>2014</year>
<volume>64</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2014.059948</ee>
<url>db/journals/ijtm/ijtm64.html#ZeschkyWG14</url>
</article><article mdate="2017-06-06" key="journals/ijtm/NiosiZ10">
<author orcid="0000-0001-5195-6828">Jorge Niosi</author>
<author>Majlinda Zhegu</author>
<title>Anchor tenants and regional innovation systems: the aircraft industry.</title>
<pages>263-284</pages>
<year>2010</year>
<volume>50</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.032676</ee>
<url>db/journals/ijtm/ijtm50.html#NiosiZ10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShenF10">
<author>Qunhong Shen</author>
<author>Kaidong Feng</author>
<title>From production capacity to technological capability: an institutional and organisational perspective.</title>
<pages>258-281</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033805</ee>
<url>db/journals/ijtm/ijtm51.html#ShenF10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Konde04">
<author>Victor Konde</author>
<title>Internet development in Zambia: a triple helix of government-university-partners.</title>
<pages>440-451</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>5</number>
<ee>https://doi.org/10.1504/IJTM.2004.004280</ee>
<url>db/journals/ijtm/ijtm27.html#Konde04</url>
</article><article mdate="2017-06-14" key="journals/ijtm/PradhanAMB16">
<author>Rudra P. Pradhan</author>
<author>Mak B. Arvin</author>
<author orcid="0000-0003-0100-3484">Jay Mittal</author>
<author>Sahar Bahmani</author>
<title>Relationships between telecommunications infrastructure, capital formation, and economic growth.</title>
<pages>157-176</pages>
<year>2016</year>
<volume>70</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2016.075158</ee>
<url>db/journals/ijtm/ijtm70.html#PradhanAMB16</url>
</article><article mdate="2017-05-11" key="journals/ijtm/YooK04">
<author>Seung-Hoon Yoo</author>
<author>Seung-Jun Kwak</author>
<title>Information technology and economic development in Korea: a causality study.</title>
<pages>57-67</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2004.003881</ee>
<url>db/journals/ijtm/ijtm27.html#YooK04</url>
</article><article mdate="2017-06-06" key="journals/ijtm/ErrastiZO11">
<author orcid="0000-0002-6872-8140">Nekane Errasti</author>
<author orcid="0000-0001-5967-0488">Noemi Zabaleta</author>
<author>Aitor Oyarbide</author>
<title>A review and conceptualisation of innovation models from the past three decades.</title>
<pages>190-200</pages>
<year>2011</year>
<volume>55</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041946</ee>
<url>db/journals/ijtm/ijtm55.html#ErrastiZO11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Gertsen01">
<author>Frank Gertsen</author>
<title>How continuous improvement evolves as companies gain experience.</title>
<pages>303-326</pages>
<year>2001</year>
<volume>22</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2001.002966</ee>
<url>db/journals/ijtm/ijtm22.html#Gertsen01</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Broberg10">
<author>Ole Broberg</author>
<title>Workspace design: a case study applying participatory design principles of healthy workplaces in an industrial setting.</title>
<pages>39-56</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>1</number>
<ee>https://doi.org/10.1504/IJTM.2010.033127</ee>
<url>db/journals/ijtm/ijtm51.html#Broberg10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Ishihama03">
<author>Masao Ishihama</author>
<title>Training students on the TRIZ method using a patent database.</title>
<pages>568-578</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2003.003122</ee>
<url>db/journals/ijtm/ijtm25.html#Ishihama03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sung10">
<author>Tae Kyung Sung</author>
<title>Government IT strategy and technology transfer in Korea.</title>
<pages>123-139</pages>
<year>2010</year>
<volume>49</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2010.029414</ee>
<url>db/journals/ijtm/ijtm49.html#Sung10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ShihLHC08">
<author>Kuang-Hsun Shih</author>
<author>Ching-Wen Lin</author>
<author>Huang-Ta Huang</author>
<author>Wen-Chyuan Chiang</author>
<title>Market information feedback for the high-tech dominated IPO companies.</title>
<pages>76-95</pages>
<year>2008</year>
<volume>43</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2008.019408</ee>
<url>db/journals/ijtm/ijtm43.html#ShihLHC08</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KochS06">
<author>Lambert T. Koch</author>
<author>Kati Schmengler</author>
<title>Entrepreneurial success and low-budget internet exposure: the case of online-retailing.</title>
<pages>438-451</pages>
<year>2006</year>
<volume>33</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009254</ee>
<url>db/journals/ijtm/ijtm33.html#KochS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Hwang07">
<author>Shiuh-Nan Hwang</author>
<title>An application of data envelopment analysis to measure the managerial performance of electronics industry in Taiwan.</title>
<pages>215-228</pages>
<year>2007</year>
<volume>40</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2007.013535</ee>
<url>db/journals/ijtm/ijtm40.html#Hwang07</url>
</article><article mdate="2017-05-11" key="journals/ijtm/MuinaPN11">
<author>Fernando Enrique Garcia Muina</author>
<author>Eva Pelechano-Barahona</author>
<author>Jos&eacute; Emilio Navas-L&oacute;pez</author>
<title>The effect of knowledge complexity on the strategic value of technological capabilities.</title>
<pages>390-409</pages>
<year>2011</year>
<volume>54</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2011.041581</ee>
<url>db/journals/ijtm/ijtm54.html#MuinaPN11</url>
</article><article mdate="2017-05-11" key="journals/ijtm/SaxenianL03">
<author>AnnaLee Saxenian</author>
<author>Chuen-Yueh Li</author>
<title>Bay-to-bay strategic alliances: the network linkages between Taiwan and the US venture capital industries.</title>
<pages>136-150</pages>
<year>2003</year>
<volume>25</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2003.003094</ee>
<url>db/journals/ijtm/ijtm25.html#SaxenianL03</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Diaz-DiazAS06">
<author>Nieves L. Diaz-Diaz</author>
<author>Inmaculada Aguiar-Diaz</author>
<author>Petra De Saa-Perez</author>
<title>Technological knowledge assets and innovation.</title>
<pages>29-51</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009228</ee>
<url>db/journals/ijtm/ijtm35.html#Diaz-DiazAS06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/PickerRL09">
<author>Stefan Picker</author>
<author>Albrecht Ruhnke</author>
<author>Jens Leker</author>
<title>Developing knowledge management - what makes the success?</title>
<pages>380-389</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022660</ee>
<url>db/journals/ijtm/ijtm45.html#PickerRL09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Sun10">
<author>Yifei Sun</author>
<title>Foreign research and development in China: a sectoral approach.</title>
<pages>342-363</pages>
<year>2010</year>
<volume>51</volume>
<journal>IJTM</journal>
<number>2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.033809</ee>
<url>db/journals/ijtm/ijtm51.html#Sun10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Gruenberg-BochardK09">
<author>Jutta Gruenberg-Bochard</author>
<author>Petra Kreis-Hoyer</author>
<title>Knowledge-networking capability in German SMEs: a model for empirical investigation.</title>
<pages>364-379</pages>
<year>2009</year>
<volume>45</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2009.022659</ee>
<url>db/journals/ijtm/ijtm45.html#Gruenberg-BochardK09</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KimP10">
<author>Hyukjoon Kim</author>
<author>Yongtae Park</author>
<title>The effects of open innovation activity on performance of SMEs: the case of Korea.</title>
<pages>236-256</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>3/4</number>
<ee>https://doi.org/10.1504/IJTM.2010.035975</ee>
<url>db/journals/ijtm/ijtm52.html#KimP10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/BernadasV05">
<author>Christine Bernadas</author>
<author>Jacques Verville</author>
<title>Disparity of the infusion of e-business within SMEs: a global perspective.</title>
<pages>39-46</pages>
<year>2005</year>
<volume>31</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2005.006621</ee>
<url>db/journals/ijtm/ijtm31.html#BernadasV05</url>
</article><article mdate="2017-05-11" key="journals/ijtm/KollmannS10">
<author>Tobias Kollmann</author>
<author>Christoph St&ouml;ckmann</author>
<title>Antecedents of strategic ambidexterity: effects of entrepreneurial orientation on exploratory and exploitative innovations in adolescent organisations.</title>
<pages>153-174</pages>
<year>2010</year>
<volume>52</volume>
<journal>IJTM</journal>
<number>1/2</number>
<ee>https://doi.org/10.1504/IJTM.2010.035860</ee>
<url>db/journals/ijtm/ijtm52.html#KollmannS10</url>
</article><article mdate="2017-05-11" key="journals/ijtm/ChauvelD04">
<author>Daniele Chauvel</author>
<author>Charles Despres</author>
<title>Organisational logic in the new age of business: the case example of knowledge management at Valtech.</title>
<pages>611-627</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>6/7</number>
<ee>https://doi.org/10.1504/IJTM.2004.004905</ee>
<url>db/journals/ijtm/ijtm27.html#ChauvelD04</url>
</article><article mdate="2017-06-06" key="journals/ijtm/FischerV02">
<author>Manfred M. Fischer</author>
<author orcid="0000-0001-7252-5648">Attila Varga</author>
<title>Technological innovation and interfirm cooperation: an exploratory analysis using survey data from manufacturing firms in the metropolitan region of Vienna.</title>
<pages>724-742</pages>
<year>2002</year>
<volume>24</volume>
<journal>IJTM</journal>
<number>7/8</number>
<ee>https://doi.org/10.1504/IJTM.2002.003080</ee>
<url>db/journals/ijtm/ijtm24.html#FischerV02</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Koruna04">
<author>Stefan M. Koruna</author>
<title>External technology commercialisation - policy guidelines.</title>
<pages>241-254</pages>
<year>2004</year>
<volume>27</volume>
<journal>IJTM</journal>
<number>2/3</number>
<ee>https://doi.org/10.1504/IJTM.2004.003954</ee>
<url>db/journals/ijtm/ijtm27.html#Koruna04</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Kim07a">
<author>Sangkyun Kim</author>
<title>Framework for e-mail records management in corporate environments.</title>
<pages>341-349</pages>
<year>2007</year>
<volume>38</volume>
<journal>IJTM</journal>
<number>4</number>
<ee>https://doi.org/10.1504/IJTM.2007.013405</ee>
<url>db/journals/ijtm/ijtm38.html#Kim07a</url>
</article><article mdate="2017-05-11" key="journals/ijtm/FernandezN06">
<author>Zulima Fernandez</author>
<author>Mar&iacute;a Jes&uacute;s Nieto</author>
<title>The internet: competitive strategy and boundaries of the firm.</title>
<pages>182-195</pages>
<year>2006</year>
<volume>35</volume>
<journal>IJTM</journal>
<number>1/2/3/4</number>
<ee>https://doi.org/10.1504/IJTM.2006.009234</ee>
<url>db/journals/ijtm/ijtm35.html#FernandezN06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Bell06">
<author>Martin Bell</author>
<title>Time and technological learning in industrialising countries: how long does it take? How fast is it moving (if at all)?</title>
<pages>25-39</pages>
<year>2006</year>
<volume>36</volume>
<journal>IJTM</journal>
<number>1/2/3</number>
<ee>https://doi.org/10.1504/IJTM.2006.009959</ee>
<url>db/journals/ijtm/ijtm36.html#Bell06</url>
</article><article mdate="2017-05-11" key="journals/ijtm/Cabral04">
<author>Regis Cabral</author>
<title>The Cabral-Dahab Science Park Management Paradigm applied to the case of Kista, Sweden.</title>
<pages>419-443</pages>
<year>2004</year>
<volume>28</volume>
<journal>IJTM</journal>
<number>3/4/5/6</number>
<ee>https://doi.org/10.1504/IJTM.2004.005297</ee>
<url>db/journals/ijtm/ijtm28.html#Cabral04</url>
</article>

<article mdate="2017-05-11" key="journals/ijtm/Howells00">
    <author>Jeremy Howells</author>
    <title>International coordination of technology flows and knowledge activity in innovation.</title>
    <pages>806-819</pages>
    <year>2000</year>
    <volume>19</volume>
    <journal>IJTM</journal>
    <number>7/8</number>
</article>
</dblp>


 dblp.dtd


 

<!--
    DBLP XML Records are available from

        http://dblp.uni-trier.de/xml/

    DBLP: Copyright 1993-2016 by Schloss Dagstuhl - Leibniz Center for Informatics (German: Schloss Dagstuhl - Leibniz-Zentrum für Informatik GmbH)
    and Michael Ley (Universität Trier, Informatik, [email protected]) and

    The data provided by DBLP on its webpages as well as the XML files available at http://dblp.uni-trier.de/xml/
    are released under the Open Data Commons Attribution License (ODC-BY 1.0). You are free to copy, distribute, use, modify,
    transform, build upon and produce derived works from our data as long as you attribute any public use of the data, or works
    produced from the data, in the manner specified in the license. Read the full ODC-BY 1.0 license text for the exact terms
    that apply. The ODC-BY 1.0 license is courtesy of the Open Knowledge Foundation.  

    http://opendatacommons.org/licenses/by/1.0/
    http://okfn.org/

    In the eyes of DBLP, a simple note refering to DBLP and/or a link back to http://dblp.uni-trier.de/ is sufficient to meet the
    attribution criterion. Individual use of only a small number of records (such as a publication list of a few authors or the
    table of content of a proceedings volume) does not need attribution. Of course, we are always happy if you link to us.

    For further details on the content of attributes see http://dblp.org/faq/What+do+I+find+in+dblp+xml.html
    
    Date of this File: August 29, 2017
    
    A changelog for the dblp.dtd can be found at: dblp.org/xml
    
-->

<!ELEMENT dblp (article|inproceedings|proceedings|book|incollection|
                phdthesis|mastersthesis|www|person|data)*>
<!ATTLIST dblp mdate CDATA #IMPLIED >                
                
<!ENTITY % field "author|editor|title|booktitle|pages|year|address|journal|volume|number|month|url|ee|cdrom|cite|publisher|note|crossref|isbn|series|school|chapter|publnr">

<!ELEMENT article       (%field;)*>
<!ATTLIST article
                        key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        reviewid CDATA #IMPLIED
                        rating CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT inproceedings (%field;)*>
<!ATTLIST inproceedings key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT proceedings   (%field;)*>
<!ATTLIST proceedings   key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT book          (%field;)*>
<!ATTLIST book          key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT incollection  (%field;)*>
<!ATTLIST incollection  key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT phdthesis     (%field;)*>
<!ATTLIST phdthesis     key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT mastersthesis (%field;)*>
<!ATTLIST mastersthesis key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT www           (%field;)*>
<!ATTLIST www           key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT data          (%field;)*>
<!ATTLIST data          key CDATA #REQUIRED
                        mdate CDATA #IMPLIED
                        publtype CDATA #IMPLIED
                        cdate CDATA #IMPLIED
>

<!ELEMENT person ((author*, (note|url|cite)*)|crossref) >
<!ATTLIST person key CDATA #REQUIRED
          mdate CDATA #IMPLIED
          cdate CDATA #IMPLIED
 >

<!ELEMENT author    (#PCDATA)>
<!ATTLIST author
                    aux CDATA #IMPLIED
                    bibtex CDATA #IMPLIED
                    orcid CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT editor    (#PCDATA)>
<!ATTLIST editor
                    aux CDATA #IMPLIED
                    orcid CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT address   (#PCDATA)>
<!ATTLIST address
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ENTITY % titlecontents "#PCDATA|sub|sup|i|tt|ref">
<!ELEMENT title     (%titlecontents;)*>
<!ATTLIST title
                    bibtex CDATA #IMPLIED
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT booktitle (#PCDATA)>
<!ATTLIST booktitle
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT pages     (#PCDATA)>
<!ATTLIST pages
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT year      (#PCDATA)>
<!ATTLIST year
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT journal   (#PCDATA)>
<!ATTLIST journal
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT volume    (#PCDATA)>
<!ATTLIST volume
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT number    (#PCDATA)>
<!ATTLIST number
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT month     (#PCDATA)>
<!ATTLIST month
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT url       (#PCDATA)>
<!ATTLIST url
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT ee        (#PCDATA)>
<!ATTLIST ee
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT cite      (#PCDATA)>
<!ATTLIST cite
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
                    ref CDATA #IMPLIED
>

<!ELEMENT school    (#PCDATA)>
<!ATTLIST school
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT publisher (#PCDATA)>
<!ATTLIST publisher
                    href CDATA #IMPLIED
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT note      (#PCDATA)>
<!ATTLIST note
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED                   
>

<!ELEMENT cdrom     (#PCDATA)>

<!ELEMENT crossref  (#PCDATA)>
<!ELEMENT isbn      (#PCDATA)>
<!ATTLIST isbn
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT chapter   (#PCDATA)>
<!ELEMENT series    (#PCDATA)>
<!ATTLIST series
                    href CDATA #IMPLIED
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!ELEMENT publnr (#PCDATA) >
<!ATTLIST publnr
                    aux CDATA #IMPLIED
                    label CDATA #IMPLIED
                    type CDATA #IMPLIED
>

<!--  sub elements of the title element -->
<!ELEMENT ref (#PCDATA)>
<!ATTLIST ref href CDATA #REQUIRED>
<!ELEMENT sup (%titlecontents;)*>
<!ELEMENT sub (%titlecontents;)*>
<!ELEMENT i   (%titlecontents;)*>
<!ELEMENT tt  (%titlecontents;)*>

<!ENTITY reg   "&#174;">
<!ENTITY micro "&#181;">
<!ENTITY times "&#215;">

<!-- (C) International Organization for Standardization 1986
     Permission to copy in any form is granted for use with
     conforming SGML systems and applications as defined in
     ISO 8879, provided this notice is included in all copies.
-->
<!-- Character entity set. Typical invocation:
     <!ENTITY % HTMLlat1 PUBLIC
       "ISO 8879-1986//ENTITIES Added Latin 1//EN//XML">
-->
<!-- This version of the entity set can be used with any SGML document
     which uses ISO 8859-1 or ISO 10646 as its document character
     set. This includes XML documents and ISO HTML documents.
-->
 
    <!ENTITY Agrave  "&#192;" ><!-- capital A, grave accent -->
    <!ENTITY Aacute  "&#193;" ><!-- capital A, acute accent -->
    <!ENTITY Acirc   "&#194;" ><!-- capital A, circumflex accent -->
    <!ENTITY Atilde  "&#195;" ><!-- capital A, tilde -->
    <!ENTITY Auml    "&#196;" ><!-- capital A, dieresis or umlaut mark -->
    <!ENTITY Aring   "&#197;" ><!-- capital A, ring -->
    <!ENTITY AElig   "&#198;" ><!-- capital AE diphthong (ligature) -->
    <!ENTITY Ccedil  "&#199;" ><!-- capital C, cedilla -->
    <!ENTITY Egrave  "&#200;" ><!-- capital E, grave accent -->
    <!ENTITY Eacute  "&#201;" ><!-- capital E, acute accent -->
    <!ENTITY Ecirc   "&#202;" ><!-- capital E, circumflex accent -->
    <!ENTITY Euml    "&#203;" ><!-- capital E, dieresis or umlaut mark -->
    <!ENTITY Igrave  "&#204;" ><!-- capital I, grave accent -->
    <!ENTITY Iacute  "&#205;" ><!-- capital I, acute accent -->
    <!ENTITY Icirc   "&#206;" ><!-- capital I, circumflex accent -->
    <!ENTITY Iuml    "&#207;" ><!-- capital I, dieresis or umlaut mark -->
    <!ENTITY ETH     "&#208;" ><!-- capital Eth, Icelandic -->
    <!ENTITY Ntilde  "&#209;" ><!-- capital N, tilde -->
    <!ENTITY Ograve  "&#210;" ><!-- capital O, grave accent -->
    <!ENTITY Oacute  "&#211;" ><!-- capital O, acute accent -->
    <!ENTITY Ocirc   "&#212;" ><!-- capital O, circumflex accent -->
    <!ENTITY Otilde  "&#213;" ><!-- capital O, tilde -->
    <!ENTITY Ouml    "&#214;" ><!-- capital O, dieresis or umlaut mark -->
    <!ENTITY Oslash  "&#216;" ><!-- capital O, slash -->
    <!ENTITY Ugrave  "&#217;" ><!-- capital U, grave accent -->
    <!ENTITY Uacute  "&#218;" ><!-- capital U, acute accent -->
    <!ENTITY Ucirc   "&#219;" ><!-- capital U, circumflex accent -->
    <!ENTITY Uuml    "&#220;" ><!-- capital U, dieresis or umlaut mark -->
    <!ENTITY Yacute  "&#221;" ><!-- capital Y, acute accent -->
    <!ENTITY THORN   "&#222;" ><!-- capital THORN, Icelandic -->
    <!ENTITY szlig   "&#223;" ><!-- small sharp s, German (sz ligature) -->
    <!ENTITY agrave  "&#224;" ><!-- small a, grave accent -->   
    <!ENTITY aacute  "&#225;" ><!-- small a, acute accent -->
    <!ENTITY acirc   "&#226;" ><!-- small a, circumflex accent -->
    <!ENTITY atilde  "&#227;" ><!-- small a, tilde -->
    <!ENTITY auml    "&#228;" ><!-- small a, dieresis or umlaut mark -->
    <!ENTITY aring   "&#229;" ><!-- small a, ring -->
    <!ENTITY aelig   "&#230;" ><!-- small ae diphthong (ligature) -->
    <!ENTITY ccedil  "&#231;" ><!-- small c, cedilla -->
    <!ENTITY egrave  "&#232;" ><!-- small e, grave accent -->
    <!ENTITY eacute  "&#233;" ><!-- small e, acute accent -->
    <!ENTITY ecirc   "&#234;" ><!-- small e, circumflex accent -->
    <!ENTITY euml    "&#235;" ><!-- small e, dieresis or umlaut mark -->
    <!ENTITY igrave  "&#236;" ><!-- small i, grave accent -->
    <!ENTITY iacute  "&#237;" ><!-- small i, acute accent -->
    <!ENTITY icirc   "&#238;" ><!-- small i, circumflex accent -->
    <!ENTITY iuml    "&#239;" ><!-- small i, dieresis or umlaut mark -->
    <!ENTITY eth     "&#240;" ><!-- small eth, Icelandic -->
    <!ENTITY ntilde  "&#241;" ><!-- small n, tilde -->
    <!ENTITY ograve  "&#242;" ><!-- small o, grave accent -->
    <!ENTITY oacute  "&#243;" ><!-- small o, acute accent -->
    <!ENTITY ocirc   "&#244;" ><!-- small o, circumflex accent -->
    <!ENTITY otilde  "&#245;" ><!-- small o, tilde -->
    <!ENTITY ouml    "&#246;" ><!-- small o, dieresis or umlaut mark -->

    <!ENTITY oslash  "&#248;" ><!-- small o, slash -->
    <!ENTITY ugrave  "&#249;" ><!-- small u, grave accent -->
    <!ENTITY uacute  "&#250;" ><!-- small u, acute accent -->
    <!ENTITY ucirc   "&#251;" ><!-- small u, circumflex accent -->
    <!ENTITY uuml    "&#252;" ><!-- small u, dieresis or umlaut mark -->
    <!ENTITY yacute  "&#253;" ><!-- small y, acute accent -->
    <!ENTITY thorn   "&#254;" ><!-- small thorn, Icelandic -->
    <!ENTITY yuml    "&#255;" ><!-- small y, dieresis or umlaut mark -->


猜你喜欢

转载自www.cnblogs.com/Ddlm2wxm/p/9193184.html
今日推荐