Journalists have the ability to state a thing more clearly. What can we learn from them to help us report or explain things like them?

There are six ways as follows:

1. Know your audience and adapt your voice accordingly (认清受众。对应调整声音)

Spend some time carefully defining who you want to read your content and figuring out their interests and behaviors.

2. Understand five determinants of "newsworthiness" (明确“新闻报道价值”的五个决定性因素)

Timing, Significance, Proximity, Prominence, Interest.

Proximity: Is the topic close enough to readers for it to pique their attention?

Prominence: Put simply, why should people care?

3. There are lots of facts, but only one core story (事实有非常多,但核心仅仅有一个)

Remenber that, as a content marketer, the first goal is storytelling.

Draw readers in with text that entertains them, gives them answers and makes them want to learn more, then close everything out with a conclusion that ties it all together and reinforces what you've just said.

4.  Support your claims (支持你的说法)

No journalist would send his or her editor an article full of unsupported statements.

Beyond a credibility boost, supplementing what you say can also help readers make sense of more complex subjects.

5.  Package and Repackage your content (不断包装你的内容)

Quality content has potential beyond a single piece of text.

When you're brainstorming, try thinking about ideas in a broader sense.

6.  If you haven't done the necessary legwork, it's going to show (假设没有搜集工作,别人会知道的)

When someone choose to read your content, they're dedicating part of their day to checking out what you have to say.

Show them you value their time and they'll respond by coming back for more.

这六点事实上告诉了我们在写文章或者在说话时要注意的地方。

首先。我们应该弄清楚我们的对象是谁。你不可能给一个艺术家去谈论你的科技问题吧

其次, 要明确意义,重要性,一些毫无意义的东西给读者看。那不是浪费人家时间

然后。 我们的精力是有限的,要有核心和重点,不能范谈,由于这样会让人看了半天不知所以然

再, 要有支持的观念,还要包装,就是举一反三,帮助更好地理解

最后, 一定要有积累。你都没有预先准备好,那写出来的东西会不会就非常空洞呢!

Six ways to think like a journalist!的更多相关文章

  1. [LeetCode] Different Ways to Add Parentheses 添加括号的不同方式

    Given a string of numbers and operators, return all possible results from computing all the differen ...

  2. [LeetCode] Decode Ways 解码方法

    A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - ...

  3. Decode Ways

    https://leetcode.com/problems/decode-ways/ A message containing letters from A-Z is being encoded to ...

  4. 【LeetCode】241. Different Ways to Add Parentheses

    Different Ways to Add Parentheses Given a string of numbers and operators, return all possible resul ...

  5. [Leetcode] Decode Ways

    A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - ...

  6. Three ways to set specific DeviceFamily XAML Views in UWP

    Three ways to set specific DeviceFamily XAML Views in UWP http://igrali.com/2015/08/02/three-ways-to ...

  7. 241. Different Ways to Add Parentheses

    241. Different Ways to Add Parentheses https://leetcode.com/problems/different-ways-to-add-parenthes ...

  8. Different Ways to Add Parentheses

    Given a string of numbers and operators, return all possible results from computing all the differen ...

  9. 【leetcode】Decode Ways(medium)

    A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - ...

随机推荐

  1. JavaScript: 2015 年回顾与展望

    链接:http://www.sitepoint.com/javascript-2015-review/ JavaScript经历了一个不平凡的一年.尽管到5月份已经20年了,关于JS的新闻.项目和兴趣 ...

  2. python - 路径处理 和 模块导入

    # -*- coding:utf-8 -*- '''@project: jiaxy@author: Jimmy@file: study_模块导入.py@ide: PyCharm Community E ...

  3. python之路 --- python模块初认识&数据类型

    一.模块初识 首先,文件名不能和导入的模块名称一样.因为系统默认先从当前文件寻找模块名,如果文件名和导入的模块名称一样的话,就相当于自己调用自己,会找不到相应的方法的. sys模块 sys.path  ...

  4. 使用SpringMVC参数传递时,解决get请求时中文乱码的问题

    问题描述: 使用SpringMVC参数传递时, 遇到get请求中文信息时,页面应答会显示中文乱码. 解决办法: 一,  我们需要把request.getParameter(“参数名”)获取到的字符串先 ...

  5. struts2和spring的两种整合方式

    首先,来看看如何让Spring 来管理Action. 在struts.xml中加入 <constant name="struts.objectFactory" value=& ...

  6. BZOJ 2330 [SCOI2011]糖果 ——差分约束系统 SPFA

    最小值求最长路. 最大值求最短路. 发现每个约束条件可以转化为一条边,表示一个点到另外一个点至少要加上一个定值. 限定了每一个值得取值下界,然后最长路求出答案即可. 差分约束系统,感觉上更像是两个变量 ...

  7. BZOJ 4555 [Tjoi2016&Heoi2016]求和 ——分治 NTT 多项式求逆

    不想多说了,看网上的题解吧,我大概说下思路. 首先考察Stirling的意义,然后求出递推式,变成卷积的形式. 然后发现贡献是一定的,我们可以分治+NTT. 也可以直接求逆(我不会啊啊啊啊啊) #in ...

  8. BZOJ4916 神犇和蒟蒻 【欧拉函数 + 杜教筛】

    题目 很久很久以前,有一只神犇叫yzy; 很久很久之后,有一只蒟蒻叫lty; 输入格式 请你读入一个整数N;1<=N<=1E9,A.B模1E9+7; 输出格式 请你输出一个整数A=\sum ...

  9. UVA12206 Stammering Aliens 【SAM 或 二分 + hash】

    题意 求一个串中出现至少m次的子串的最大长度,对于最大长度,求出最大的左端点 题解 本来想练哈希的,没忍住就写了一个SAM SAM拿来做就很裸了 只要检查每个节点的right集合大小是否不小于m,然后 ...

  10. 我最喜欢的XML(三种方式)

    我最喜欢的方式 下面的三个 XML 文档包含完全相同的信息: 第一个例子中使用了 date 属性: <note date="08/08/2008"> <to> ...