Chatgpt论文润色指令整理

1. 内容润色

这个来自文章《three ways ChatGPT helps me in my academic writing》。

  1. 在输入你要润色的内容前,先输入以下内容来驯化chatgpt的身份:
I’m writing a paper on [话题] for a leading [学科/杂志] academic journal. What I tried to say in the following section is [具体观点]. Please rephrase it for clarity, coherence and conciseness, ensuring each paragraph flows into the next. Remove jargon. Use a professional tone.
我正在为一家领先的 [学科] 学术期刊撰写一篇关于 [主题] 的论文。我在以下部分试图表达的是 [具体观点]。请重新措辞,使其清晰、连贯且简洁,确保每一段都与下一段连贯。删除行话。使用专业的语气。
  1. 如果它的回答没有完全达到目标,输入提示:
This isn’t quite what I meant. Let’s adjust this part. Let’s make it more persuasive, okay?”
这不太符合我的本意,我们把这部分修改一下,让它更有说服力一点,好吗?”

或者

This is much clearer, but let’s tweak the ending for a stronger transition to the next section. Can you help me with that?
这样就清楚多了,但让我们调整一下结尾,以便更好地过渡到下一部分。你能帮我吗?

2. 改写别人的语句:

找文献的时候看到你认可或者能用上的观点就复制起来,然后自己修改一下再喂给chatgpt让它帮你改,指令如下:

请将这段话改写,通过调整语序增减字数,替换同义词等方式,避免与原文出现连续8个字相同的句子,使这段话更有逻辑,符合论文的规范。

3. 改写自己的句子

提高文本清晰度

  1. 例一
Replace all transition words and conjunctions in the sentences with the academic used ones. Use simple expressions, avoiding complex vocabulary. Ensure the logical connections between sentences are clear.
句子中的过渡词和连词全部用学术常用词替换,尽量使用简单的表达方式,避免使用复杂的词汇,确保句子之间的逻辑联系清晰。
  1. 例二
Replace all transition words and conjunctions in the sentences with the most basic and commonly used ones. Use simple expressions, avoiding complex vocabulary. 
将所有的句子过渡词和连接词替换为最基础、最常用的词语。尽量使用简单、直接的表达方式,避免使用复杂或生僻的词汇。
  1. 例三
Rewrite the above text. The writing style should be academic writing. Ensure that every sentence has a clear subject. Avoid using long or complex sentences. Use short sentences as much as possible.
将以上文字重新修改,写作风格是书面学术写作。确保所有的句子都有主语,不要用复杂的长难句,尽量用短句输出。替换掉所有的非日常词汇。
  1. 例四
Please identify any parts of my writing that may be difficult for a lay audience to understand. And suggest alternatives.
请指出我的写作中可能难以被普通读者理解的部分。并提出替代方案

改进文本的结构和流程

  1. 例一
I want to improve the overall structure of [my Specific Aims]. What tips do you have to structure it more effectively?
我想改进我的[具体目标]的整体结构。有什么建议可以使结构更有效?
  1. 例二
Can you recommend an effective way to organize my Significance section to highlight the innovative aspects of our approach?
为了突出我的研究的意义及创新性,你有哪些建议?
  1. 例三
Please provide detailed feedback on the flow and sequence of my research strategy.
请对我的研究策略的流程和顺序提供详细反馈。

4. AI 审稿

模拟同行审稿指令:

Assume you’re an expert and seasoned scholar with 30+ years of academic experience in [可替换Environmental Science]. On the basis of my summary, provide a detailed review, including: 1) core content discussion; 2) limitations identification; 3) significance of each limitation. Keep it concise and professional, please.
假设您是一位专家和经验丰富的学者,在环境科学领域拥有 30 多年的学术经验。请根据我的总结提供详细的评论,包括:1)核心内容讨论;2)局限性识别;3)每个局限性的重要性。请保持简洁和专业。

以上指令来自网络上的各种资料,以后会慢慢持续添加^^

Linux的SPI(Serial Peripheral Interface)是一种串行外设接口,用于微控制器和外部设备之间的通信。为了测试SPI功能是否正常工作,我们可以编写一个简单的SPI测试程序。 首先,我们需要确保SPI驱动程序已经正确加载到Linux内核中。可以使用`lsmod`命令查看已加载的模块。如果没有加载SPI驱动模块,可以使用`modprobe`命令加载相应的模块。 接下来,在Linux中,SPI设备文件通常位于`/dev`目录下,命名为`spidevX.Y`,其中`X`表示SPI控制器的编号,`Y`表示SPI设备的编号。可以使用`ls /dev/spidev*`命令来查看可用的SPI设备。 然后,我们可以使用C或Python编写一个简单的SPI测试程序。下面是一个示例程序,使用C语言编写: ```c #include <stdio.h> #include <stdint.h> #include <fcntl.h> #include <unistd.h> #include <linux/spi/spidev.h> int main() { int spiDevFD; uint8_t txBuf[3] = {0x01, 0x02, 0x03}; uint8_t rxBuf[3]; spiDevFD = open("/dev/spidev0.0", O_RDWR); if (spiDevFD < 0) { perror("Failed to open SPI device"); return -1; } struct spi_ioc_transfer spi; spi.tx_buf = (unsigned long)txBuf; spi.rx_buf = (unsigned long)rxBuf; spi.len = sizeof(txBuf); spi.delay_usecs = 0; spi.bits_per_word = 8; if (ioctl(spiDevFD, SPI_IOC_MESSAGE(1), &spi) < 0) { perror("SPI transfer failed"); return -1; } close(spiDevFD); printf("Received data: "); for (int i = 0; i < sizeof(rxBuf); ++i) { printf("%02x ", rxBuf[i]); } printf("\n"); return 0; } ``` 这个程序假设SPI控制器编号为0,设备编号为0。在`txBuf`中放置要发送的数据,`rxBuf`用于接收从外设返回的数据。程序通过`open`函数打开SPI设备文件,然后使用`ioctl`函数发送SPI数据包。最后,通过打印接收到的数据,确认SPI通信是否正常。 编译并运行这个程序,可以得到SPI通信的结果。 总结来说,通过加载SPI驱动模块、打开SPI设备文件、设置SPI传输参数,我们可以编写一个简单的SPI测试程序来测试Linux下的SPI功能。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值