• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H29-Apr-2017-1910

CMake/H29-Apr-2017-1,8351,603

lib-patches/H29-Apr-2017-895838

man/H29-Apr-2017-7863

modules/QtPDF/H03-May-2022-19,74815,907

plugins-src/H29-Apr-2017-1,374823

res/H29-Apr-2017-1,032762

src/H03-May-2022-28,00222,150

testcases/H07-May-2022-3,9983,567

trans/H03-May-2022-205,280204,832

travis-ci/H29-Apr-2017-1,129870

win32/H29-Apr-2017-1,8601,635

.mailmapH A D29-Apr-2017713 1410

.travis.ymlH A D29-Apr-20172.6 KiB5648

COPYINGH A D29-Apr-201717.6 KiB340281

NEWSH A D29-Apr-20179.5 KiB226197

PACKAGINGH A D29-Apr-20177.9 KiB165132

QtPDF_es.tsH A D29-Apr-20177.4 KiB258257

README.mdH A D29-Apr-20173.2 KiB8360

TeXworks.plist.inH A D29-Apr-20172 KiB7776

getDefaultBinPaths.shH A D29-Apr-20173.2 KiB11581

getGitRevInfo.batH A D29-Apr-20171.1 KiB2822

getGitRevInfo.shH A D29-Apr-2017834 183

texworks.appdata.xmlH A D29-Apr-20171.4 KiB3428

texworks.desktopH A D29-Apr-20172.8 KiB5048

updateCopyrights.pyH A D29-Apr-20174.4 KiB12389

updateSyncTeX.shH A D29-Apr-2017380 1511

README.md

1About TeXworks
2==============
3
4TeXworks is an environment for authoring TeX (LaTeX, ConTeXt, etc) documents,
5with a Unicode-based, TeX-aware editor, integrated PDF viewer, and a clean,
6simple interface accessible to casual and non-technical users.
7
8TeXworks is inspired by Dick Koch's award-winning TeXShop program for Mac OS X,
9which has made quality typesetting through TeX accessible to a wider community
10of users, without a technical or intimidating face. The goal of TeXworks is to
11deliver a similarly integrated, easy-to-use environment for users on other
12platforms, especially GNU/Linux and Windows.
13
14
15Further Information
16===================
17
18If you find any bugs/problems or have any recommendations, don't hesitate to
19stop by the development webpage, send a mail to the mailing list (preferably via
20the "Help > Email to mailing list" menu item which automatically includes some
21debug information), or file a bug report.
22
23- Homepage:     http://www.tug.org/texworks/
24- Development:  https://github.com/TeXworks/texworks
25- Bugs:         https://github.com/TeXworks/texworks/issues
26- Mailing list: http://tug.org/mailman/listinfo/texworks
27
28
29License
30=======
31
32TeXworks is copyright (C) 2007-2017 by Jonathan Kew, Stefan Löffler, and Charlie
33Sharpsteen. Distributed under the terms of the GNU General Public License,
34version 2 or (at your option) any later version.
35See the file COPYING for details.
36
37The SyncTeX code is copyright (c) 2008-2011 by Jérôme Laurens; see
38src/synctex_parser.c for license details.
39
40
41Building TeXworks
42=================
43
44Notes by Jonathan Kew, updated 2011-03-20 and 2015-03-29 by Stefan Löffler
45
46To build TeXworks from source, you will need to install developer packages (or
47equivalent) for:
48
49 - Qt (4.6.0 or later)
50   http://www.qt.io/download/
51
52 - Poppler (using the latest stable release, currently 0.16, is strongly
53   recommended, although versions as old as the 0.6 series should still work)
54   http://poppler.freedesktop.org/
55
56 - Hunspell (release 1.2.8 or later is recommended; earlier 1.2.x releases may
57   be used, although support for some non-Latin-script languages may be lacking)
58   http://hunspell.github.io/
59
60along with their dependencies (such as Freetype, fontconfig, zlib, etc.) If you
61also want to build the scripting plugins (optional), you additionally need
62development packages for Lua and/or Python. Details will depend on your
63platform. On Linux or similar systems, your package manager can probably provide
64all these.
65
66Once everything is set up, create a folder for building (e.g., "build") and run
67CMake in it to create a Makefile or Xcode project. Finally, run make or use
68Xcode to build the application.
69
70The current TeXworks prototype has been successfully built with
71 - Xcode (using gcc 4) on Mac OS X (built on 10.5, but should run on 10.4 or
72   later)
73 - MinGW release 5.1.4 on Windows XP (also runs on Vista and Windows 7)
74 - gcc 4 on GNU/Linux, various BSDs, etc.
75
76On the Mac, required libraries can be obtained, e.g., using Homebrew.
77
78Further tips on building TeXworks from source are available on some of the wiki
79pages:
80 - https://github.com/TeXworks/texworks/wiki/Building
81 - https://github.com/TeXworks/texworks/wiki/Building-on-Windows-(MinGW)
82 - https://github.com/TeXworks/texworks/wiki/Building-on-Mac-OS-X-(Homebrew)
83