2006 Text3

Text 3

When prehistoric man arrived in new parts of the world, something strange happened to the large animals: they suddenly became extinct. Smaller species survived. The large, slow-growing animals were easy game, and were quickly hunted to extinction. Now something similar could be happening in the oceans.

That the seas are being overfished has been known for years. What researchers such as Ransom Myers and Boris Worm have shown is just how fast things are changing. They have looked at half a century of data from fisheries around the world. Their methods do not attempt to estimate the actual biomass (the amount of living biological matter) of fish species in particular parts of the ocean, but rather changes in that biomass over time. According to their latest paper published in Nature, the biomass of large predators (animals that kill and eat other animals) in a new fishery is reduced on average by 80% within 15 years of the start of exploitation. In some long-fished areas, it has halved again since then.

Dr. Worm acknowledges that these figures are conservative. One reason for this is that fishing technology has improved. Today’s vessels can find their prey using satellites and sonar, which were not available 50 years ago. That means a higher proportion of what is in the sea is being caught, so the real difference between present and past is likely to be worse than the one recorded by changes in catch sizes. In the early days, too, longlines would have been more saturated with fish. Some individuals would therefore not have been caught, since no baited hooks would have been available to trap them, leading to an underestimate of fish stocks in the past. Furthermore, in the early days of longline fishing, a lot of fish were lost to sharks after they had been hooked. That is no longer a problem, because there are fewer sharks around now.

Dr. Myers and Dr. Worm argue that their work gives a correct baseline, which future management efforts must take into account. They believe the data support an idea current among marine biologists, that of the “shifting baseline”. The notion is that people have failed to detect the massive changes which have happened in the ocean because they have been looking back only a relatively short time into the past. That matters because theory suggests that the maximum sustainable yield that can be cropped from a fishery comes when the biomass of a target species is about 50% of its original levels. Most fisheries are well below that, which is a bad way to do business.

 

31. The extinction of large prehistoric animals is noted to suggest that ________.

[A] large animals were vulnerable to the changing environment

[B] small species survived as large animals disappeared

[C] large sea animals may face the same threat today

[D] slow-growing fish outlive fast-growing ones

32. We can infer from Dr. Myers and Dr. Worm’s paper that ________.

[A] the stock of large predators in some old fisheries has reduced by 90%

[B] there are only half as many fisheries as there were 15 years ago

[C] the catch sizes in new fisheries are only 20% of the original amount

[D] the number of large predators dropped faster in new fisheries than in the old

33. By saying “these figures are conservative” (Line 1, paragraph 3), Dr. Worm means that ________.

[A] fishing technology has improved rapidly [B] then catch-sizes are actually smaller than recorded

[C] the marine biomass has suffered a greater loss [D] the data collected so far are out of date

34. Dr. Myers and other researchers hold that ________.

[A] people should look for a baseline that can work for a longer time

[B] fisheries should keep their yields below 50% of the biomass

[C] the ocean biomass should be restored to its original level

[D] people should adjust the fishing baseline to the changing situation

35. The author seems to be mainly concerned with most fisheries’ ________.

[A] management efficiency [B] biomass level

[C] catch-size limits [D] technological application

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
您可以使用以下示例代码来创建WPF TextBlock滚动动画: ```XAML <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="350" Width="525"> <Grid> <ScrollViewer VerticalScrollBarVisibility="Disabled" HorizontalScrollBarVisibility="Disabled"> <TextBlock x:Name="myTextBlock" TextWrapping="Wrap" FontSize="24" Text="This is some sample text that will be scrolled horizontally."/> </ScrollViewer> </Grid> </Window> ``` 在代码中,我们使用了一个ScrollViewer控件来包含TextBlock,并将其水平和垂直滚动条的可见性设置为禁用。这将使TextBlock只能在ScrollViewer内滚动。 接下来,我们需要在代码中添加动画。我们将使用DoubleAnimation来使TextBlock水平滚动。以下是示例代码: ```C# using System.Windows; using System.Windows.Controls; using System.Windows.Media.Animation; namespace WpfApplication1 { public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); DoubleAnimation animation = new DoubleAnimation(); animation.From = 0; animation.To = -myTextBlock.ActualWidth; animation.RepeatBehavior = RepeatBehavior.Forever; animation.Duration = new Duration(new TimeSpan(0, 0, 10)); //设置滚动时间 TranslateTransform trans = new TranslateTransform(); myTextBlock.RenderTransform = trans; trans.BeginAnimation(TranslateTransform.XProperty, animation); } } } ``` 在代码中,我们创建了一个DoubleAnimation对象,并将其From和To属性设置为0和负TextBlock宽度,以使TextBlock水平滚动。我们还将RepeatBehavior属性设置为Forever,以使动画永远重复。最后,我们设置了动画的持续时间,并将其应用于TextBlock的RenderTransform属性。这将使TextBlock滚动。 运行应用程序后,您将看到TextBlock在屏幕上水平滚动。您可以调整动画的持续时间,以使滚动速度更快或更慢。您还可以使用其他动画属性来自定义动画。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值