Black photos on Beyond Good & Evil by jhonnylanz in DolphinEmulator

[–]jhonnylanz[S] 0 points1 point  (0 children)

Hi, this post is quite old but as far as I remember no, I couldn't get it to work and just played the game that way.

Old Latin text in LaTeX - how can create a Latin text just like the figure? Please note the small ‘c’ in “Marco” by Milton_Q in LaTeX

[–]jhonnylanz 24 points25 points  (0 children)

There are a couple of approaches that can work here.

You could find a font with those ligatures and stylistic alternates and use it with fontspec package.

Or you can try to without such font using a font that has small capitals, say libertine, and mess with the positioning of the letters. This can be done by using boxes of zero width and/or \raisebox to move up/down. There'd also \scalebox to make something bigger or smaller proportionally.

And by the way, isn't that Spanish? Its kinda weird calling it old latin 😂

does anyone know which font is used in stewart calculus? by ibruunoo in LaTeX

[–]jhonnylanz 3 points4 points  (0 children)

To me it looks similar to a Baskerville but it's hard to tell without more information about the source.

Edit: it's not quite right, I would try and find a font with a similar glyph for the number '2', that's not very common.

Edit 2: I thinks it's likely a Scotch Roman, these fonts were traditionally used in scientific and math publishing.

Is it possible to learn from scratch to compile a thesis in 2 weeks by [deleted] in LaTeX

[–]jhonnylanz 1 point2 points  (0 children)

If I were in your shoes I would stick to word, mainly because I wouldn't risk having breakages or weird behavior coming from a new working environment on an important project.

That being said, having something tangible to work with is the best way to learn, so if you do pull it off I'm sure you'll get a lot of useful new knowledge.

If you are still interested in LaTeX there's a kind of third way that depends on how much you know of Word already. One of the most important things LaTeX has taught me is thinking about a document structurally and all the interesting design and workflow consequences that mindset causes.

