Add automatic line wrapping
Brought to you by:
andreasb123,
auroux
I often need to copy a few lines of text from wikipedia into my xournal-documents. But since I how to format it manually every time, this can be very enoying.
Missing line wrapping is also very enoying, when you manually formatted your text but now just want to add 5 more words to this one sentence over ther... which will break your formatting again.
Maybe it would be a nice feature to have the ability to create "textboxes" like you can in jarnal (but not as fiddly as in jarnal) where you can resize the "textbox" by pulling on its corners.
I would like to double-down on this request. It is a sorely needed feature to really replace paid tools. This is a frequently requested feature in Xournal++, and the developer's main argument against implementing this feature centers around incompatibility with Xournal. Considering that one of the most useful features of digital note-taking is the capacity to copy and paste lines of text from websites (where word wrapping is implemented), it becomes a huge hassle to go through and edit the body of the text, especially if you need to re-size the text box or change font size.
https://github.com/xournalpp/xournalpp/issues/2033
Looks like the error you're seeing is related to missing build dependencies—specifically the
pkg-configtool or thepkg.m4macro file used byautoconf.Here are a few suggestions to try:
pkg-config– It's required forPKG_CHECK_MODULESto work. You can install it using Homebrew:bash brew install pkg-configautoconfandautomake– They help generate the correctconfigurescript:bash brew install autoconf automakeMake sure
pkg.m4is in the right place – If it's missing,autoconfcan’t processPKG_CHECK_MODULES. After installingpkg-config, check ifpkg.m4exists in/usr/local/share/aclocal/and is included duringautogen.sh.Re-run
./autogen.shafter installing the above tools, then try./configureagain.