this post was submitted on 18 Jun 2023
2 points (100.0% liked)

Logseq

576 readers
1 users here now

Logseq is a knowledge management and collaboration platform. It focuses on privacy, longevity, and user control. It is Free Libre Open Source Software (AGPL-licensed).

Logseq offers a range of powerful tools for knowledge management, collaboration, PDF annotation, and task management with support for multiple file formats, including Markdown and Org-mode, and various features for organizing and structuring your notes.

Logseq's Whiteboard feature lets you organize your knowledge and ideas using a spatial canvas with shapes, drawings, website embeds, and connectors. You can visually group and link your notes and external media (such as videos and images), enabling visual thinkers to compose, remix, annotate, and connect content from their knowledge base and emerging thoughts in a new way.

In addition to its core features, Logseq has a growing ecosystem of plugins and themes that enable a wide range of workflows and customization options. Mobile apps are also available, providing access to most of the features of the desktop application. Whether you're a student, a professional, or anyone who values a clear and organized approach to managing your ideas and notes, Logseq is an excellent choice for anyone looking to improve their productivity and streamline their workflow.

founded 2 years ago
MODERATORS
 

For me personally Logseq filled the gap of Obsidian to have something fluid enough to handle quotes. In some cases quotes get their own page and in some other cases I reference to them inside the page of the book they’re from.
In all cases I write my own thoughts to the quote. Through the fact how nodes work in Logseq I can write tags behind the nodes and link to the book (for e.g. #Quote #Bookname). This makes it possible to query for all quotes or specific quotes from specific books, topics or whatever.
In Obsidian this was my primary struggle: Not being fluid enough so I had to create a separate page with a quote and my opionion, had to keep a basic structure and had to find a name for that page (one of my biggest struggles) and so on.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 1 year ago (1 children)

Everywhere, no matter the page, you can write:

- [[Book name]]
  - [[Quotes]]
   - Plain quote here.
   - Another quote here.

or:

- [[Book name]]
 - Plain quote here.
   #quotes

You can retrieve them with the query:

{{query (and [[Book name]] [[quotes]])}}

Remember that queries look for references also in the parent blocks, so the following:

- [[Author name]]
  - [[Book name]]
   - [[Quotes]]
    - A quote.

matches:

{{query (and [[Author name]] [[Book name]] [[quotes]])}}

So you can group your quotes and tag them only once instead of repeating the same tag on different lines.

You can embed the quote somewhere else and style it as a quote using the > symbol:

- > ((block-id))
[–] [email protected] 1 points 4 months ago

Well here I am about one year later after switching accounts finally seeing your comment... :D This helped!

However, would it be possible to only show the last "depth" of that query so it only queries the actual quotes? I.e. instead of:

It would be better if it would look like:

Since the query basically is looking up the quotes by that author (I left the book out in that one) and is being put on the page of the author it is clear what it is and it should only display the actual quotes and the book's name.

It's not that big of an issue if that isn't possible but it would improve it visually in case you have several books with many quotes etc.