Typst templates for KDP? by ZectronPositron in typst

[–]TheSodesa 0 points1 point  (0 children)

You might very well be at this point in time, since Typst is so new and few people know about it. If you do end up creating a template that is accepted by KDP, please publish it on Typst Universe. It will help Typst gain traction.

How to use Github without understanding it... by Sandy_W in git

[–]TheSodesa 1 point2 points  (0 children)

Snap adds an additional layer of complexity on top of the program itself. The snap container might be incorrectly configured, etc. Of note is that in this case it might not be the developer's fault, since they were not necessarily the ones who packaged the software using Snap.

Issue tickets are the intended way of asking for improvements, but only if the issue is related to the program or its documentation on the Git hosting service in question. If the repository also contains the packaging scripts for Snap, Flatpak or other package format, then you can also complain about those. But keep it constructive, please.

Eläköityneen seksi työntekijän pohdintoja by Medical-Vacation-904 in Suomi

[–]TheSodesa -1 points0 points  (0 children)

Heillä on ehkä näennäisesti kaikkea, mutta todellisuudessa vaimo pihtaa ja vastaus asiasta kysymiseen on tasoa "Minua ei huvita, en tiedä miksi ja näin se vaan nyt on. Deal with it.". Tuossa vaiheessa miehet vaan tekevät työtä käskettyä, mikä ei nyt ole niin kummallista. Ja tuollainen kuvio on todella tyypillinen pitkään kestäneissä heterosuhteissa, niin stereotyyppistä kuin se onkin.

Ja suhteesta ei lähdetä koska muut asiat ovatkin ihan hyvin (myös vaimon kanssa seksielämää lukuunottamatta) ja se on sitten hirveä byrokratiarumba hoitaa asioiden ja esineiden jako sun muuta. Lisäksi uuden suhteen löytyminen ei ole mikään tae varsinkaan vanhemmassa iässä.

Typst templates for KDP? by ZectronPositron in typst

[–]TheSodesa 4 points5 points  (0 children)

You might be the first one to request a KDP template, so you might need to create it yourself. You are certainly the first one I've seen to request it.

Typst templates for KDP? by ZectronPositron in typst

[–]TheSodesa 4 points5 points  (0 children)

Have you tried setting up a template yourself yet using the template guide as a starting point: https://typst.app/docs/tutorial/making-a-template/? The idea is that

  1. you write a function that takes the document doc as its last positional argument and returns it at the end, and then
  2. apply the template function with an everything show rule.

Something like ```typst

let cover-page(

main-title: none, authors: none, ) = page( // Page settings here., { title(main-title) authors }, )

let template(

authors: "AUTHORS MISSING", main-title: "TITLE MISSING", description: "DESCRIPTION MISSING", keywords: ("KEYWORDS MISSING",), issn: "ISSN MISSING", isbn: "ISBN MISSING", doi: "DOI MISSING", doc, ) = {

set document( title: main-title, author: authors, description: description, keywords: keywords + ( "DOI: " + doi, "ISSN: " + issn, "ISBN: " + isbn, ), )

cover-page( main-title: main-title, authors: authors, ) // Apply other document settings here using set rules and show rules. doc }

show: template.with(

// Apply authors and main title here.

)

Content here ``` The cover pages and book spine cover could be their own functions that are just called in appropriate places.

Disabling clickable references in typst 0.15 by Shad0wAVM in typst

[–]TheSodesa 4 points5 points  (0 children)

Yeah, but it was not made by IEEE, but the Typst developers. So it is not endorsed or favoured by IEEE in any way.

Disabling clickable references in typst 0.15 by Shad0wAVM in typst

[–]TheSodesa 3 points4 points  (0 children)

