-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes: #3 #5
Open
jfbu
wants to merge
10
commits into
tabu-issues-for-future-maintainer:main
Choose a base branch
from
jfbu:jfbu_Verbatim
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Fixes: #3 #5
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
6e92ac8
Collecting body with a catcode 12 backslash
jfbu a5a1999
Add a (passing) test file for issue #3
jfbu 43f7f4a
Add missing \noexpand, suppress \tabu@verbatim and \tabu@rescan
jfbu e196660
Suppress now unneeded hack into fancyvrb and \verb code
jfbu b28293c
Extend #3 test file
jfbu 03fea8b
Add "TABU-FIXED (issue #3)" tags, re-use \tabu@rescan in source code
jfbu 71a8346
Fix a stray space in added code
jfbu 535c96d
Refactor some of the added code via \unexpanded\expandafter
jfbu f705b5a
Use a \toks to fix in code added in this PR the collecting of # in body
jfbu a5dd0a2
Revert a change done at 6e92ac8e9a to \tabu@collectbody
jfbu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
\documentclass{article} | ||
\usepackage{fancyvrb} | ||
\usepackage{tabu} | ||
\newenvironment{yyyyyy}{START}{END} | ||
\input{regression-test} | ||
\begin{document} | ||
|
||
\START | ||
\begin{tabu*}to\linewidth{|XX|} | ||
% if }{ in the short verb then already not working in tabu 2.09 | ||
A short verb: \verb|$&\~{}#|&\\ | ||
\begin{Verbatim}[commandchars={\\\{\}}] | ||
And \textit{this} is a \textbf{\textrm{complete}} | ||
Verbatim environment $&~\textbraceleft\textbraceright | ||
{\footnotesize this is smaller} | ||
\textit{spaces are ok I hope} | ||
\normalfont\yyyyyy\begin{yyyyyy}hello\end{yyyyyy}hello\endyyyyyy | ||
\def\foo{foo}\meaning\foo | ||
\meaning\foo (ok as each line is\ | ||
scoped by fancyvrb) # | ||
\begin{Large}AA{\footnotesize{}BB}CC\end{Large} | ||
\begin{Large}AA\begin{footnotesize}BB\end{footnotesize}CC\end{Large} | ||
\end{Verbatim} | ||
& | ||
\begin{Verbatim} | ||
And \textit{this} is a \textbf{\textrm{complete}} | ||
Verbatim environment $&~\textbraceleft\textbraceright | ||
{\footnotesize this is smaller} | ||
\textit{spaces are ok I hope} | ||
\normalfont\yyyyyy\begin{yyyyyy}hello\end{yyyyyy}hello\endyyyyyy | ||
\def\foo{foo}\meaning\foo | ||
\meaning\foo (ok as each line is\ | ||
scoped by fancyvrb) # | ||
\begin{Large}AA{\footnotesize{}BB}CC\end{Large} | ||
\begin{Large}AA\begin{footnotesize}BB\end{footnotesize}CC\end{Large} | ||
\end{Verbatim} | ||
\\ | ||
\end{tabu*} | ||
|
||
\end{document} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not check the catcode setting and resetting of the package, so i hope it is fine to set this here with no further ado.