Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
scribus [2026/02/25 11:18] alali Finished the article |
scribus [2026/05/28 17:42] (current) bronec [Other tips and quirks] |
||
|---|---|---|---|
| Line 4: | Line 4: | ||
| ===== Installation ===== | ===== Installation ===== | ||
| + | ===Manual installation=== | ||
| * Download the [[https:// | * Download the [[https:// | ||
| - | * Place the downloaded file in a convenient location and rename it to a convenient name, like scribus.AppImage and add the execute permission in terminal: | + | * Place the downloaded file in a convenient location and rename it to a convenient name, like '' |
| - | | + | |
| * Then, run it from terminal: | * Then, run it from terminal: | ||
| - | | + | |
| - | ===== Initial Setup ===== | + | ===Install through a package manager=== |
| + | * Scribus is included in the repositories of most major Linux distributions and you can likely install it with your favorite package manager. | ||
| + | |||
| + | sudo apt install scribus | ||
| + | |||
| + | ===Install as a Flatpak=== | ||
| + | * Scribus can also be installed from [[https:// | ||
| + | * **IMPORTANT** - Because of the sandboxing, the Flatpak version may not be able to use external tools, such as '' | ||
| + | |||
| + | ===== The Template ===== | ||
| + | |||
| + | We created two templates for Scribus inspired by those from Zdeněk Kasner. | ||
| + | |||
| + | * [[https:// | ||
| + | * A good starting point (see the rendered {{ : | ||
| + | * Created by [[https:// | ||
| + | |||
| + | * [[https:// | ||
| + | * Focuses on simplicity, highlighting a few key points. (see the rendered {{ https:// | ||
| + | * Created by [[https:// | ||
| + | |||
| + | |||
| + | ==== Importing the Template ==== | ||
| + | |||
| + | * Choose a directory for Scribus templates, e.g., '' | ||
| + | |||
| + | <code bash> | ||
| + | mkdir ~/ | ||
| + | </ | ||
| + | |||
| + | * Extract the downloaded template to the template directory: | ||
| + | |||
| + | <code bash> | ||
| + | cd ~/ | ||
| + | tar xvf ufal_template_scribus.tar -C ~/ | ||
| + | |||
| + | # or alternatively for the simple template: | ||
| + | unzip ufal_simple_template.zip -d ~/ | ||
| + | </ | ||
| + | |||
| + | * Set the path to templates in Scribus: | ||
| + | * Run Scribus, dismiss the '' | ||
| + | * Go to '' | ||
| + | * Finally, create a document from the template: '' | ||
| + | ===== Using Scribus ====== | ||
| + | ==== Initial Setup ==== | ||
| Once you run the program, I recommend keeping the useful panels on your screen. Go to '' | Once you run the program, I recommend keeping the useful panels on your screen. Go to '' | ||
| - | ===== The Template ===== | + | ==== Other tips and quirks |
| + | |||
| + | * If you find yourself **unable to select and edit** parts of the project, one of two things is happening: | ||
| + | - The element you are trying to select is not a part of your currently selected '' | ||
| + | - You are in the **'' | ||
| + | |||
| + | * You can create and edit **colors** in '' | ||
| + | * This will also let you edit the colors of imported vector images | ||
| - | I created a [[https:// | + | * Working with **images**: |
| + | * You can import an image by first creating an '' | ||
| + | * I recommend selecting **automatic scaling to frame** under '' | ||
| + | * Working with **LaTeX content** in '' | ||
| + | * After creating a Render Frame, you can edit its contents in its right-click menu '' | ||
| + | * You can include **additional packages** under the '' | ||
| + | * I recommend wrapping your tables, etc., in a \resizebox to **match the size of the Render Frame** | ||
| + | * The following example code is what I used to generate the table in the simple template: | ||
| + | <code latex> | ||
| + | \begin{table}[h] | ||
| + | \resizebox{\textwidth}{!}{% | ||
| + | \begin{tabular}{ l c c c} | ||
| + | \toprule | ||
| + | \textbf{Model} & \textbf{Metric 1} & \textbf{Metric 2} & \textbf{Rating} \\ | ||
| + | \midrule | ||
| + | \textit{Baseline} & \textit{14.5} & \textit{1} & \textit{Mediocre} \\ | ||
| + | not LLM 1 & 5.5 & 2 & Worst \\ | ||
| + | not LLM 2 & 6.9 & 3 & Even worse \\ | ||
| + | not LLM 3 & 11.7 & 4 & OK-ish \\ | ||
| + | LLM & \textbf{99.8} & \textbf{67} & \textbf{Greatest thing ever!} \\ | ||
| + | \bottomrule | ||
| + | \end{tabular} | ||
| + | } | ||
| + | \end{table} | ||
| + | </ | ||
| + | '' | ||
| + | <code latex> | ||
| + | \usepackage{amsmath} | ||
| + | \usepackage{booktabs} | ||
| + | \usepackage{graphics} | ||
| + | </ | ||
| ===== Exporting to PDF ===== | ===== Exporting to PDF ===== | ||
| Line 33: | Line 116: | ||
| ===== About ===== | ===== About ===== | ||
| - | This article was created by [[https:// | + | This article was created by [[https:// |