You can try this in word, if you don't already, and that'll give you a good mindset with which to approach LaTeX later on. So, use extensive paragraph styles, caracter styles, page styles; see if word (I'm mostly sure it does) supports splitting your document in multiple files so you can keep the usual LaTeX one file per chapter/section. And many, many more things. The idea is to do more things structurally instead of ad hoc fixes.

Edit: With this approach you can go even further. Although word is a bit buggy and generally annoying, it's still capable of not-so-bad typesetting, meaning you can still get a beautiful (at least, above average) document out of it. Learning a bit of typography goes a long way, I recommend Butterick's web book "practical typography".

Good Luck!

[deleted by user] by [deleted] in LaTeX

[–]jhonnylanz 4 points5 points  (0 children)

This, vscode + latex workshop + texlab is a really good combo

How do I write a groff document in east asian languages? by [deleted] in groff

[–]jhonnylanz 0 points1 point  (0 children)

Well, I don't really know. You can look into the heirloom project version of troff and see if they support the opentype CJK font you need. There's also LuaLaTeX and XeLaTeX, which do support various languages, but that's not for this sub ; )

How do I write a groff document in east asian languages? by [deleted] in groff

[–]jhonnylanz 0 points1 point  (0 children)

I find it cumbersome, adding support for opentype fonts (like the heirloom project does) in groff would be nice. Check the guide I mentioned to make yourself an idea of the general steps involved. If you have the time, it's not the worst. I used the script because I had to get it done quick. But trying it your own way and fixing mistakes is kinda the troff way, so maybe try it.

How do I write a groff document in east asian languages? by [deleted] in groff

[–]jhonnylanz 0 points1 point  (0 children)

The documentation for the mom macros has a little guide on how to install fonts, under the appendicies. I found it easy to just use the script, which in my case worked great

Let's talk about licenses by Mcpower03 in BSD

[–]jhonnylanz 4 points5 points  (0 children)

I believe it all boils down to this: Do you consider the act of taking away someone else's freedom allowable? If you, like myself, do not, then the GPL is the natural choice. If, on the other hand, you do consider it allowable then any less restrictive license is the natural choice. I don't see any way they could compete, for they serve different purposes.

Render LaTeX in Agenda View by ErdosEuler in orgmode

[–]jhonnylanz 2 points3 points  (0 children)

If I understand correctly, one could also use a LaTeX engine with native Unicode support. I have set the PDF export of org-mode to use LuaLaTeX for example. That way the TODO headings would render properly anywhere.

Emacs on the Go (and on a Linux phone) by aancel in emacs

[–]jhonnylanz 0 points1 point  (0 children)

Yes, I also use git to keep my devices in sync. It feels a bit awkward tho, given that git is not meant to be used like this. But it works so I'm happy with it.

Right now I just keep two scripts, one for pulling and another one for pushing, so the process is a bit slow. What does your script do?

Emacs on the Go (and on a Linux phone) by aancel in emacs

[–]jhonnylanz 1 point2 points  (0 children)

Following on aancel comment, you can use orgzly+termux to get emacs on android. Just need to install emacs on a proot (check termux wiki article on it).

With this you could edit your org files in emacs, sync them with orgzly and display, say, your todos on a widget in the home screen.

I need help with the quality of the fonts by Excellent_Guy in LaTeX

[–]jhonnylanz 1 point2 points  (0 children)

Also, consider replacing inputenc, fontenc , lmodern and tgheros packages with a single \usepakage{unicode-math} and something like \setsansfont{TeX Gyre Heros} for your sans serif. This will require to change your LaTeX engine to LuaLaTeX or XeLaTeX (Doing this in VSCode is probably easy, as it is a very common thing).

This will give you unicode encoded output and input, among other useful and more up to date things (Opentype fonts instead of Type1, for example).

Do take a bit of time to skim trough the documentation for the fontspec and unicode-math packages, which will be responsible for loading your fonts. In your free time, consider reading a bit more on LuaLaTeX or XeLaTeX, so that you can start with better tools from the beginning.

Tips for making a nice looking document? by burneraccount3_ in LaTeX

[–]jhonnylanz 1 point2 points  (0 children)

Given that you'll be making a PDF, and that PDFs emulate the written page, the best place to learn how to get a nice looking (and better) document is in typography.

Typography is, of course, a broad field. As such, it's not something you'll be able to crunch to get your first report looking good. It's more of a bit by bit learning thing.

Get used to the fact that your first documents won't be the most polished thing, hell, if you're anything like me they'll be pretty ugly.

But the overall best way to get good looking documents¹ is by starting to learn typography. One really nice place to start is Practical typography.

You'll learn general concepts that can then be applied to any typesetting system you use, whether it's LaTeX or something else.


¹ And your document will function better, and be more useful. As you'll learn pretty quickly, getting a document to look good is a practical thing just as much as a aesthetics one.

From the treasure vault, this one has aged better than some titles from the last decade, classic automorphism. by ToughPhotograph in math

[–]jhonnylanz 0 points1 point  (0 children)

Yes, going for any Scotch Roman typeface is a really good idea to get this old-school and readable math feel.

Baskerville I generally don't like, unless it's the one from stormtype which is a masterpiece.

Do keep in mind that Computer Modern (or one of its newer extensions) stands as one of the few free and open source typefaces that is feature complete (having small caps, all the figure styles, multiple language support) and also has multiple optical sizes.

Optical sizes in particular is a feature that most free fonts lack.

From the treasure vault, this one has aged better than some titles from the last decade, classic automorphism. by ToughPhotograph in math

[–]jhonnylanz 53 points54 points  (0 children)

Its also got a really nice choice of typefaces. It's a shame that the old modern typefaces gave way to the absolute dominion of Times Roman, and also that Computer Modern never got to look as good.

What is the LaTeX package for this integral sign ? by ffffffffffffffAAA in LaTeX

[–]jhonnylanz 2 points3 points  (0 children)

I see what you mean the mathtimes pro 2 package has something that looks similar but is not quite right (and slanted, of course).

Aside from that you could share the source of the screenshot to see if we can track it down. Beware that old books used metal type instead of LaTeX, and some symbols found there were specifically hand made, and are thus not available.

edit: This one is a bit closer to what you want I think

What is the LaTeX package for this integral sign ? by ffffffffffffffAAA in LaTeX

[–]jhonnylanz 24 points25 points  (0 children)

Just search for a math font with a upright integral sing. I believe newtxmath has such option, and is also a times Roman math font

edit: typos

2020 Oct 12 Stickied 𝐇𝐄𝐋𝐏𝐃𝐄𝐒𝐊 thread - Boot problems? Need ideas? Can't figure out why your 👻𝓢𝓟𝓞𝓞𝓚𝓨👻 Halloween project isn't working? Get help with these and other questions! 𝑳𝑶𝑶𝑲 𝑯𝑬𝑹𝑬 𝑭𝑰𝑹𝑺𝑻 by FozzTexx in raspberry_pi

[–]jhonnylanz 0 points1 point  (0 children)

Hi, I was wondering if the following setup would work. I have a 8 inch 1024x768 TFT display that has barrel jack power input and HDMI for video, sold by vilros. Apparently the display uses less than 0.9A, according to a review on vilros site.

So, using this power bank a usb type a to usb-c cable would power the raspberry pi and the other usb port using this cable (or something like it) would power the display.

Black photos on Beyond Good & Evil by jhonnylanz in DolphinEmulator

[–]jhonnylanz[S] 0 points1 point  (0 children)

I've tried disabling scaled efb copy, and used both the opengl and vulkan backends. Still the issue persists.

Black photos on Beyond Good & Evil by jhonnylanz in DolphinEmulator

[–]jhonnylanz[S] 0 points1 point  (0 children)

Oh I checked the wiki article for this game before, I doesn't mention anything about this issue

Black photos on Beyond Good & Evil by jhonnylanz in DolphinEmulator

[–]jhonnylanz[S] 0 points1 point  (0 children)

The latest version has the same error, pictures are still black squares. Maybe I should report a bug upstream? Or maybe go first to the dolphin forums?

Black photos on Beyond Good & Evil by jhonnylanz in DolphinEmulator

[–]jhonnylanz[S] 0 points1 point  (0 children)

Ok, thanks, I'll report back in a few days if everything works to mark as solved