From 9b6e1de61367b77cbdc34e7dbfa75339fa0de1b3 Mon Sep 17 00:00:00 2001 From: Elisa Pierfederici Date: Tue, 6 Feb 2024 15:26:46 +0100 Subject: [PATCH] Update Chapter_04.md updates --- docs/chapters/Chapter_04.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/docs/chapters/Chapter_04.md b/docs/chapters/Chapter_04.md index b0f59bf..ea1c59f 100644 --- a/docs/chapters/Chapter_04.md +++ b/docs/chapters/Chapter_04.md @@ -221,29 +221,29 @@ Example ``` ![Alt Text](image.png) ``` -### *Adding Links* -In Quarto, adding links is straightforward: +This markup instructs Quarto to display an image located at `path/to/image.png`, with "Alt text for the image" serving as alternative text for accessibility purposes, and an "Optional title" that appears when hovering over the image. -1. **Link Icon**: Click on the link icon in the formatting bar. -2. **Paste URL**: Paste the web address (URL) in the URL field. +### Adding Links + +Links are essential for directing your readers to external references or for providing further reading materials. Adding links in Quarto is straightforward with the following Markdown syntax: -Example: ```markdown -[Link Text](https://www.example.com) +[Link text here](https://www.example.com "Optional title") ``` -### *Creating tables* -Quarto makes it easy to include tables in your documents: +The text within square brackets `[ ]` is what your readers will see as clickable text, and the URL within parentheses `( )` is where the link will take them upon clicking. An "Optional title" can also be included within quotes after the URL, which will appear as a tooltip during a mouse hover over the link. + +### Creating Tables -1. **Insert Table**: To add a table, select the location in your document where you want the table to appear. -2. **Specify Rows and Columns**: Define the number of rows and columns you need for your table. +Tables efficiently organize and present data and information in a structured format. In Quarto, you can create tables using Markdown's straightforward syntax: -Example: ```markdown -| Header 1 | Header 2 | -|----------|----------| -| Data 1 | Data 2 | -| Data 3 | Data 4 | +| Header 1 | Header 2 | Header 3 | +|----------|----------|----------| +| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 | +| Row 2 Col 1 | Row 2 Col 2 | Row 2 Col 3 | +| Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 | + ``` ### *Adding Formulas*