如何添加引文标_如何在Google文档中查找和添加引文

如何添加引文标

如何添加引文标

Google Docs Logo

When writing papers, you need to generate a detailed and accurate list of all the sources you’ve cited in your paper. With Google Docs, you can easily find and then add citations to all of your research papers.

撰写论文时,您需要生成详细准确的清单,列出在论文中引用的所有来源。 借助Google文档,您可以轻松地找到引文,然后将其添加到所有研究论文中。

Fire up your browser, head over to Google Docs, and open up a document. At the bottom of the right side, click the “Explore” icon to open up a panel on the right.

启动浏览器,转到Google文档,然后打开一个文档。 在右侧底部,单击“浏览”图标以打开右侧的面板。

Alternatively, press Ctrl+Alt+Shift+I on Windows/Chrome OS or Cmd+Option+Shift+I on macOS to open it using the keyboard shortcut.

或者,在Windows / Chrome操作系统上按Ctrl + Alt + Shift + I,在MacOS上按Cmd + Option + Shift + I使用键盘快捷键将其打开。

Click the Explore icon.

Explore is kind of like the Google Assistant of Docs. When you open the tool, it parses your document for related topics to speed up web searches and images you can add in Docs.

探索有点像Google文档的Google助手。 当您打开该工具时,该工具会解析您的文档以获取相关主题,以加快可在文档中添加的网络搜索和图像。

If Google Explore find related topics in your document, it will suggest them as soon as the tool opens.

If Explore isn’t able to find anything relatable in your document, type what you’re looking for in the search bar and hit the “Enter” key to search the web manually.

如果资源管理器无法在文档中找到任何相关内容,请在搜索栏中键入您要查找的内容,然后按“ Enter”键以手动搜索网络。

Otherwise, type what you're looking for into the search bar and hit Enter.

Click the three vertical dots and choose what style of citation you want to use. The options are MLA, APA, and Chicago styles.

单击三个垂直点,然后选择要使用的引用样式。 选项包括MLA,APA和Chicago样式。

Next, to choose what style of citation you want to use, click More, and then click one of the styles provided.

Next, highlight the text—or place the text cursor— where you want to add a citation to, hover over the search result in the Explore panel, and then click the “Cite as footnote” icon that appears.

接下来,突出显示文本(或将文本光标放置在要添加引文的位置),将鼠标悬停在“浏览”面板中的搜索结果上方,然后单击出现的“引用为脚注”图标。

Highlight some text or place the cursor where you want to cite something, and then click the quotations icon that appears when hovering over a link.

After you click the icon, Docs will number the citation and cite the link in a footnote of the page.

单击图标后,文档将为引用编号,并在页面的脚注中引用链接。

Google docs automatically places a superscript number at the cursor and places the source in a footnote in the style of citation you chose.


You can add as many as you need for your document. Redo the search and click the “Cite as footnote” icon beside each result to have Docs automatically compile citations for you.

您可以根据需要添加任意数量的文档。 重做搜索,然后单击每个结果旁边的“引用为脚注”图标,以使Docs自动为您编译引用。

翻译自: https://www.howtogeek.com/440835/how-to-find-and-add-citations-in-google-docs/

如何添加引文标

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/278453.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mongo ttl索引

db.log_events.find() # 查找log_events里的所有数据db.log_events.createIndex( { "LogDT": 1 }, { expireAfterSeconds: 3600 } ) #设置log_events里的TTL过期索引清理时间为3600秒db.runComman…

Linux Centos下SQL Server 2017安装和配置

Linux Centos下SQL Server 2017安装和配置 原文:Linux Centos下SQL Server 2017安装和配置我们知道在Linux下安装服务有很多方式,最为简单的也就是yum安装,但是很多服务通过yum是无法安装的,如果想使用yum安装,需要指定yum安装仓库…

如何在Linux上使用端口敲门(以及为什么不应该这样做)

Photographee.eu/ShutterstockPhotographee.eu/ShutterstockPort knocking is a way to secure a server by closing firewall ports—even those you know will be used. Those ports are opened on demand if—and only if—the connection request provides the secret knoc…

小到年货大到产业,刘村长的扶贫模式有点厉害!

河北省阜平县平石头村的村民,今年春节再也不用头疼买什么年货,去哪买年货的问题了,因为他们的“村长”刘强东,给每户人家都送来了年货大礼包!大礼包里不仅有牛奶、果汁、毛衣、长裤、波司登羽绒服、枕头、毛巾、炊大皇…

java - 匿名类

匿名内部类 概念:即内部类的简化写法 前提:存在一个类(可以是具体类也可以是抽象类)或接口 格式:new 类名或接口名{重写的方法} 本质:创建的是继承了类或实现了接口的子类匿名对 象。 匿名类总是final&…

leetcode 342. Power of Four

没想出来不用循环的。记录下。 如果是2的次方&#xff0c;必有num & (nums - 1) bool isPowerOfFour(int num) {if (num < 1) return false;if (num & (num - 1)) return false; // 排除不是2的倍数if (num & 0x55555555) return true; // 排除不是4的倍数&am…

