From a23b59a43371a90599b0a59172eeb8d2e9d83bb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Metehan=20G=C3=9CNG=C3=96R?= <102655648+gungorMetehan@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:57:00 +0300 Subject: [PATCH] Fix coordinates in vector graphics description draw a circle at $(x_3, x_4)$ <- draw a circle at $(x_3, y_3)$ --- themes.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes.qmd b/themes.qmd index a899a29d..b534678c 100644 --- a/themes.qmd +++ b/themes.qmd @@ -559,7 +559,7 @@ base_f + theme( When saving a plot to use in another program, you have two basic choices of output: raster or vector: \index{Exporting} \index{Saving output} -- Vector graphics describe a plot as sequence of operations: draw a line from $(x_1, y_1)$ to $(x_2, y_2)$, draw a circle at $(x_3, x_4)$ with radius $r$. +- Vector graphics describe a plot as sequence of operations: draw a line from $(x_1, y_1)$ to $(x_2, y_2)$, draw a circle at $(x_3, y_3)$ with radius $r$. This means that they are effectively 'infinitely' zoomable; there is no loss of detail. The most useful vector graphic formats are pdf and svg.