jats 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,27 @@
1
+ module Jats
2
+ class Figure < Node
3
+ def doi
4
+ xml.css('object-id[pub-id-type="doi"]').text
5
+ end
6
+
7
+ def label
8
+ xml.css('label').text
9
+ end
10
+
11
+ def url
12
+ xml.css('graphic')[0]['xlink:href']
13
+ end
14
+
15
+ def caption
16
+ {
17
+ title: xml.css('caption title').text,
18
+ content: xml.css('caption p').text
19
+ }
20
+ end
21
+
22
+ def attributes
23
+ { doi: doi, label: label, url: url, caption: caption }
24
+ end
25
+ end
26
+ end
27
+
@@ -0,0 +1,71 @@
1
+ module Jats
2
+ module Front
3
+ def parse_title_group(xml)
4
+ doc[:properties][:title] = xml.css('article-title').text
5
+ end
6
+
7
+ def parse_article_id(xml)
8
+ if xml['pub-id-type'] == 'doi'
9
+ doc[:properties][:doi] = xml.text
10
+ end
11
+ end
12
+
13
+ def parse_history(xml)
14
+ xml.css('date').each do |date|
15
+
16
+ type = date['date-type'] + "_on"
17
+ yy = date.css('year').text
18
+ mm = date.css('month').text
19
+ dd = date.css('day').text
20
+
21
+ doc[:properties][type.to_sym] = Date.parse("#{yy}-#{mm}-#{dd}").to_s
22
+ end
23
+ end
24
+
25
+ def parse_pub_date(xml)
26
+ yy = xml.css('year').text
27
+ mm = xml.css('month').text
28
+ dd = xml.css('day').text
29
+ doc[:properties][:published_on] = Date.parse("#{yy}-#{mm}-#{dd}").to_s
30
+ end
31
+
32
+ def parse_article_categories(xml)
33
+ doc[:properties][:categories] = xml.css('subject').map(&:text)
34
+ end
35
+
36
+ def parse_contrib_group(xml)
37
+ doc[:properties][:authors] ||= []
38
+
39
+ xml.css('contrib').each do |contrib|
40
+ person = Person.from_xml(contrib)
41
+
42
+ person.affiliation_ids.each do |rid|
43
+ aff_xml = xml.css("aff[id='#{rid}']").first
44
+ aff = Affiliation.from_xml(aff_xml)
45
+ person.affiliations << aff.to_hash
46
+ end
47
+
48
+ doc[:properties][:authors] << person.id
49
+ add_node(person)
50
+ end
51
+ end
52
+
53
+ def parse_kwd_group(xml)
54
+ doc[:properties][:keywords] = xml.css('kwd').collect { |x| x.text }
55
+ end
56
+
57
+ def parse_front
58
+ xml.css('article-meta').children.each do |node|
59
+ next if node.text?
60
+
61
+ name = node.name.gsub('-', '_')
62
+ if respond_to?("parse_#{name}")
63
+ self.send("parse_#{name}", node)
64
+ end
65
+ end
66
+
67
+ doc
68
+ end
69
+ end
70
+ end
71
+
@@ -0,0 +1,16 @@
1
+ module Jats
2
+ class Heading < Node
3
+ def content
4
+ xml.css('> title').text
5
+ end
6
+
7
+ def level
8
+ xml.ancestors('sec').size + 1
9
+ end
10
+
11
+ def attributes
12
+ { content: content, level: level }
13
+ end
14
+ end
15
+ end
16
+
@@ -0,0 +1,48 @@
1
+ module Jats
2
+ class Node
3
+ def self.from_xml(xml)
4
+ new(xml)
5
+ end
6
+
7
+ def self.reset_indices
8
+ @@_indices = {}
9
+ end
10
+
11
+ def self.index_for(type)
12
+ @@_indices ||= {}
13
+ @@_indices[type] ||= 0
14
+ @@_indices[type] += 1
15
+ end
16
+
17
+ attr_reader :xml, :index
18
+
19
+ def initialize(xml=nil)
20
+ @xml = xml
21
+ @index = self.class.index_for(type)
22
+ end
23
+
24
+ def type
25
+ self.class.name.split('::').last.downcase
26
+ end
27
+
28
+ def name
29
+ "#{type}:#{xml['id'] || index}"
30
+ end
31
+ alias_method :id, :name
32
+
33
+ def attributes
34
+ {}
35
+ end
36
+
37
+ def to_hash
38
+ {
39
+ name => {
40
+ type: type,
41
+ id: id,
42
+ }.merge(attributes)
43
+ }
44
+ end
45
+ end
46
+ end
47
+
48
+
@@ -0,0 +1,36 @@
1
+ module Jats
2
+ class Person < Node
3
+ attr_accessor :affiliations
4
+
5
+ def initialize(xml)
6
+ super(xml)
7
+ @affiliations = []
8
+ end
9
+
10
+ def role
11
+ xml['contrib-type']
12
+ end
13
+
14
+ def given_names
15
+ xml.css('given-names').text
16
+ end
17
+
18
+ def last_name
19
+ xml.css('surname').text
20
+ end
21
+
22
+ def affiliation_ids
23
+ xml.css('xref[ref-type="aff"]').collect { |r| r['rid'] }
24
+ end
25
+
26
+ def attributes
27
+ {
28
+ role: role,
29
+ given_names: given_names,
30
+ last_name: last_name,
31
+ affiliations: affiliations.each(&:to_hash)
32
+ }
33
+ end
34
+ end
35
+ end
36
+
@@ -0,0 +1,20 @@
1
+ module Jats
2
+ class Text < Node
3
+ def content
4
+ xml.text
5
+ end
6
+
7
+ def annotations
8
+ xml.css('xref').collect do |ref|
9
+ Annotation.from_xml(ref).tap do |ann|
10
+ ann.source = self.id
11
+ end
12
+ end
13
+ end
14
+
15
+ def attributes
16
+ { content: content }
17
+ end
18
+ end
19
+ end
20
+
@@ -0,0 +1,10 @@
1
+ <aff id="aff-1">
2
+ <label>1</label>
3
+ <institution>
4
+ Laboratory of Reproductive Neuroendocrinology, Department of Integrative Biology
5
+ </institution>
6
+ ,
7
+ <addr-line>University of California at Berkeley</addr-line>
8
+ ,
9
+ <country>USA</country>
10
+ </aff>
@@ -0,0 +1 @@
1
+ <xref ref-type="bibr" rid="ref-20">Dawson et al., 2001</xref>
@@ -0,0 +1,807 @@
1
+ <!DOCTYPE article PUBLIC "-//NLM//DTD Journal Publishing DTD v3.0 20080202//EN"
2
+ "journalpublishing3.dtd">
3
+ <article
4
+ article-type="research-article"
5
+ dtd-version="3.0" xml:lang="en"
6
+ xmlns:mml="http://www.w3.org/1998/Math/MathML"
7
+ xmlns:xlink="http://www.w3.org/1999/xlink"
8
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9
+ >
10
+ <front>
11
+ <journal-meta>
12
+ <journal-id journal-id-type="pmc">bmj</journal-id>
13
+ <journal-id journal-id-type="pubmed">BMJ</journal-id>
14
+ <journal-id journal-id-type="publisher">BMJ</journal-id>
15
+ <issn>0959-8138</issn>
16
+ <isbn>ISBN</isbn>
17
+ <publisher>
18
+ <publisher-name>BMJ</publisher-name>
19
+ </publisher>
20
+ <notes>
21
+ <note>note 1</note>
22
+ <note>note 2</note>
23
+ </notes>
24
+ </journal-meta>
25
+ <article-meta>
26
+ <article-id pub-id-type="other">jBMJ.v324.i7342.pg880</article-id>
27
+ <article-id pub-id-type="pmid">11950738</article-id>
28
+ <article-categories>
29
+ <subj-group>
30
+ <subject>Primary care</subject>
31
+ <subj-group>
32
+ <subject>190</subject>
33
+ <subject>10</subject>
34
+ <subject>218</subject>
35
+ <subject>219</subject>
36
+ <subject>355</subject>
37
+ <subject>357</subject>
38
+ </subj-group>
39
+ </subj-group>
40
+ </article-categories>
41
+ <title-group>
42
+ <article-title>Evolving general practice consultation in Britain: issues of length and context</article-title>
43
+ </title-group>
44
+ <contrib-group>
45
+ <contrib contrib-type="author">
46
+ <name>
47
+ <surname>Freeman</surname>
48
+ <given-names>George K</given-names>
49
+ </name>
50
+ <role>professor of general practice</role>
51
+ <xref ref-type="aff">
52
+ <sup>
53
+ <italic>a</italic>
54
+ </sup>
55
+ </xref>
56
+ </contrib>
57
+ <contrib contrib-type="author">
58
+ <name>
59
+ <surname>Horder</surname>
60
+ <given-names>John P</given-names>
61
+ </name>
62
+ <role>past president</role>
63
+ <xref ref-type="aff">
64
+ <sup>
65
+ <italic>b</italic>
66
+ </sup>
67
+ </xref>
68
+ </contrib>
69
+ <contrib contrib-type="author">
70
+ <name>
71
+ <surname>Howie</surname>
72
+ <given-names>John G R</given-names>
73
+ </name>
74
+ <role>emeritus professor of general practice</role>
75
+ <xref ref-type="aff">
76
+ <sup>
77
+ <italic>c</italic>
78
+ </sup>
79
+ </xref>
80
+ </contrib>
81
+ <contrib contrib-type="author">
82
+ <name>
83
+ <surname>Hungin</surname>
84
+ <given-names>A Pali</given-names>
85
+ </name>
86
+ <role>professor of general practice</role>
87
+ <xref ref-type="aff">
88
+ <sup>
89
+ <italic>d</italic>
90
+ </sup>
91
+ </xref>
92
+ </contrib>
93
+ <contrib contrib-type="author">
94
+ <name>
95
+ <surname>Hill</surname>
96
+ <given-names>Alison P</given-names>
97
+ </name>
98
+ <role>general practitioner</role>
99
+ <xref ref-type="aff">
100
+ <sup>
101
+ <italic>e</italic>
102
+ </sup>
103
+ </xref>
104
+ </contrib>
105
+ <contrib contrib-type="author">
106
+ <name>
107
+ <surname>Shah</surname>
108
+ <given-names>Nayan C</given-names>
109
+ </name>
110
+ <role>general practitioner</role>
111
+ <xref ref-type="aff">
112
+ <sup>
113
+ <italic>b</italic>
114
+ </sup>
115
+ </xref>
116
+ </contrib>
117
+ <contrib contrib-type="author">
118
+ <name>
119
+ <surname>Wilson</surname>
120
+ <given-names>Andrew</given-names>
121
+ </name>
122
+ <role>senior lecturer</role>
123
+ <xref ref-type="aff">
124
+ <sup>
125
+ <italic>f</italic>
126
+ </sup>
127
+ </xref>
128
+ </contrib>
129
+ </contrib-group>
130
+ <aff>
131
+ <sup>
132
+ <italic>a</italic>
133
+ </sup>Centre for Primary Care and Social Medicine, Imperial College of Science, Technology and Medicine, London W6 8RP, <sup>
134
+ <italic>b</italic>
135
+ </sup>Royal College of General Practitioners, London SW7 1PU, <sup>
136
+ <italic>c</italic>
137
+ </sup>Department of General Practice, University of Edinburgh, Edinburgh EH8 9DX, <sup>
138
+ <italic>d</italic>
139
+ </sup>Centre for Health Studies, University of Durham, Durham DH1 3HN, <sup>
140
+ <italic>e</italic>
141
+ </sup>Kilburn Park Medical Centre, London NW6, <sup>
142
+ <italic>f</italic>
143
+ </sup>Department of General Practice and Primary Health Care, University of Leicester, Leicester LE5 4PW</aff>
144
+ <author-notes>
145
+ <fn fn-type="con">
146
+ <p>Contributors: GKF wrote the paper and revised it after repeated and detailed comments from all of the other authors and feedback from the first referee and from the <italic>BMJ</italic> editorial panel. All other authors gave detailed and repeated comments and cristicisms. GKF is the guarantor of the paper.</p>
147
+ </fn>
148
+ <fn>
149
+ <p>Correspondence to: G Freeman <email>g.freeman@ic.ac.uk</email>
150
+ </p>
151
+ </fn>
152
+ </author-notes>
153
+ <pub-date pub-type="pub">
154
+ <day>13</day>
155
+ <month>4</month>
156
+ <year>2002</year>
157
+ </pub-date>
158
+ <volume>324</volume>
159
+ <issue>7342</issue>
160
+ <fpage>880</fpage>
161
+ <lpage>882</lpage>
162
+ <history>
163
+ <date date-type="accepted">
164
+ <day>7</day>
165
+ <month>2</month>
166
+ <year>2002</year>
167
+ </date>
168
+ </history>
169
+ <permissions>
170
+ <copyright-statement>Copyright &#x00A9; 2002, BMJ</copyright-statement>
171
+ <copyright-year>2002, </copyright-year>
172
+ </permissions>
173
+ </article-meta>
174
+ </front>
175
+ <body>
176
+ <p>In 1999 Shah<xref ref-type="bibr" rid="B1">1</xref> and others said that the Royal College of General Practitioners should advocate longer consultations in general practice as a matter of policy. The college set up a working group chaired by A P Hungin, and a systematic review of literature on consultation length in general practice was commissioned. The working group agreed that the available evidence would be hard to interpret without discussion of the changing context within which consultations now take place. For many years general practitioners and those who have surveyed patients' opinions in the United Kingdom have complained about short consultation time, despite a steady increase in actual mean length. Recently Mechanic pointed out that this is also true in the United States.<xref ref-type="bibr" rid="B2">2</xref> Is there any justification for a further increase in mean time allocated per consultation in general practice?</p>
177
+ <p>We report on the outcome of extensive debate among a group of general practitioners with an interest in the process of care, with reference to the interim findings of the commissioned systematic review and our personal databases. The review identified 14 relevant papers. <boxed-text>
178
+ <sec>
179
+ <title>Summary points</title>
180
+ <p>
181
+ <list list-type="bullet">
182
+ <list-item>
183
+ <p>Longer consultations are associated with a range of better patient outcomes</p>
184
+ </list-item>
185
+ <list-item>
186
+ <p>Modern consultations in general practice deal with patients with more serious and chronic conditions</p>
187
+ </list-item>
188
+ <list-item>
189
+ <p>Increasing patient participation means more complex interaction, which demands extra time</p>
190
+ </list-item>
191
+ <list-item>
192
+ <p>Difficulties with access and with loss of continuity add to perceived stress and poor performance and lead to further pressure on time</p>
193
+ </list-item>
194
+ <list-item>
195
+ <p>Longer consultations should be a professional priority, combined with increased use of technology and more flexible practice management to maximise interpersonal continuity</p>
196
+ </list-item>
197
+ <list-item>
198
+ <p>Research on implementation is needed</p>
199
+ </list-item>
200
+ </list>
201
+ </p>
202
+ </sec>
203
+ </boxed-text>
204
+ </p>
205
+ <sec sec-type="subjects">
206
+ <title>Longer consultations: benefits for patients</title>
207
+ <p>The systematic review consistently showed that doctors with longer consultation times prescribe less and offer more advice on lifestyle and other health promoting activities. Longer consultations have been significantly associated with better recognition and handling of psychosocial problems<xref ref-type="bibr" rid="B3">3</xref> and with better patient enablement.<xref ref-type="bibr" rid="B4">4</xref> Also clinical care for some chronic illnesses is better in practices with longer booked intervals between one appointment and the next.<xref ref-type="bibr" rid="B5">5</xref> It is not clear whether time is itself the main influence or whether some doctors insist on more time.</p>
208
+ <p>A national survey in 1998 reported that most (87&#x0025;) patients were satisfied with the length of their most recent consultation.<xref ref-type="bibr" rid="B6">6</xref> Satisfaction with any service will be high if expectations are met or exceeded. But expectations are modified by previous experience.<xref ref-type="bibr" rid="B7">7</xref> The result is that primary care patients are likely to be satisfied with what they are used to unless the context modifies the effects of their own experience.</p>
209
+ </sec>
210
+ <sec>
211
+ <title>Context of modern consultations</title>
212
+ <p>Shorter consultations were more appropriate when the population was younger, when even a brief absence from employment due to sickness required a doctor's note, and when many simple remedies were available only on prescription. Recently at least five important influences have increased the content and hence the potential length of the consultation.</p>
213
+ </sec>
214
+ <sec>
215
+ <title>Participatory consultation style</title>
216
+ <p>The most effective consultations are those in which doctors most directly acknowledge and perhaps respond to patients' problems and concerns. In addition, for patients to be committed to taking advantage of medical advice they must agree with both the goals and methods proposed. A landmark publication in the United Kingdom was <italic>Meetings Between Experts</italic>, which argued that while doctors are the experts about medical problems in general patients are the experts on how they themselves experience these problems.<xref ref-type="bibr" rid="B8">8</xref> New emphasis on teaching consulting skills in general practice advocated specific attention to the patient's agenda, beliefs, understanding, and agreement. Currently the General Medical Council, aware that communication difficulties underlie many complaints about doctors, has further emphasised the importance of involving patients in consultations in its revised guidance to medical schools.<xref ref-type="bibr" rid="B9">9</xref> More patient involvement should give a better outcome, but this participatory style usually lengthens consultations.</p>
217
+ </sec>
218
+ <sec>
219
+ <title>Extended professional agenda</title>
220
+ <p>The traditional consultation in general practice was brief.<xref ref-type="bibr" rid="B2">2</xref> The patient presented symptoms and the doctor prescribed treatment. In 1957 Balint gave new insights into the meaning of symptoms.<xref ref-type="bibr" rid="B10">10</xref> By 1979 an enhanced model of consultation was presented, in which the doctors dealt with ongoing as well as presenting problems and added health promotion and education about future appropriate use of services.<xref ref-type="bibr" rid="B11">11</xref> Now, with an ageing population and more community care of chronic illness, there are more issues to be considered at each consultation. Ideas of what constitutes good general practice are more complex.<xref ref-type="bibr" rid="B12">12</xref> Good practice now includes both extended care of chronic medical problems&#x2014;for example, coronary heart disease<xref ref-type="bibr" rid="B13">13</xref>&#x2014;and a public health role. At first this model was restricted to those who lead change (&#x201C;early adopters&#x201D;) and enthusiasts<xref ref-type="bibr" rid="B14">14</xref> but now it is embedded in professional and managerial expectations of good practice.</p>
221
+ <p>Adequate time is essential. It may be difficult for an elderly patient with several active problems to undress, be examined, and get adequate professional consideration in under 15 minutes. Here the doctor is faced with the choice of curtailing the consultation or of reducing the time available for the next patient. Having to cope with these situations often contributes to professional dissatisfaction.<xref ref-type="bibr" rid="B15">15</xref> This combination of more care, more options, and more genuine discussion of those options with informed patient choice inevitably leads to pressure on time.</p>
222
+ </sec>
223
+ <sec>
224
+ <title>Access problems</title>
225
+ <p>In a service free at the point of access, rising demand will tend to increase rationing by delay. But attempts to improve access by offering more consultations at short notice squeeze consultation times.</p>
226
+ <p>While appointment systems can and should reduce queuing time for consultations, they have long tended to be used as a brake on total demand.<xref ref-type="bibr" rid="B16">16</xref> This may seriously erode patients' confidence in being able to see their doctor or nurse when they need to. Patients are offered appointments further ahead but may keep these even if their symptoms have remitted &#x201C;just in case.&#x201D; Availability of consultations is thus blocked. Receptionists are then inappropriately blamed for the inadequate access to doctors.</p>
227
+ <p>In response to perception of delay, the government has set targets in the NHS plan of &#x201C;guaranteed access to a primary care professional within 24 hours and to a primary care doctor within 48 hours.&#x201D; Implementation is currently being negotiated.</p>
228
+ <p>Virtually all patients think that they would not consult unless it was absolutely necessary. They do not think they are wasting NHS time and do not like being made to feel so. But underlying general practitioners' willingness to make patients wait several days is their perception that few of the problems are urgent. Patients and general practitioners evidently do not agree about the urgency of so called minor problems. To some extent general practice in the United Kingdom may have scored an &#x201C;own goal&#x201D; by setting up perceived access barriers (appointment systems and out of hours cooperatives) in the attempt to increase professional standards and control demand in a service that is free at the point of access.</p>
229
+ <p>A further government initiative has been to bypass general practice with new services&#x2014;notably, walk-in centres (primary care clinics in which no appointment is needed) and NHS Direct (a professional telephone helpline giving advice on simple remedies and access to services). Introduced widely and rapidly, these services each potentially provide significant features of primary care&#x2014;namely, quick access to skilled health advice and first line treatment.</p>
230
+ </sec>
231
+ <sec>
232
+ <title>Loss of interpersonal continuity</title>
233
+ <p>If a patient has to consult several different professionals, particularly over a short period of time, there is inevitable duplication of stories, risk of naive diagnoses, potential for conflicting advice, and perhaps loss of trust. Trust is essential if patients are to accept the &#x201C;wait and see&#x201D; management policy which is, or should be, an important part of the management of self limiting conditions, which are often on the boundary between illness and non-illness.<xref ref-type="bibr" rid="B17">17</xref> Such duplication again increases pressure for more extra (unscheduled) consultations resulting in late running and professional frustration.<xref ref-type="bibr" rid="B18">18</xref>
234
+ </p>
235
+ <p>Mechanic described how loss of longitudinal (and perhaps personal and relational<xref ref-type="bibr" rid="B19">19</xref>) continuity influences the perception and use of time through an inability to build on previous consultations.<xref ref-type="bibr" rid="B2">2</xref> Knowing the doctor well, particularly in smaller practices, is associated with enhanced patient enablement in shorter time.<xref ref-type="bibr" rid="B4">4</xref> Though Mechanic pointed out that three quarters of UK patients have been registered with their general practitioner five years or more, this may be misleading. Practices are growing, with larger teams and more registered patients. Being registered with a doctor in a larger practice is usually no guarantee that the patient will be able to see the same doctor or the doctor of his or her choice, who may be different. Thus the system does not encourage adequate personal continuity. This adds to pressure on time and reduces both patient and professional satisfaction.</p>
236
+ </sec>
237
+ <sec>
238
+ <title>Health service reforms</title>
239
+ <p>Finally, for the past 15 years the NHS has experienced unprecedented change with a succession of major administrative reforms. Recent reforms have focused on an NHS led by primary care, including the aim of shifting care from the secondary specialist sector to primary care. One consequence is increased demand for primary care of patients with more serious and less stable problems. With the limited piloting of reforms we do not know whether such major redirection can be achieved without greatly altering the delicate balance between expectations (of both patients and staff) and what is delivered.</p>
240
+ </sec>
241
+ <sec>
242
+ <title>The future</title>
243
+ <p>We think that the way ahead must embrace both longer mean consultation times and more flexibility. More time is needed for high quality consultations with patients with major and complex problems of all kinds. But patients also need access to simpler services and advice. This should be more appropriate (and cost less) when it is given by professionals who know the patient and his or her medical history and social circumstances. For doctors, the higher quality associated with longer consultations may lead to greater professional satisfaction and, if these longer consultations are combined with more realistic scheduling, to reduced levels of stress.<xref ref-type="bibr" rid="B20">20</xref> They will also find it easier to develop further the care of chronic disease.</p>
244
+ <p>The challenge posed to general practice by walk-in centres and NHS Direct is considerable, and the diversion of funding from primary care is large. The risk of waste and duplication increases as more layers of complexity are added to a primary care service that started out as something familiar, simple, and local and which is still envied in other developed countries.<xref ref-type="bibr" rid="B21">21</xref> Access needs to be simple, and the advantages of personal knowledge and trust in minimising duplication and overmedicalisation need to be exploited.</p>
245
+ <p>We must ensure better communication and access so that patients can more easily deal with minor issues and queries with someone they know and trust and avoid the formality and inconvenience of a full face to face consultation. Too often this has to be with a different professional, unfamiliar with the nuances of the case. There should be far more managerial emphasis on helping patients to interact with their chosen practitioner<xref ref-type="bibr" rid="B22">22</xref>; such a programme has been described.<xref ref-type="bibr" rid="B23">23</xref> Modern information systems make it much easier to record which doctor(s) a patient prefers to see and to monitor how often this is achieved. The telephone is hardly modern but is underused. Email avoids the problems inherent in arranging simultaneous availability necessary for telephone consultations but at the cost of reducing the communication of emotions. There is a place for both.<xref ref-type="bibr" rid="B2">2</xref> Access without prior appointment is a valued feature of primary care, and we need to know more about the right balance between planned and ad hoc consulting.</p>
246
+ </sec>
247
+ <sec>
248
+ <title>Next steps</title>
249
+ <p>General practitioners do not behave in a uniform way. They can be categorised as slow, medium, and fast and react in different ways to changes in consulting speed.<xref ref-type="bibr" rid="B18">18</xref> They are likely to have differing views about a widespread move to lengthen consultation time. We do not need further confirmation that longer consultations are desirable and necessary, but research could show us the best way to learn how to introduce them with minimal disruption to the way in which patients and practices like primary care to be provided.<xref ref-type="bibr" rid="B24">24</xref> We also need to learn how to make the most of available time in complex consultations.</p>
250
+ <p>Devising appropriate incentives and helping practices move beyond just reacting to demand in the traditional way by working harder and faster is perhaps our greatest challenge in the United Kingdom. The new primary are trusts need to work together with the growing primary care research networks to carry out the necessary development work. In particular, research is needed on how a primary care team can best provide the right balance of quick access and interpersonal knowledge and trust.</p>
251
+ </sec>
252
+ </body>
253
+ <back>
254
+ <ack>
255
+ <p>We thank the other members of the working group: Susan Childs, Paul Freeling, Iona Heath, Marshall Marinker, and Bonnie Sibbald. We also thank Fenny Green of the Royal College of General Practitioners for administrative help.</p>
256
+ </ack>
257
+ <ref-list>
258
+ <ref id="B1">
259
+ <label>1</label>
260
+ <element-citation publication-type="journal">
261
+ <person-group person-group-type="author">
262
+ <name>
263
+ <surname>Shah</surname>
264
+ <given-names>NC</given-names>
265
+ </name>
266
+ </person-group>
267
+ <article-title>Viewpoint: Consultation time&#x2014;time for a change? Still the &#x201C;perfunctory work of perfunctory men!&#x201D;</article-title>
268
+ <source>Br J Gen Pract</source>
269
+ <year>1999</year>
270
+ <volume>49</volume>
271
+ <fpage>497</fpage>
272
+ </element-citation>
273
+ </ref>
274
+ <ref id="B2">
275
+ <label>2</label>
276
+ <element-citation publication-type="journal">
277
+ <person-group person-group-type="author">
278
+ <name>
279
+ <surname>Mechanic</surname>
280
+ <given-names>D</given-names>
281
+ </name>
282
+ </person-group>
283
+ <article-title>How should hamsters run? Some observations about sufficient patient time in primary care</article-title>
284
+ <source>BMJ</source>
285
+ <year>2001</year>
286
+ <volume>323</volume>
287
+ <fpage>266</fpage>
288
+ <lpage>268</lpage>
289
+ <pub-id pub-id-type="pmid">11485957</pub-id>
290
+ </element-citation>
291
+ </ref>
292
+ <ref id="B3">
293
+ <label>3</label>
294
+ <element-citation publication-type="journal">
295
+ <person-group person-group-type="author">
296
+ <name>
297
+ <surname>Howie</surname>
298
+ <given-names>JGR</given-names>
299
+ </name>
300
+ <name>
301
+ <surname>Porter</surname>
302
+ <given-names>AMD</given-names>
303
+ </name>
304
+ <name>
305
+ <surname>Heaney</surname>
306
+ <given-names>DJ</given-names>
307
+ </name>
308
+ <name>
309
+ <surname>Hopton</surname>
310
+ <given-names>JL</given-names>
311
+ </name>
312
+ </person-group>
313
+ <article-title>Long to short consultation ratio: a proxy measure of quality of care for general practice</article-title>
314
+ <source>Br J Gen Pract</source>
315
+ <year>1991</year>
316
+ <volume>41</volume>
317
+ <fpage>48</fpage>
318
+ <lpage>54</lpage>
319
+ <pub-id pub-id-type="pmid">2031735</pub-id>
320
+ </element-citation>
321
+ </ref>
322
+ <ref id="B4">
323
+ <label>4</label>
324
+ <element-citation publication-type="journal">
325
+ <person-group person-group-type="author">
326
+ <name>
327
+ <surname>Howie</surname>
328
+ <given-names>JGR</given-names>
329
+ </name>
330
+ <name>
331
+ <surname>Heaney</surname>
332
+ <given-names>DJ</given-names>
333
+ </name>
334
+ <name>
335
+ <surname>Maxwell</surname>
336
+ <given-names>M</given-names>
337
+ </name>
338
+ <name>
339
+ <surname>Walker</surname>
340
+ <given-names>JJ</given-names>
341
+ </name>
342
+ <name>
343
+ <surname>Freeman</surname>
344
+ <given-names>GK</given-names>
345
+ </name>
346
+ <name>
347
+ <surname>Rai</surname>
348
+ <given-names>H</given-names>
349
+ </name>
350
+ </person-group>
351
+ <article-title>Quality at general practice consultations: cross-sectional survey</article-title>
352
+ <source>BMJ</source>
353
+ <year>1999</year>
354
+ <volume>319</volume>
355
+ <fpage>738</fpage>
356
+ <lpage>743</lpage>
357
+ <pub-id pub-id-type="pmid">10487999</pub-id>
358
+ </element-citation>
359
+ </ref>
360
+ <ref id="B5">
361
+ <label>5</label>
362
+ <element-citation publication-type="journal">
363
+ <person-group person-group-type="author">
364
+ <name>
365
+ <surname>Kaplan</surname>
366
+ <given-names>SH</given-names>
367
+ </name>
368
+ <name>
369
+ <surname>Greenfield</surname>
370
+ <given-names>S</given-names>
371
+ </name>
372
+ <name>
373
+ <surname>Ware</surname>
374
+ <given-names>JE</given-names>
375
+ </name>
376
+ </person-group>
377
+ <article-title>Assessing the effects of physician-patient interactions on the outcome of chronic disease</article-title>
378
+ <source>Med Care</source>
379
+ <year>1989</year>
380
+ <volume>27</volume>
381
+ <supplement>suppl 3</supplement>
382
+ <fpage>110</fpage>
383
+ <lpage>125</lpage>
384
+ </element-citation>
385
+ </ref>
386
+ <ref id="B6">
387
+ <label>6</label>
388
+ <element-citation publication-type="book">
389
+ <person-group person-group-type="editor">
390
+ <name>
391
+ <surname>Airey</surname>
392
+ <given-names>C</given-names>
393
+ </name>
394
+ <name>
395
+ <surname>Erens</surname>
396
+ <given-names>B</given-names>
397
+ </name>
398
+ </person-group>
399
+ <source>National surveys of NHS patients: general practice, 1998</source>
400
+ <year>1999</year>
401
+ <publisher-loc>London</publisher-loc>
402
+ <publisher-name>NHS Executive</publisher-name>
403
+ </element-citation>
404
+ </ref>
405
+ <ref id="B7">
406
+ <label>7</label>
407
+ <element-citation publication-type="journal">
408
+ <person-group person-group-type="author">
409
+ <name>
410
+ <surname>Hart</surname>
411
+ <given-names>JT</given-names>
412
+ </name>
413
+ </person-group>
414
+ <article-title>Expectations of health care: promoted, managed or shared?</article-title>
415
+ <source>Health Expect</source>
416
+ <year>1998</year>
417
+ <volume>1</volume>
418
+ <fpage>3</fpage>
419
+ <lpage>13</lpage>
420
+ <pub-id pub-id-type="pmid">11281857</pub-id>
421
+ </element-citation>
422
+ </ref>
423
+ <ref id="B8">
424
+ <label>8</label>
425
+ <element-citation publication-type="book">
426
+ <person-group person-group-type="author">
427
+ <name>
428
+ <surname>Tuckett</surname>
429
+ <given-names>D</given-names>
430
+ </name>
431
+ <name>
432
+ <surname>Boulton</surname>
433
+ <given-names>M</given-names>
434
+ </name>
435
+ <name>
436
+ <surname>Olson</surname>
437
+ <given-names>C</given-names>
438
+ </name>
439
+ <name>
440
+ <surname>Williams</surname>
441
+ <given-names>A</given-names>
442
+ </name>
443
+ </person-group>
444
+ <source>Meetings between experts: an approach to sharing ideas in medical consultations</source>
445
+ <year>1985</year>
446
+ <publisher-loc>London</publisher-loc>
447
+ <publisher-name>Tavistock Publications</publisher-name>
448
+ </element-citation>
449
+ </ref>
450
+ <ref id="B9">
451
+ <label>9</label>
452
+ <mixed-citation>General Medical Council. <source>Draft recommendations on undergraduate medical education</source>. July 2001. www.gmc-uk.org/med_ed/tomorrowsdoctors/index.htm (accessed 2 Jan 2002).</mixed-citation>
453
+ </ref>
454
+ <ref id="B10">
455
+ <label>10</label>
456
+ <element-citation publication-type="book">
457
+ <person-group person-group-type="author">
458
+ <name>
459
+ <surname>Balint</surname>
460
+ <given-names>M</given-names>
461
+ </name>
462
+ </person-group>
463
+ <source>The doctor, his patient and the illness</source>
464
+ <year>1957</year>
465
+ <publisher-loc>London</publisher-loc>
466
+ <publisher-name>Tavistock</publisher-name>
467
+ </element-citation>
468
+ </ref>
469
+ <ref id="B11">
470
+ <label>11</label>
471
+ <element-citation publication-type="journal">
472
+ <person-group person-group-type="author">
473
+ <name>
474
+ <surname>Stott</surname>
475
+ <given-names>NCH</given-names>
476
+ </name>
477
+ <name>
478
+ <surname>Davies</surname>
479
+ <given-names>RH</given-names>
480
+ </name>
481
+ </person-group>
482
+ <article-title>The exceptional potential in each primary care consultation</article-title>
483
+ <source>J R Coll Gen Pract</source>
484
+ <year>1979</year>
485
+ <volume>29</volume>
486
+ <fpage>210</fpage>
487
+ <lpage>205</lpage>
488
+ </element-citation>
489
+ </ref>
490
+ <ref id="B12">
491
+ <label>12</label>
492
+ <element-citation publication-type="book">
493
+ <person-group person-group-type="author">
494
+ <name>
495
+ <surname>Hill</surname>
496
+ <given-names>AP</given-names>
497
+ </name>
498
+ </person-group>
499
+ <person-group person-group-type="editor">
500
+ <name>
501
+ <surname>Hill</surname>
502
+ <given-names>AP</given-names>
503
+ </name>
504
+ </person-group>
505
+ <article-title>Challenges for primary care</article-title>
506
+ <source>What's gone wrong with health care? Challenges for the new millennium</source>
507
+ <year>2000</year>
508
+ <publisher-loc>London</publisher-loc>
509
+ <publisher-name>King's Fund</publisher-name>
510
+ <fpage>75</fpage>
511
+ <lpage>86</lpage>
512
+ </element-citation>
513
+ </ref>
514
+ <ref id="B13">
515
+ <label>13</label>
516
+ <element-citation publication-type="book">
517
+ <collab>Department of Health</collab>
518
+ <source>National service framework for coronary heart disease</source>
519
+ <year>2000</year>
520
+ <publisher-loc>London</publisher-loc>
521
+ <publisher-name>Department of Health</publisher-name>
522
+ </element-citation>
523
+ </ref>
524
+ <ref id="B14">
525
+ <label>14</label>
526
+ <element-citation publication-type="book">
527
+ <person-group person-group-type="author">
528
+ <name>
529
+ <surname>Hart</surname>
530
+ <given-names>JT</given-names>
531
+ </name>
532
+ </person-group>
533
+ <source>A new kind of doctor: the general practitioner's part in the health of the community</source>
534
+ <year>1988</year>
535
+ <publisher-loc>London</publisher-loc>
536
+ <publisher-name>Merlin Press</publisher-name>
537
+ </element-citation>
538
+ </ref>
539
+ <ref id="B15">
540
+ <label>15</label>
541
+ <element-citation publication-type="journal">
542
+ <person-group person-group-type="author">
543
+ <name>
544
+ <surname>Morrison</surname>
545
+ <given-names>I</given-names>
546
+ </name>
547
+ <name>
548
+ <surname>Smith</surname>
549
+ <given-names>R</given-names>
550
+ </name>
551
+ </person-group>
552
+ <article-title>Hamster health care</article-title>
553
+ <source>BMJ</source>
554
+ <year>2000</year>
555
+ <volume>321</volume>
556
+ <fpage>1541</fpage>
557
+ <lpage>1542</lpage>
558
+ <pub-id pub-id-type="pmid">11124164</pub-id>
559
+ </element-citation>
560
+ </ref>
561
+ <ref id="B16">
562
+ <label>16</label>
563
+ <element-citation publication-type="journal">
564
+ <person-group person-group-type="author">
565
+ <name>
566
+ <surname>Arber</surname>
567
+ <given-names>S</given-names>
568
+ </name>
569
+ <name>
570
+ <surname>Sawyer</surname>
571
+ <given-names>L</given-names>
572
+ </name>
573
+ </person-group>
574
+ <article-title>Do appointment systems work?</article-title>
575
+ <source>BMJ</source>
576
+ <year>1982</year>
577
+ <volume>284</volume>
578
+ <fpage>478</fpage>
579
+ <lpage>480</lpage>
580
+ <pub-id pub-id-type="pmid">6800503</pub-id>
581
+ </element-citation>
582
+ </ref>
583
+ <ref id="B17">
584
+ <label>17</label>
585
+ <element-citation publication-type="journal">
586
+ <person-group person-group-type="author">
587
+ <name>
588
+ <surname>Hjortdahl</surname>
589
+ <given-names>P</given-names>
590
+ </name>
591
+ <name>
592
+ <surname>Borchgrevink</surname>
593
+ <given-names>CF</given-names>
594
+ </name>
595
+ </person-group>
596
+ <article-title>Continuity of care: influence of general practitioners' knowledge about their patients on use of resources in consultations</article-title>
597
+ <source>BMJ</source>
598
+ <year>1991</year>
599
+ <volume>303</volume>
600
+ <fpage>1181</fpage>
601
+ <lpage>1184</lpage>
602
+ <pub-id pub-id-type="pmid">1747619</pub-id>
603
+ </element-citation>
604
+ </ref>
605
+ <ref id="B18">
606
+ <label>18</label>
607
+ <element-citation publication-type="journal">
608
+ <person-group person-group-type="author">
609
+ <name>
610
+ <surname>Howie</surname>
611
+ <given-names>JGR</given-names>
612
+ </name>
613
+ <name>
614
+ <surname>Hopton</surname>
615
+ <given-names>JL</given-names>
616
+ </name>
617
+ <name>
618
+ <surname>Heaney</surname>
619
+ <given-names>DJ</given-names>
620
+ </name>
621
+ <name>
622
+ <surname>Porter</surname>
623
+ <given-names>AMD</given-names>
624
+ </name>
625
+ </person-group>
626
+ <article-title>Attitudes to medical care, the organization of work, and stress among general practitioners</article-title>
627
+ <source>Br J Gen Pract</source>
628
+ <year>1992</year>
629
+ <volume>42</volume>
630
+ <fpage>181</fpage>
631
+ <lpage>185</lpage>
632
+ <pub-id pub-id-type="pmid">1389427</pub-id>
633
+ </element-citation>
634
+ </ref>
635
+ <ref id="B19">
636
+ <label>19</label>
637
+ <element-citation publication-type="book">
638
+ <person-group person-group-type="author">
639
+ <name>
640
+ <surname>Freeman</surname>
641
+ <given-names>G</given-names>
642
+ </name>
643
+ <name>
644
+ <surname>Shepperd</surname>
645
+ <given-names>S</given-names>
646
+ </name>
647
+ <name>
648
+ <surname>Robinson</surname>
649
+ <given-names>I</given-names>
650
+ </name>
651
+ <name>
652
+ <surname>Ehrich</surname>
653
+ <given-names>K</given-names>
654
+ </name>
655
+ <name>
656
+ <surname>Richards</surname>
657
+ <given-names>SC</given-names>
658
+ </name>
659
+ <name>
660
+ <surname>Pitman</surname>
661
+ <given-names>P</given-names>
662
+ </name>
663
+ </person-group>
664
+ <source>Continuity of care: report of a scoping exercise for the national co-ordinating centre for NHS Service Delivery and Organisation R&#x0026;D (NCCSDO), Summer 2000</source>
665
+ <year>2001</year>
666
+ <publisher-loc>London</publisher-loc>
667
+ <publisher-name>NCCSDO</publisher-name>
668
+ <comment><ext-link ext-link-type="url" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://www.sdo.lshtm.ac.uk/continuityofcare.htm">www.sdo.lshtm.ac.uk/continuityofcare.htm</ext-link> (accessed 2 Jan 2002)</comment>
669
+ </element-citation>
670
+ </ref>
671
+ <ref id="B20">
672
+ <label>20</label>
673
+ <element-citation publication-type="journal">
674
+ <person-group person-group-type="author">
675
+ <name>
676
+ <surname>Wilson</surname>
677
+ <given-names>A</given-names>
678
+ </name>
679
+ <name>
680
+ <surname>McDonald</surname>
681
+ <given-names>P</given-names>
682
+ </name>
683
+ <name>
684
+ <surname>Hayes</surname>
685
+ <given-names>L</given-names>
686
+ </name>
687
+ <name>
688
+ <surname>Cooney</surname>
689
+ <given-names>J</given-names>
690
+ </name>
691
+ </person-group>
692
+ <article-title>Longer booking intervals in general practice: effects on doctors' stress and arousal</article-title>
693
+ <source>Br J Gen Pract</source>
694
+ <year>1991</year>
695
+ <volume>41</volume>
696
+ <fpage>184</fpage>
697
+ <lpage>187</lpage>
698
+ <pub-id pub-id-type="pmid">1878267</pub-id>
699
+ </element-citation>
700
+ </ref>
701
+ <ref id="B21">
702
+ <label>21</label>
703
+ <element-citation publication-type="journal">
704
+ <person-group person-group-type="author">
705
+ <name>
706
+ <surname>De Maeseneer</surname>
707
+ <given-names>J</given-names>
708
+ </name>
709
+ <name>
710
+ <surname>Hjortdahl</surname>
711
+ <given-names>P</given-names>
712
+ </name>
713
+ <name>
714
+ <surname>Starfield</surname>
715
+ <given-names>B</given-names>
716
+ </name>
717
+ </person-group>
718
+ <article-title>Fix what's wrong, not what's right, with general practice in Britain</article-title>
719
+ <source>BMJ</source>
720
+ <year>2000</year>
721
+ <volume>320</volume>
722
+ <fpage>1616</fpage>
723
+ <lpage>1617</lpage>
724
+ <pub-id pub-id-type="pmid">10856043</pub-id>
725
+ </element-citation>
726
+ </ref>
727
+ <ref id="B22">
728
+ <label>22</label>
729
+ <element-citation publication-type="journal">
730
+ <person-group person-group-type="author">
731
+ <name>
732
+ <surname>Freeman</surname>
733
+ <given-names>G</given-names>
734
+ </name>
735
+ <name>
736
+ <surname>Hjortdahl</surname>
737
+ <given-names>P</given-names>
738
+ </name>
739
+ </person-group>
740
+ <article-title>What future for continuity of care in general practice?</article-title>
741
+ <source>BMJ</source>
742
+ <year>1997</year>
743
+ <volume>314</volume>
744
+ <fpage>1870</fpage>
745
+ <lpage>1873</lpage>
746
+ <pub-id pub-id-type="pmid">9224130</pub-id>
747
+ </element-citation>
748
+ </ref>
749
+ <ref id="B23">
750
+ <label>23</label>
751
+ <element-citation publication-type="journal">
752
+ <person-group person-group-type="author">
753
+ <name>
754
+ <surname>Kibbe</surname>
755
+ <given-names>DC</given-names>
756
+ </name>
757
+ <name>
758
+ <surname>Bentz</surname>
759
+ <given-names>E</given-names>
760
+ </name>
761
+ <name>
762
+ <surname>McLaughlin</surname>
763
+ <given-names>CP</given-names>
764
+ </name>
765
+ </person-group>
766
+ <article-title>Continuous quality improvement for continuity of care</article-title>
767
+ <source>J Fam Pract</source>
768
+ <year>1993</year>
769
+ <volume>36</volume>
770
+ <fpage>304</fpage>
771
+ <lpage>308</lpage>
772
+ <pub-id pub-id-type="pmid">8454977</pub-id>
773
+ </element-citation>
774
+ </ref>
775
+ <ref id="B24">
776
+ <label>24</label>
777
+ <element-citation publication-type="journal">
778
+ <person-group person-group-type="author">
779
+ <name>
780
+ <surname>Williams</surname>
781
+ <given-names>M</given-names>
782
+ </name>
783
+ <name>
784
+ <surname>Neal</surname>
785
+ <given-names>RD</given-names>
786
+ </name>
787
+ </person-group>
788
+ <article-title>Time for a change? The process of lengthening booking intervals in general practice</article-title>
789
+ <source>Br J Gen Pract</source>
790
+ <year>1998</year>
791
+ <volume>48</volume>
792
+ <fpage>1783</fpage>
793
+ <lpage>1786</lpage>
794
+ <pub-id pub-id-type="pmid">10198490</pub-id>
795
+ </element-citation>
796
+ </ref>
797
+ </ref-list>
798
+ <fn-group>
799
+ <fn>
800
+ <p>Funding: Meetings of the working group in 1999-2000 were funded by the Scientific Foundation Board of the RCGP.</p>
801
+ </fn>
802
+ <fn>
803
+ <p>Competing interests: None declared.</p>
804
+ </fn>
805
+ </fn-group>
806
+ </back>
807
+ </article>