克隆ubuntu硬盘_使用Ubuntu Live CD克隆硬盘

克隆ubuntu硬盘Whether you’re setting up multiple computers or doing a full backup, cloning hard drives is a common maintenance task. Don’t bother burning a new boot CD or paying for new software – you can do it easily with your Ubuntu Live CD. 无论是设置…

页面缓存处理的几种方法

html只要加在头部就可以了. <HEAD> <META HTTP-EQUIV"Pragma" CONTENT"no-cache"> <META HTTP-EQUIV"Cache-Control" CONTENT"no-cache"> <META HTTP-EQUIV"Expires" CONTENT"0"> </H…

Nginx的Mainline version、Stable version、Legacy version的版本区别

Nginx官网提供了三个类型的版本Mainline version&#xff1a;Mainline 是 Nginx 目前主力在做的版本&#xff0c;可以说是开发版Stable version&#xff1a;最新稳定版&#xff0c;生产环境上建议使用的版本Legacy versions&#xff1a;遗留的老版本的稳定版 nginx下载地址&…

从Boxee的Amie Street访问音乐

One of our favorite sites for discovering new music is Amie Street. Today we take a look at the Amie Street app for Boxee that allows you to access your favorite tunes from the Boxee interface. 我们最喜欢的发现新音乐的网站之一是Amie Street。 今天&#xff0…

redis学习目录

redis学习目录 redis安装 说明 python中使用 centos7安装redis redis.conf配置信息详解 redis主从同步 redis持久化 RDB与AOF redis不重启,切换到RDB备份到AOF备份 redis哨兵功能 redis-cluster(集群) 转载于:https://www.cnblogs.com/yuncong/p/10293624.html

如何在SpringBoot项目中使用拦截器

相比springmvc&#xff0c;springboot中拦截器不需要在xml中配置&#xff0c;只需定义拦截器类 implements HandlerInterceptor 和拦截器拦截路径的配置类extends WebMvcConfigurerAdapter 1.SessionInterceptor package com.example.demo;import org.springframework.web.serv…

如何在Word,Excel和PowerPoint 2010中裁剪图片

When you add pictures to your Office documents you might need to crop them to remove unwanted areas, or isolate a specific part. Today we’ll take a look at how to crop images in Office 2010. 将图片添加到Office文档时&#xff0c;可能需要裁剪它们以删除不需要…

Python 调度算法 死锁 静动态链接 分页分段

1 select poll epoll的区别基本上select有3个缺点: 连接数受限查找配对速度慢数据由内核拷贝到用户态poll改善了第一个缺点 epoll改了三个缺点. (1&#xff09;select&#xff0c;poll实现需要自己不断轮询所有fd集合&#xff0c;直到设备就绪&#xff0c;期间可能要睡眠和唤醒…

在Windows 7 Media Center中创建音乐播放列表

One of the new features in Windows 7 Media Center is the ability to easily create music playlists without using Media Player. Today we’ll take a closer look at how to create them directly in Media Center. Windows 7 Media Center的新功能之一是无需使用Media …

(转)WebSphere的web工程中怎么获取数据源

原文&#xff1a;http://aguu125.iteye.com/blog/1694313 https://blog.csdn.net/bigtree_3721/article/details/44900325-------JNDI之java:comp/env was配置数据源和tomcat是不同的。tomcat只需要配置tomcat 的service.xml或者content.xml&#xff0c;然后 WEB程序就不需要配…

阿里数据库内核月报:2017年04月

摘要&#xff1a;阿里数据库内核月报&#xff1a;2017年04月# 01 MySQL 源码分析 MySQL 半同步复制数据一致性分析# 02 MYSQL 新特性 MySQL 8.0对Parser所做的改进# 03 MySQL 引擎介绍 Sphinx源码剖析&#xff08;二&#xff09;# 04 PgSQL 特性分析 checkpoint机制浅析…

SQL Server2008导入导出数据库

一、导出数据库 1.新建一个.bak的文本 右击数据库--》Tasks--》BackUp--》Remove原来的数据库--》Add后选择之前建立的.bak档 二、导入数据库 1.右击数据库--》Tasks--》Restore--》Database--》From device--》勾选数据库之后--》点击左上角Options--》点击 --》OK覆盖 转载于…

如何使YouTube视频连续循环播放

Should you need a YouTube video on a continuous loop, a few methods can help you keep repeating a video without having to start it over manually. Here’s how to do it. 如果您需要连续循环播放YouTube视频&#xff0c;可以采用以下几种方法来继续播放视频&#xff…

Android ABI

2019独角兽企业重金招聘Python工程师标准>>> 获取当前ABI var supportsABIs:Array<String>? null if(Build.VERSION.SDK_INT > 21) {supportsABIs Build.SUPPORTED_ABIS } var currentABI Build.CPU_ABI 通过Build可以获取当前手机支持的abi集以及cpu的…