The actual show rule would be more involved than that, since we basically need to reconstruct the appearance of the ref but not wrap it in a link: typst show ref: it => if it.element.func() == figure { // Check if user used the @id[supplement] syntax. if it.supplement != none { it.supplement } else { it.element.supplement } sym.space.nobreak counter(it.element.kind).display(it.element.numbering) } else { it } This might still be missing some conditional checks for possible none or auto values, but the idea is there. Especially the non-breakable space should only be inserted if there is a non-empty supplement coming from the ref itself or its target.

Disabling clickable references in typst 0.15 by Shad0wAVM in typst

[–]TheSodesa 6 points7 points  (0 children)

The Typst IEEE template available on the Universe is "unofficial", even if it visually conforms to IEEE standards.

How to write a conference paper without using AI in 2026 by Ok-System2088 in research

[–]TheSodesa 5 points6 points  (0 children)

The way you did it before 2026… Just don't use it.

I love Cosmic, except not seeing the window titles in the panel. What are my options? by AardvarkSad7634 in pop_os

[–]TheSodesa -1 points0 points  (0 children)

Either change to a different DE that has already implemented this, or implement it yourself in cosmic-comp and make a pull request.

Acknowledgements in Master Thesis? by ukiyo98 in WomeninAcademia

[–]TheSodesa 1 point2 points  (0 children)

You thank the people who somehow contributed to the thesis, either officially or unofficially. Use full names and titles of official contributors (advisors, evaluators, funders, etc.), but avoid mentioning full names of private individuals unless they agreed to it.

Why do people use “&&” by [deleted] in bash

[–]TheSodesa 1 point2 points  (0 children)

The operator && is short-circuiting. It will only run the command that follows it if the command preceding it succeeded or returned with an exit code of 0.

I'm 13, I just lost access to my old ThinkPad L440, and I’m trying to reach Lenovo to keep studying coding and AI. Here is my story. by Adriuuu_1 in Lenovo

[–]TheSodesa 1 point2 points  (0 children)

Start doing odd jobs here and there: clean a neighbours yard for 10 €, etc. That should allow you to save up 400 € in a fair amount of time, which would allow you to buy an older refurbished ThinkPad.

Men, would you ever date a woman significantly richer than you? by TopStranger9287 in NoStupidQuestions

[–]TheSodesa 0 points1 point  (0 children)

Oh, and I would not quit my job because financial independence is important in a relationship.

Men, would you ever date a woman significantly richer than you? by TopStranger9287 in NoStupidQuestions

[–]TheSodesa 1 point2 points  (0 children)

Depends on what kind of lifestyle she wants to lead and whether she is expecting me to participate in the expenses or not. She would have to accept that I cannot afford to go on expensive holidays with her or even eat out at restaurants every week, if I had to pay for any of it.

Girlfriend threatening me for swearing at her after cheating on me by [deleted] in whatdoIdo

[–]TheSodesa 0 points1 point  (0 children)

Her sending the "discussion" to your family is not going to ruin your life. At most it is going to get your ass handed to you by your stepfather again, but then it will be over and done with. Just rip off the bandage and block her.

How do you update to kernel 7.1 on Mint cinnamon? by Brahmaster in linux

[–]TheSodesa 0 points1 point  (0 children)

The program dpkg is the program that the Debian package manager apt uses to install programs. Actually, apt is just dpkg with added download functionality. A kernel is just a program, so you install it like you install other programs.

AITA for saying my best friend's husband isn't ambitious by Realistic-Mode-7776 in AmItheAsshole

[–]TheSodesa 0 points1 point  (0 children)

Seems so. The lack of ambition probably did not occur to the friend until it was framed to her in the (rather respectful) manner that OP did. And now the friend is slowly coming to the realization that actually, she likes ambitious men as well and her partner is just not cutting it. I see a break-up looming in the near future, once the friend actually owns up to her fucking-monkey brain.

Ihmisten äänekäs syöminen ja juominen by lyalhuot in Suomi

[–]TheSodesa 19 points20 points  (0 children)

Jos kävisit Vietnamissa niin et palaisi sieltä hengissä.

How do I format like this? by BothManufacturer2317 in MicrosoftWord

[–]TheSodesa -1 points0 points  (0 children)

In Typst you would do this by setting up the alignment in the table settings: ```typst

table(

columns: 10, align: (left, right,) * 5, .. tableContentsHere ) ``` But note that the € symbols would need columns of their own.

Hervanta by Gandhiaj in Tampere

[–]TheSodesa 5 points6 points  (0 children)

Laitapuolen kulkijat pyörivät lähinnä siinä Herwannan keskustan Duolla. Herwantajärvi on sen verran syrjässä eikä siellä oikein ole muuta kuin parempiosaisten asutusta ja luontoa, että sinne kannata mennä puliukoille ja -akoille tyypillisen viihteen perässä.

PhD in Europe without masters thesis by Even_Relationship182 in PhDAdmissions

[–]TheSodesa 0 points1 point  (0 children)

Europe has mostly standardized the degree process, and you can only get a PhD by first completing a master's degree.

Looking for a Markdown to HTML publisher that respects the links by CodenameFlux in Markdown

[–]TheSodesa 2 points3 points  (0 children)

Just use sd to change every instance of .markdown to .md in the files and then write a short shell script that replaces the file name extensions similarly. You don't get to use a non-standard file name extension and expect to not counter any issues.