如何添加引文標_如何在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.pswp.cn/news/278453.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278453.shtml
英文地址,請注明出處:http://en.pswp.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的…