Six ways to think like a journalist!
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!的更多相关文章
- [LeetCode] Different Ways to Add Parentheses 添加括号的不同方式
Given a string of numbers and operators, return all possible results from computing all the differen ...
- [LeetCode] Decode Ways 解码方法
A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - ...
- Decode Ways
https://leetcode.com/problems/decode-ways/ A message containing letters from A-Z is being encoded to ...
- 【LeetCode】241. Different Ways to Add Parentheses
Different Ways to Add Parentheses Given a string of numbers and operators, return all possible resul ...
- [Leetcode] Decode Ways
A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - ...
- 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 ...
- 241. Different Ways to Add Parentheses
241. Different Ways to Add Parentheses https://leetcode.com/problems/different-ways-to-add-parenthes ...
- Different Ways to Add Parentheses
Given a string of numbers and operators, return all possible results from computing all the differen ...
- 【leetcode】Decode Ways(medium)
A message containing letters from A-Z is being encoded to numbers using the following mapping: 'A' - ...
随机推荐
- Java 程序动态替换 docx 模板中定制值的实现例子
项目系统中打印功能,导出 word 文档功能是挺常用的,本文介绍自定文档模板,程序实现模板内容中值替代的功能. 模板文件 template.docx 执行 main public static v ...
- Spring事务管理接口PlatformTransactionManager的实现类DataSourceTransactionManager
package org.springframework.jdbc.datasource; import java.sql.Connection; import java.sql.SQLExceptio ...
- 九度oj 题目1370:数组中出现次数超过一半的数字
题目描述: 数组中有一个数字出现的次数超过数组长度的一半,请找出这个数字.例如输入一个长度为9的数组{1,2,3,2,2,2,5,4,2}.由于数字2在数组中出现了5次,超过数组长度的一半,因此输出2 ...
- BZOJ 3626 [LNOI2014]LCA ——树链剖分
思路转化很巧妙. 首先把询问做差分. 然后发现加入一个点就把路径上的点都+1,询问的时候直接询问到根的路径和. 这样和原问题是等价的,然后树链剖分+线段树就可以做了. #include <map ...
- BZOJ4819 [Sdoi2017]新生舞会 【01分数规划 + 费用流】
题目 学校组织了一次新生舞会,Cathy作为经验丰富的老学姐,负责为同学们安排舞伴.有n个男生和n个女生参加舞会 买一个男生和一个女生一起跳舞,互为舞伴.Cathy收集了这些同学之间的关系,比如两个人 ...
- BZOJ3160 万径人踪灭 【fft + manacher】
题解 此题略神QAQ orz po神牛 由题我们知道我们要求出: 回文子序列数 - 连续回文子串数 我们记为ans1和ans2 ans2可以用马拉车轻松解出,这里就不赘述了 问题是ans1 我们设\( ...
- js使用笔记
js使用技巧总结 1,onclick有效是结合alter弹出框 <!DOCTYPE html> <html> <head lang="en"> ...
- poj 3708 Recurrent Function
Recurrent Function Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 1233 Accepted: 336 ...
- 【BZOJ3529】数表(莫比乌斯反演,BIT,自然溢出)
题意: 思路: #include<cstdio> #include<cstring> #include<string> #include<cmath> ...
- 【CF707B】Bakery(想法题)
题意: 有N个城市,M条无向边,其中有K个城市是仓库 现在要在非仓库的城市中选择一家开面包店,使得其最少与一个仓库联通,且到所有仓库距离的最小值最小 (1 ≤ n, m ≤ 10^5, 0 ≤ k ≤ ...